Yeah. I'm just giving your script the once over again.
Looks pretty complete actually...
I'm gonna run it against something brutal and see how it fares.
may just tweak it a bit, for example:
Quote:
| grep "=> /" | awk '{print $3}' |
|
can be
Quote:
awk ' /=> \// {print $3}' |
|
but "overally" total marks for awesome.
better than mine.