Skip to content

Instantly share code, notes, and snippets.

@yehosef
Last active August 29, 2015 14:24
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 yehosef/00cb3bc71268e5811c04 to your computer and use it in GitHub Desktop.
Save yehosef/00cb3bc71268e5811c04 to your computer and use it in GitHub Desktop.
organized files by date
#!/bin/bash
years=`seq 2014 2015`
months=`seq -w 01 12`
for year in ${years[@]}; do
mkdir $year
for month in ${months[@]}; do
mkdir $year/$month
mv $year-$month-* $year/$month
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment