How to create Alias command in Linux or Ubuntu
Create Alias Command in Linux or Ubuntu As a Linux user, you may come in a situation where you need to use the same command again and again. So typing the same command again and again will make it boring and sometimes it may happen that you will get distracted because of it. So you can create an alias for the command to overcome this problem. Alias is like creating a custom or your own command, when you type your alias it will replace the actual command, Let's take example of Alias in Linux: As I am working on the MEAN application, mostly I need to run the frontend, backend, DB Services which is located in a different location so every time I need to type some commands to run the applications. To Run the frontend application I need to type the following command. $ cd Documents/Work/myapp/frontend/ $ npm start To Run the frontend application I need to type the following command. Syntax to create an alias in Linux: $ alias aliasName="your command...