in reply to Re: which use for any Perl elements?in thread which use for any Perl elements?
-p (and -n) wraps your code in:
while (<>) { # ... your code here ... } continue { print $_; } [download]