9 lines
135 B
Text
9 lines
135 B
Text
|
#!/bin/sh
|
||
|
while read neg dim pos
|
||
|
do
|
||
|
echo "neg: `zgrepc $neg`"
|
||
|
echo "dim: `zgrepd $dim`"
|
||
|
echo "pos: `zgrepc $pos`"
|
||
|
echo ""
|
||
|
done
|