#!/bin/bash
echo «Total `grep 'orange' ~/scriptlog | wc -l` hits»
echo «PwnOranges attack `grep 'Pwn[Oo]range' ~/scriptlog | wc -l` times»
echo «Oranges defend `grep 'Fresh' ~/scriptlog | wc -l` times»
if [ «`grep 'Unknown' ~/scriptlog | wc -l`» -gt 0 ]
then
echo «New oranges attack»
fi
Ну и статистика конечно.
Она выдала:
Total 671 hits
PwnOranges attack 350 times
Oranges defend 321 times
Total 671 hits
PwnOranges attack 350 times
Oranges defend 321 times