Files
dotfiles/.config/fish/functions/mkcd.fish
Lucien Cartier-Tilet 3cfa85c86d Added redshift as blue light filter, converting eshell aliases
Eshell aliases are being converted to Eshell functions
2020-02-08 14:22:01 +01:00

5 lines
91 B
Fish

function mkcd -d "Create directory and cd to it"
mkdir -p $argv[1]
cd $argv[1]
end