In this post I am going to talk about how can we remain productive by creating bash aliases and save our time by creating easy to use shortcuts for repetitive commands. What is Bash Alias Bash Alias is more like a shortcut and it can be declared using the following command alias alias_name = "command". Lets create a simple alias for listing hidden directories and files. alias lm="ls -la" note:there aren’t any spaces between the command and the name Now we will be creating some useful bash aliase...