Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    print "This was the read from the parameters:\n";
    print "<@{ARGV}>\n";
    __END__
    
  2. or download this
    C:\test>ReadPipeAndArgs.pl  A B CDE H 123
    This was read from the pipe:
    ...
    
    This was the read from the parameters:
    <A B CDE H 123>
    
  3. or download this
    C:\test>ReadPipeAndArgs.pl  A B CDE H 123 < ReadPipeAndArgs.pl
    This was read from the pipe:
    ...
    
    This was the read from the parameters:
    <A B CDE H 123>
    
  4. or download this
    C:\test>ReadPipeAndArgs.pl  A B CDE H 123 < ReadPipeAndArgs.pl
    This was read from the pipe:
    ...
    This was the read from the parameters:
    <A B CDE H 123>