Help for this page

Select Code to Download


  1. or download this
    >perl -wE "'a'=~/(a)/; 'a'=~/b/; say $1"
    a
    ...
    >perl -wE "'a'=~/(a)/; END { say $1 }"
    Use of uninitialized value $1 in say at -e line 1.
    
  2. or download this
    >perl -ne "/^(.*) INFO.+Successfully sent(?{$1})/ }{ print $^R" file