Help for this page

Select Code to Download


  1. or download this
    -e hi there
    hi there
    /bin/echo
    
  2. or download this
    #!/usr/bin/perl -w
    my $result = `echo -e 'hi there'`;
    ...
    print "$result";
    $result = `which echo`;
    print "$result";