Comment Re:Carnivore src revealed! [You read it here first (Score 1) 222
Oops.. forgot it was in html.. first posting, sorry
#!/bin/sh
keyword="bomb BOMB gun GUN president PRESIDENT aubergine AUBERGINE"
for word in ${keyword}
do
result=`egrep -i ${word} *`
if [ -n "${result}" ]
then
echo "Oh.. someones being naughty"
fi
done
Has to be a shelf script.. and probably being run on a overkill machine....
#!/bin/sh
keyword="bomb BOMB gun GUN president PRESIDENT aubergine AUBERGINE"
for word in ${keyword}
do
result=`egrep -i ${word} *`
if [ -n "${result}" ]
then
echo "Oh.. someones being naughty"
fi
done
Has to be a shelf script.. and probably being run on a overkill machine....