Mscan is a simple, command-line utility that can help you organize and clean up your media collection.
For example, you can:
- determine if duplicate media exists on your backup drive(s) and how much space would be saved by deleting the duplicates
- determine if unique media exists on a drive that is not backed up
- determine what percentage of your media collection are photos and what percentage of those are jpegs
Add this line to your application's Gemfile:
gem 'mscan'
And then execute:
$ bundle
Or install it yourself as:
$ gem install mscan
$ gem uninstall mscan && rake build && gem install pkg/mscan
$ mscan scan -d dir1 -d dir2 -d dir3 (an array of root directories)
$ mscan analyze (what kind of analysis - all, difference, missing, ) - could default this to :all and run it as a part of report for now
$ mscan report
Configure the source and target (backup) directories.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request