Joe Lillibridge 95c99334da
wip
2024-10-29 22:57:09 -05:00

7 lines
113 B
Plaintext

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