Mass par2 repair amazingly simple.

$ echo *.par2

or to get one filename per line :

$ for i in *.par2; do echo $i; done

So to mass-repair everything in a directory simply type :

$ for i in *.par2; do par2repair $i; done

EDIT : only works if the extension in “vol**+**.PAR2″ is capitalized :-(

Author: on January 25, 2006
Category: Uncategorized
4 responses to “Mass par2 repair amazingly simple.”
  1. Stefan says:

    check out this (complex) shellscript to automate the task:

    http://sourceforge.net/projects/altbinrepair/

  2. zobi says:

    I’ve updated the FAQ with your comment.

  3. zobi says:

    thanks for your comment!

  4. Anonymous says:

    I found your info useful and get around the case sensitivity like this.

    for i in *.[pP][aA][rR]2; do par2 r $i; done

    Hope it helps someone else!

Leave a Reply

Last articles


Warning: array_filter() [function.array-filter]: The first argument should be an array in /home/lamens/public_html/altbin.net/wp-content/plugins/wordpress-tweaks/tweaks.php on line 650