Created
September 18, 2013 02:19
-
-
Save morganestes/6603628 to your computer and use it in GitHub Desktop.
Aliases used in bash prompts.
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
| alias attrib='chmod' | |
| alias chdir='cd' | |
| alias copy='cp' | |
| alias d='dir' | |
| alias del='rm' | |
| alias deltree='rm -r' | |
| alias dir='/bin/ls $LS_OPTIONS --format=vertical' | |
| alias edit='pico' | |
| alias ff='whereis' | |
| alias l.='ls -d .* --color=auto' | |
| alias ll='ls -lAh --color=auto' | |
| alias ls='/bin/ls $LS_OPTIONS' | |
| alias mem='top' | |
| alias move='mv' | |
| alias pico='pico -w -z' | |
| alias rename='mv' | |
| alias search='grep' | |
| alias untar='tar -zxvf' | |
| alias v='vdir' | |
| alias vdir='/bin/ls $LS_OPTIONS --format=long' | |
| alias vi='vim' | |
| alias which='type -path' | |
| alias wtf='watch -n 1 w -hs' | |
| alias wth='ps -uxa | more' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment