7 lines
113 B
Plaintext
7 lines
113 B
Plaintext
# shellcheck disable=SC2148
|
|
# Make a directory and cd into it
|
|
take() {
|
|
mkdir -p "$1";
|
|
cd "$1" || exit;
|
|
}
|