Created
October 30, 2020 07:34
-
-
Save zyryc/d9eb805728fb98952063d629f85619b1 to your computer and use it in GitHub Desktop.
organize your downloads linux shell
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/sh | |
for file in *.mp4 *.mov *.mkv *.flv *.avi *.webm *.wmv; do | |
mv -- "$file" /home/$USER/Videos | |
done | |
for file in *.jpg *.png *.webp *.svg *.jp*g *.JPG *.gif; do | |
mv -- "$file" /home/$USER/Pictures | |
done | |
for file in *.mp3 *.mpeg *.m4a *.aac *.wma; do | |
mv -- "$file" /home/$USER/Music | |
done | |
for file in *.css *.js *.xml *.sql *.htm* *.php; do | |
mv -- "$file" /home/$USER/tools | |
done | |
for file in *.pdf *.docx *.dotx *.odt *.PDF *.ppt* *doc; do | |
mv -- "$file" /home/$USER/Documents | |
done | |
for file in *.zip *.gz *.xz *.rar; do | |
mv -- "$file" /home/$USER/Downloads/compressed | |
done | |
for file in *.deb *.exe *.run; do | |
mv -- "$file" /home/$USER/Downloads/programs | |
done | |
for file in *.part; do | |
rm -r "$file" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment