2008-03-26 23:35:34 +00:00
|
|
|
#!/bin/sh
|
2009-02-02 00:09:35 +00:00
|
|
|
rootdir=`dirname $0`
|
|
|
|
|
|
|
|
cat $rootdir/targets.txt | (
|
2008-03-26 23:35:34 +00:00
|
|
|
while read target model
|
|
|
|
do
|
2009-02-02 00:09:35 +00:00
|
|
|
rm -f $rootdir/checkwps.$model
|
2008-03-26 23:35:34 +00:00
|
|
|
done
|
|
|
|
)
|