mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-02 12:54:39 +00:00
6 lines
94 B
Plaintext
6 lines
94 B
Plaintext
|
#!/usr/bin/fish
|
||
|
for i in Downloads Music Pictures Videos
|
||
|
rm ~/$i
|
||
|
ln -s $D/$i ~/$i
|
||
|
end
|