cyber-patriot/dot_bash_functions

13 lines
162 B
Plaintext
Raw Permalink Normal View History

2022-11-03 22:09:35 -04:00
function mcd {
mkdir "$@" && cd $_
}
function rewind {
# cheeky hack
source rewind.sh "$HISTFILE" "$@"
}
function download {
curl "$1" > "$2"
}