8 lines
106 B
Bash
8 lines
106 B
Bash
|
#!/bin/sh
|
||
|
cat targets.txt | (
|
||
|
while read target model
|
||
|
do
|
||
|
rm -f checkwps.$model
|
||
|
done
|
||
|
)
|