Skip to content

Instantly share code, notes, and snippets.

@DrSLDR
Last active January 5, 2024 13:59
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 DrSLDR/3108534ac45cdb3706e2 to your computer and use it in GitHub Desktop.
Save DrSLDR/3108534ac45cdb3706e2 to your computer and use it in GitHub Desktop.
.bashrc
alias wow='git status'
alias much=git
alias such=git
alias very=git
alias many=git
alias fuck='sudo $(history -p \!\!)'
alias lsa='ls -Al'
alias gitkat='gitg --all'
alias glug='git log --oneline'
alias psgr='ps -e | grep '
alias murder='kill -KILL '
alias diceware='cat ~/Documents/Misc/diceware.wordlist.asc | grep'
alias quickdice='DICE="";for i in {1..5}; do DICE=$DICE$[(`od -vAn -N3 -tu < /dev/urandom` % 5) + 1]; sleep 0.1; done; diceware $DICE'
alias shredbin='shred -uvz'
alias packtargz='tar -zcvf'
alias unpacktargz='tar -zxvf'
export PATH=$PATH:/home/sldr/bin/
################################################################################
# Unalias function
function unalias { grep "$1" ~/.bashrc; }
export -f unalias
################################################################################
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment