7 lines
80 B
Bash
7 lines
80 B
Bash
#!/usr/bin/bash
|
|
#ls -1 GW*.log
|
|
for i in GW*.log
|
|
do
|
|
./gws.pl $i | grep VEM
|
|
done
|