EventSplittr
Place a number of images in folders based on the date they were taken. This is useful if you're using simple photo management tools like Unbound and you need to place images in folders based on the day they were taken.
Installation
$ gem install event_splittrUsage
Perform a dry-run
$ splittr -d /destination_dir path/to/images/*jpgThis will output a list of things that will be moved.
Move files
$ splittr -f -d /destination_dir path/to/images/*jpgThis will create sub-folders in destination_dir with a format like "2014-05-06", and put all the images taken on that day in that folder.
Contributing
- Fork it ( http://github.com//event_splittr/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request