Skip to content

Instantly share code, notes, and snippets.

@martiuh
Last active February 1, 2018 16:33
Show Gist options
  • Save martiuh/0e3749d1eb6684d1450e67335c3396df to your computer and use it in GitHub Desktop.
Save martiuh/0e3749d1eb6684d1450e67335c3396df to your computer and use it in GitHub Desktop.
fish shell fn
#Similar to the take in zsh, creates a directory (if it's necesary creates parent directories) and take you to the directory
function take
mkdir -p $argv
cd $argv
#pwd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment