Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    }
    printf("\n    ... END PROCESS <<\n");
    
  2. or download this
        while (<>) {
        chomp;    # avoid \n on last field
    ...
        # ...
        }
    
  3. or download this
        chomp($cwd = `pwd`);
        chomp($answer = <STDIN>);