Ahh, ao ler o título eu pensei em acrescentar a possibilidade de fazer uma function, mas seu post já foi completo em relação a isso.
Nesse caso vou acrescentar alguns atalhos e funções que mais uso no dia a dia:
# remove all docker images dangling around
rm-dangling(){
dangling=$(docker images -f dangling=true -q)
if [ -z "$dangling" ]
then
date +"%Y-%m-%d %H:%M:%S rm-dangling: no zombie containers around"
else
date +"%Y-%m-%d %H:%M:%S rm-dangling: some zombie containers around"
docker rmi $(docker images -f dangling=true -q) --force
fi
}
# use pipe | to redirect a command output to clipboard
alias c="xclip -selection clipboard"
# list all devices connected to a network
# in this example the network is 192.168.2.0 with 255.255.255.0 mask
alias lsnw="sudo nmap -sP -n 192.168.2.0/24"
# avoid typo error
alias mkae="make"
alias amke="make"
alias maek="make"
alias cd..="cd .."