Created
November 18, 2015 12:36
-
-
Save hellerbarde/5bbdf4bb0e0ba7201cb2 to your computer and use it in GitHub Desktop.
Shell Aliases
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
# Be nice to your computer | |
alias please='sudo' | |
alias plz='sudo' | |
# file managing stuff | |
alias r="PYTHONOPTIMIZE=1 /usr/bin/ranger" | |
alias l='ls' | |
alias perm='stat -c %a' | |
# Dogit | |
alias such=git | |
alias very=git | |
alias wow='git status' | |
# Doge computing FTW | |
alias stahp='poweroff' | |
# simple webserver | |
alias http="python -m http.server" | |
# json prettify | |
alias json="python -m json.tool" | |
# get public ip | |
alias myip="curl ifconfig.me" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment