Skip to content

Instantly share code, notes, and snippets.

View asnair's full-sized avatar

Austin asnair

View GitHub Profile
@mohanpedala
mohanpedala / bash_strict_mode.md
Last active July 6, 2024 21:33
set -e, -u, -o, -x pipefail explanation
@PGBI
PGBI / .profile
Last active November 25, 2020 20:43
`vagrant halt all` command to halt all running vagrant VMs
# To be pasted in ~/.profile
vagrant() {
if [[ $@ == "halt all" ]]; then
command vagrant global-status | grep running | colrm 8 | xargs -L 1 -t vagrant halt
else
command vagrant "$@"
fi
}