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.
How to remove the alias later ?
unalias ls
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 |
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.