home *** CD-ROM | disk | FTP | other *** search
/ ftp.cse.unsw.edu.au / 2014.06.ftp.cse.unsw.edu.au.tar / ftp.cse.unsw.edu.au / pub / doc / languages / perl / nutshell / ch1 / echo3 < prev    next >
Encoding:
Text File  |  1992-10-18  |  176 b   |  7 lines

  1. #!/usr/bin/perl
  2. foreach $arg (@ARGV) {
  3.     $arg .= ' ';            # Add a space to each argument.
  4. }
  5. $ARGV[$#ARGV] =~ s/ $/\n/;  # Change last space to a newline.
  6. print @ARGV;
  7.