How to create alias in Linux terminal ?

An alias is a link between two commands. 
Creating an Alias will save you a lot of time.

How to create an alias in terminal ?

alias ls='ls -la'

With this whenever I try to execute ls command the terminal will execute ls -ls command.

create alias in terminal
Create alias in Terminal

How to remove the alias later ?

unalias ls


Unalias linux command

0 comments :

Post a Comment

Please comment here if you have any question regarding the article.