Last active
September 11, 2015 01:54
-
-
Save AndrewBelt/7929b7b4413f3231fe20 to your computer and use it in GitHub Desktop.
This file contains 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 alphabet | |
alias a='aunpack' # extract many archive formats avoiding tarbombs | |
alias c='printf "\ec"' # clear the screen (also Ctrl-L) | |
alias f='feh -FZ' # view images fullscreen | |
alias g='grep -ER' # extended recursive grep | |
alias i='curl icanhazip.com' # prints IP address | |
alias l='ls -lh' # detailed ls | |
alias m='make -j2' # recursive make (adjust to number of cores) | |
alias p='xclip -selection clipboard -o' # print clipboard | |
alias r='vim -R' # read-only vim | |
alias s='find . -name' # use quotes around wildcards: s "*.jpg" | |
alias t='tail -F' # monitors file | |
alias z='xset dpms force off' # turn off display |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment