the oneliner.txt is an ascii file with one entry per line.
I usually modify this file with a vim search-an-replace like:
:%s/^.*\///gc
for i in `cat oneliner.txt`
do grep $i *.map.xml > /dev/null
if [ $? -eq 1 ]
then
echo $i
fi
done
for i in `cat oneliner.txt`
do grep $i *.map.xml > /dev/null
if [ $? -eq 1 ]
then
echo $i
fi
done
No comments:
Post a Comment