Created
July 4, 2019 14:51
-
-
Save ailtonbsj/ddbc98cec8ba38ba6e6a673be70c7331 to your computer and use it in GitHub Desktop.
Migration of symbolic folders to drive d
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
rm -rf ~/Downloads && ln -s /mnt/d/Downloads/ ~/Downloads | |
rm -rf ~/Documentos && ln -s /mnt/d/Documents/ ~/Documentos | |
rm -rf ~/Imagens && ln -s /mnt/d/Pictures/ ~/Imagens | |
rm -rf ~/Música && ln -s /mnt/d/Music/ ~/Música | |
rm -rf ~/Vídeos && ln -s /mnt/d/Videos/ ~/Vídeos | |
rm -rf ~/Modelos && ln -s /mnt/d/Models/ ~/Modelos | |
rm -rf ~/Público && ln -s /mnt/d/Public/ ~/Público |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment