dotfiles/system/.function

5 lines
83 B
Plaintext

# Create a new directory and enter it
function mk() {
mkdir -p "$@" && cd "$@"
}