mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 14:12:41 +00:00
13 lines
165 B
Bash
Executable File
13 lines
165 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Createsa directory then `cd`'s into the directory
|
|
|
|
set -e
|
|
|
|
dir="$1"
|
|
|
|
test -n "${dir}" || echo "usage: mkcd <dir>" && exit 1
|
|
|
|
mkdir "${dir}"
|
|
cd "${dir}"
|