Skip to content

Instantly share code, notes, and snippets.

@brandiqa
Created June 8, 2020 10:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brandiqa/daa98001c23baa14eaa7cbfacf45b9d3 to your computer and use it in GitHub Desktop.
Save brandiqa/daa98001c23baa14eaa7cbfacf45b9d3 to your computer and use it in GitHub Desktop.
#gh completion
eval "$(gh completion -s bash)"
# Functions
function hello() {
echo "Hello, $1!"
}
export -f hello
# Delete all node_modules from master directory
alias node_purge='find . -name "node_modules" -type d -prune -exec rm -rf '{}' +'
# ls
alias ll='ls -alF --color'
alias la='ls -A --color'
alias l='ls -CF --color'
# Misc
alias bedit='io.elementary.code ~/.bashrc'
alias nedit='nano ~/.bashrc'
alias gedit='io.elementary.code'
alias sedit='sudo io.elementary.code'
alias reload='clear && source ~/.bashrc'
alias public-ip='curl icanhazip.com'
alias webo='sudo chown www-data:www-data -Rv'
alias webp='sudo chmod 775 -Rv'
alias hsg='history | grep'
# Git
alias gist="git status"
alias check="git checkout"
alias giff="git diff"
alias gadd="git add"
# Networking
alias ports="sudo netstat -lntup"
alias ss_ports="sudo ss -lntu"
alias ls_ports="sudo lsof"
# Linux Commands
## Boot Logs
alias boot-logs="journalctl -b"
## Service Logs
#dmesg
# Docker
alias dk="docker"
alias dps="docker ps"
alias dki="docker image"
alias dkl="docker images"
alias dkf="docker system df"
alias dkv="docker volume"
# Docker Container
alias dc="docker container"
alias dls="docker container ls -a"
alias dcl="docker container ls -a"
alias dcs="docker container stop"
# Docker Compose
alias up="docker-compose up"
alias down="docker-compose down"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment