This commit is contained in:
JMARyA 2025-05-24 02:59:30 +02:00
parent 3372694ddc
commit 8534581b78
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263

4
functions/mkcd.fish Normal file
View file

@ -0,0 +1,4 @@
# create directory and move into it
function mkcd
mkdir $argv[1] && cd $argv[1]
end