From ce7c12661c0b310341b6c18e44cffba13310b32d Mon Sep 17 00:00:00 2001 From: Joey Hoer Date: Wed, 5 Nov 2014 12:16:36 -0500 Subject: [PATCH] .functions: Make `mkd` `cd` into the last directory in the list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …rather than the first. Closes #447 and #450. --- .functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.functions b/.functions index cd29e112230..a5e37361789 100644 --- a/.functions +++ b/.functions @@ -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