Find duplicate files and create delete-file

From WickyWiki
Revision as of 08:57, 1 November 2011 by Wilbert (talk | contribs)

201103 Bash, Commandline

Create duplicates list

Options:

  • -r recursive - NB: this can take some time
  • -n ignore empty files
  • -f ommit first occurences
    • Note: the exact order is not quite clear, it will help to do dirs seperately
  • -S show size
  • -d delete (prompted)
fdupes -r -n -f ~ > fdupes_list.txt

Create delete-file

Todo