Created
January 24, 2024 21:43
-
-
Save kowalski7cc/56ae678186a4a81a343358a5c20c72de to your computer and use it in GitHub Desktop.
Make CD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function mkcd -a dirname | |
if test -z $dirname | |
echo "Usage: mkcd dirname" | |
return 1 | |
end | |
mkdir -p "$dirname" | |
cd "$dirname" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment