Created
October 2, 2018 12:58
-
-
Save jrenggli/deece803bd681a578168d2bed6114527 to your computer and use it in GitHub Desktop.
Move Resources to appropriate subfolder in folder structure (Flow Framework)
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
ls -1 | while read F; do | |
mkdir -p ${F:0:1}/${F:1:1}/${F:2:1}/${F:3:1} | |
mv ${F} ${F:0:1}/${F:1:1}/${F:2:1}/${F:3:1}/ | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment