Help for this page

Select Code to Download


  1. or download this
    use strict;
    use IO::File;
    ...
    my $CRLF = "\015\012";
    print $fh "test",$CRLF;
    close $fh;
    
  2. or download this
    my $CRLF = "\015\012";   # "\r\n" is not portable
    
  3. or download this
        my $content = $response->content;
    
    ...
              $content = join("\n",@$cjunk);
           }
        }