Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
cat logfile.log | while read LINE
do
echo $LINE | cut -c 10-15
done
NUMBER=[i]<some number I'm looking for>[/i]
cut -c 10-15 logfile.log | while read VALUE
do
if [ $VALUE -eq $NUMBER ]
then
echo $VALUE
fi
done
perl -ane 'print if $F[3] =~ /^(16|8)$/'
egrep "^([^ ]* ){3}(8|16)" logfile.log