################################################################################ # File: print_all_lines.pl # # <> # # Purpose: Prints all lines in the files specified on the command-line. # # Created: 20th October 2000 # Updated: 1st January 2001 # Author: Synesis Software (Pty) Ltd (C) 2000. All rights reserved. # (www.synesis-group.com/software). # # Status: Public-domain # # Copyright: Synesis Software (Pty) Ltd provides the source code contained in # this file/document free-of-charge according to the following # conditions: # # (i) No warranty, expressed or implied, is given as to the # correctness or efficiency of the code. # (ii) No part of this code may be modified or copied, by whatever # means without including a copy of this notice in its entirety # (this means the all content between the <> and <<:END>> # tokens inclusive, including, and not limited to, purpose, date # of creation, date of last update, authorship, address, copyright # and status). # (iii) This code, in whole or part, remains the property of # Synesis Software (Pty) Ltd, whether incorporated as-is, or in # modified form. # # <<:END>> # # ############################################################################## #_SYNSOFT_VER_PL_PRINT_ALL_LINES_MAJOR 1 #_SYNSOFT_VER_PL_PRINT_ALL_LINES_MINOR 0 #_SYNSOFT_VER_PL_PRINT_ALL_LINES_REVISION 1 #_SYNSOFT_VER_PL_PRINT_ALL_LINES_EDIT 2 while(<>) { print; }