Skip to main content

fish_functions/tmpdir.fish

1function tmpdir --description "Create and switch into a temporary directory"
2 cd (mktemp -d)
3end