Created
June 13, 2015 13:28
-
-
Save maiquelleonel/2bf67d2abec9a3d3a364 to your computer and use it in GitHub Desktop.
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 | |
| pwd=$(pwd) | |
| cd app/imgs | |
| for file in $(ls ./); do | |
| name=(${file//_/ }) | |
| new_dir=${name[0]} | |
| new_name=${name[1]} | |
| if [ ! -d $new_dir ]; then | |
| mkdir $new_dir | |
| fi | |
| mv $file $new_dir"/"$new_name | |
| done | |
| cd $pwd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment