27 lines
937 B
Plaintext
27 lines
937 B
Plaintext
# Git
|
|
alias ga='git add *'
|
|
alias gc='git commit -m'
|
|
alias gcl='git clone'
|
|
alias gp='git push'
|
|
alias gs='git status'
|
|
|
|
# ls
|
|
alias lsd="ls -d"
|
|
alias ll='ls -alh'
|
|
|
|
# System Utils
|
|
alias brewup='cl; brew update; brew upgrade; brew upgrade --cask; brew cleanup -s; brew doctor --verbose | grep -A 1 --color=never "Homebrew Version"'
|
|
alias cl='clear'
|
|
alias sleep="open /System/Library/CoreServices/ScreenSaverEngine.app"
|
|
alias ta="tmux a -t"
|
|
alias tn="tmux new-session -s"
|
|
alias gcc="gcc -g"
|
|
alias hora='date "+%H:%M:%S"'
|
|
alias wthr='curl wttr.in/san_luis_obispo'
|
|
alias nf='cl; neofetch; neofetch | grep OS | cut -d " " -f2 -f3 -f4 -f5 -f6 | figlet -w 100; shownetinfo && lab && batt'
|
|
|
|
# School
|
|
alias gp='~/Development/gp.sh'
|
|
alias 429='cd "/Users/smparkin/Library/Mobile Documents/com~apple~CloudDocs/CalPoly/2020-21/Fall20/CSC 429"'
|
|
alias 321='cd "/Users/smparkin/Library/Mobile Documents/com~apple~CloudDocs/CalPoly/2020-21/Fall20/CPE 321"'
|