mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
5 lines
90 B
Bash
Executable File
5 lines
90 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Create a directory and cd into it
|
|
|
|
mkdir -p "$@" && cd "$@" || exit
|