Help for this page

Select Code to Download


  1. or download this
    $ctx->cat(\*FILE, 'http://127.0.0.1/file.txt', 'HEAD');
    
  2. or download this
    open FILE, '>', 'file.txt.HEAD' or die $!;
    
  3. or download this
    open my $FH, '>', 'file.txt.HEAD' or die $!;
    $ctx->cat($FH, 'http://127.0.0.1/file.txt', 'HEAD');