Revision: | 1.1 |
Committed: | Tue Feb 28 11:54:35 2012 UTC (13 years, 2 months ago) by paus |
Content type: | application/x-sh |
Branch: | MAIN |
CVS Tags: | Mit_029b, Mit_029, Mit_029_pre1, Mit_028a, Mit_028, Mit_027a, Mit_027, Mit_026, Mit_025e, Mit_025d |
Log Message: | Last updates. |
# | User | Rev | Content |
---|---|---|---|
1 | paus | 1.1 | #!/bin/bash |
2 | #=================================================================================================== | ||
3 | # Assume a list of local files is found to be broken. Go through the list and recover one by one. | ||
4 | #=================================================================================================== | ||
5 | FILE="$1" | ||
6 | FLAG="$2" | ||
7 | |||
8 | while read line | ||
9 | do | ||
10 | |||
11 | fullFile=`echo $line | cut -d ' ' -f1` | ||
12 | fixFile.sh $fullFile $FLAG | ||
13 | |||
14 | done < $FILE |