> Why not just start with perl which does more than sed/awk while using 
> similar syntax (if you want)?

This is why:

awk '/^[[:space:]]*word/ {print}' logfile

vs

perl -ne 'if (/^\s*word/) { print $_; }' logfile


Which syntax is likely to be easier to remember? 


-- 
Spiro Harvey                  Knossos Networks Ltd
021-295-1923                    www.knossos.net.nz

Attachment: signature.asc
Description: PGP signature

_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos

Reply via email to