Surely it would not be that technical !! and it would be a script..
#!/bin/sh
keywords="bomb BOMB gun GUN president PRESIDENT aubergine AUBERGINE"
for word in ${keywords}
do
result=`egrep -i ${word} *`
if [ -n "${result}" ]
then
echo "Oh.. someones being naughty"
fi
done
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....
Surely it would not be that technical !! and it would be a script.. #!/bin/sh keywords="bomb BOMB gun GUN president PRESIDENT aubergine AUBERGINE" for word in ${keywords} do result=`egrep -i ${word} *` if [ -n "${result}" ] then echo "Oh.. someones being naughty" fi done