78d29f535f
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16831 a1c6a512-1295-4272-9138-f99709370657
7 lines
106 B
Bash
Executable file
7 lines
106 B
Bash
Executable file
#!/bin/sh
|
|
cat targets.txt | (
|
|
while read target model
|
|
do
|
|
rm -f checkwps.$model
|
|
done
|
|
)
|