Slashdot Mirror


User: bendls

bendls's activity in the archive.

Stories
0
Comments
2
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2

  1. Re:Carnivore src revealed! [You read it here first on Court to FBI - Full Public Review Of Carnivore · · Score: 1

    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....

  2. Re:Carnivore src revealed! [You read it here first on Court to FBI - Full Public Review Of Carnivore · · Score: 1

    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