Tuesday, May 7, 2013

grep in loop # shell

In one line

for f in *.excov; do    echo "file $f ";    grep -c 'false' $f; done > lostgenes.txt

No comments:

Post a Comment