Skip to content

Instantly share code, notes, and snippets.

@m-cakir
Last active July 6, 2022 08:11
Show Gist options
  • Save m-cakir/0980338e9257a74234a6ce80e7801340 to your computer and use it in GitHub Desktop.
Save m-cakir/0980338e9257a74234a6ce80e7801340 to your computer and use it in GitHub Desktop.
move files to sub directories sorting/grouping by created date - unix
$ chunk_size=5;n=0; for f in `ls *.json --full-time -t -r | gawk '{print $9}'`; do d="sub$((n++ / chunk_size))"; mkdir -p "$d"; mv -- "$f" "$d/$f"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment