Skip to content

Instantly share code, notes, and snippets.

@jrenggli
Created October 2, 2018 12:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jrenggli/deece803bd681a578168d2bed6114527 to your computer and use it in GitHub Desktop.
Save jrenggli/deece803bd681a578168d2bed6114527 to your computer and use it in GitHub Desktop.
Move Resources to appropriate subfolder in folder structure (Flow Framework)
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