Free Republic
Browse · Search
Bloggers & Personal
Topics · Post Article

To: LesbianThespianGymnasticMidget
aww quit tryin ta scare people. Linux isn't that scary


69 posted on 08/07/2019 7:25:37 AM PDT by Pollard (If you don't understand what I typed, you haven't read the classics.)
[ Post Reply | Private Reply | To 43 | View Replies ]


To: Pollard

It is if you cant figure out how to turn off Cortina.

#/bin/bash
# this script helps you look like you do hackerish stuff

if [ “$EUID” -ne 0 ]
then
echo “Please run as root to be hackerish.”
exit
fi

# turn off globbing
set -f
# split on newlines only for for loops
IFS=’

for log in $(find /var/log -type f); do
# only use the log if it’s a text file; we _will_ encounter some archived logs
if [ `file $log | grep -e text | wc -l` -ne 0 ]
then
echo $log
for line in $(cat $log); do
echo $line
# sleep for a random duration between 0 and 1/4 seconds to indicate hard hackerish work
bc -l <<< $(bc <<< “$RANDOM % 10”)” / 40” | xargs sleep
done
fi
done


71 posted on 08/07/2019 8:05:34 AM PDT by LesbianThespianGymnasticMidget (TRUMP TRAIN !!! Get the hell out of the way if you are not on yet because we don't stop for idiots)
[ Post Reply | Private Reply | To 69 | View Replies ]

Free Republic
Browse · Search
Bloggers & Personal
Topics · Post Article


FreeRepublic, LLC, PO BOX 9771, FRESNO, CA 93794
FreeRepublic.com is powered by software copyright 2000-2008 John Robinson