Skip to content
This repository has been archived by the owner on Sep 5, 2023. It is now read-only.

Commit

Permalink
.functions: Make mkd cd into the last directory in the list
Browse files Browse the repository at this point in the history
…rather than the first.

Closes mathiasbynens#447 and mathiasbynens#450.
  • Loading branch information
Joey Hoer authored and phanyzewski committed Sep 5, 2023
1 parent 947c80e commit ce7c126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .functions
Expand Up @@ -18,7 +18,7 @@ function calc() {

# Create a new directory and enter it
function mkd() {
mkdir -p "$@" && cd "$@";
mkdir -p "$@" && cd "$_";
}

# Change working directory to the top-most Finder window location
Expand Down

0 comments on commit ce7c126

Please sign in to comment.