Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my $line = <STDIN>;              # bare <> won't work
    print "argument was $arg\ninputline was $line";
    
  2. or download this
    use strict;
    use warnings;
    ...
    my $file = $ARGV[0];
    system "./echo.pl $file";
    
  3. or download this
    duper:~/pp carol$ ./kprasanna.pl a_filename
    hello kprasanna                  # typed in at terminal
    ...
    inputline was hello kprasanna
    duper:~/pp carol$