Help for this page

Select Code to Download


  1. or download this
    #!perl -w
    print <<EOF;
    ...
    line two
    line three
    EOF
    
  2. or download this
    use IO::Handle;
    use IPC::Open2;
    ...
       chomp;
       print "test3:[$_]\n";
    }
    
  3. or download this
    C:\WINDOWS\Desktop>perl t.pl
    test1:[Line one]
    test1:[line two]
    ...
    test3:[Line one]
    test3:[line two]
    test3:[line three]
    
  4. or download this
        binmode $rdrfh, ':crlf';