cyber-patriot/dot_bash_functions

13 lines
162 B
Plaintext

function mcd {
mkdir "$@" && cd $_
}
function rewind {
# cheeky hack
source rewind.sh "$HISTFILE" "$@"
}
function download {
curl "$1" > "$2"
}