If you are tired of always typing and typing on your linux machine in order to do certain taks, then you might need to define some aliases.
One of the first things that I’m doing after installing a linux, I define some aliases that I got used with them and used them since forever.
1 2 3 4 5 6 7 8 9 10 | alias grep="grep --color=always" alias v="ls -lsa" alias c="clear" alias q="logout" alias e="exit" alias fileperm="find . -type f -exec chmod 644 {} \;" alias dirperm="find . -type d -exec chmod 755 {} \;" alias k="killall -9" alias wget="wget --no-check-certificate -c" alias which="type -path" |
These aliases should be added on /etc/profile for system wide use or in your .bashrc file on your home dir.