7 lines
113 B
Plaintext
Raw Normal View History

2024-10-29 22:57:09 -05:00
# shellcheck disable=SC2148
# Make a directory and cd into it
take() {
mkdir -p "$1";
cd "$1" || exit;
}