Help for this page

Select Code to Download


  1. or download this
    my $command = "echo $writeline >> $file";
    my $output = `$command 2>&1`;
    
  2. or download this
    my $output = `$command echo $writeline >> $file 2>&1`;
    
  3. or download this
    my $output = `$command echo $writeline 2>&1 >> $file`;