Skip to content

Instantly share code, notes, and snippets.

@NatWeiss
Last active July 17, 2019 03:07
Show Gist options
  • Save NatWeiss/ed2129061935fea0ee004cd360c0b708 to your computer and use it in GitHub Desktop.
Save NatWeiss/ed2129061935fea0ee004cd360c0b708 to your computer and use it in GitHub Desktop.
Bash aliases
alias off="(sleep 1 && sudo shutdown now &) && exit"
v() {
if [[ ! -z $(jobs) ]]; then
#echo 'has jobs'
fg
else
#echo 'no jobs'
command vim "$@"
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment