mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-05 06:25:00 +00:00
6 lines
72 B
Plaintext
6 lines
72 B
Plaintext
|
#!/usr/bin/fish
|
||
|
cd ~/.dotfiles
|
||
|
for i in (fd -t d)
|
||
|
mkdir -p ~/$i
|
||
|
end
|