Help for this page

Select Code to Download


  1. or download this
    ~/test$ perl -e '$1 = "blah"'
    Modification of a read-only value attempted at -e line 1.
    
  2. or download this
    ~/test$ perl -le '$var = "blah"; $var =~ /^(....)$/; print $1'
    blah