Skip to main content

Alias command in UNIX


Alias is used for creating alternative names for commands which have got long text as syntax. Also for commands which are very frequently used we can create alias with short letters so , can save some time in typing and getting result.

How to create alias?

alias ALIAS_NAME='COMMAND'

For example :

alias ll='ls -ltra'

So now when we give ll , the result showing will be same as ls -ltra command.

Another example :

alias s='df -h'

This will show the disk free space in the system.

How to view all alias created?

If we simply type 'alias' from the command prompt it will display all the alias created in the system.

Another point to note is , creating an alias will be available in environment level for the particular session only. It is similar to creating a variable. When we close the session the alias is also removed. Usually we keep the alias in .profile file in the home directory, so that every time when we open a UNIX session the alias variables are also assigned and we can use it easily.

Comments

Popular posts from this blog

Pokemon Go download link

Pokemon go has become the buzz word in tech industry now. Nintendo, the Japanese video game company are the creates of this game. Its first of it kind to integrate a game with augmented reality , so people has to go out to real world with there android or iPhone to catch em all . You can download  Pokemon go  from this link. 

UNIX : How to ignore lines with certain names

Sometimes we need to ignore multiple lines with certain words and get the list out of the file. usually it will be a log file to read . The below grep command can be used to ignore multiple words present in a text file. Lets say the file contain $ cat list.txt apple orange apple banana papaya Now we need to ignore line with orange , banana and papaya . So we can use the below grep command. $ cat list.txt | grep -Ev "orange|banana|papaya" apple apple It will ignore lines with the words in -v part of grep.