Avoid Typing Long Commands In Linux Terminal By Using Aliases

Aliases when using Linux command line can shorten commands so that there is no need to type them in full. They can be viewed using the following command : alias Adding them is simple, for example : to add an alias for the command uptime as u : alias u='uptime' What this will do is show the system uptime just by typing in ‘u’. However, this change is only for the current session. It...