dotfiles/system/.function

5 lines
83 B
Plaintext
Raw Normal View History

2017-02-27 06:49:09 +00:00
# Create a new directory and enter it
function mk() {
mkdir -p "$@" && cd "$@"
}