Blame test/concat1.awk

Packit 575503
#From deep@cicada-semi.com  Wed Jan 23 13:15:52 2002
Packit 575503
#X-From_: deep@cicada-semi.com Wed Jan 23 01:24:54 2002
Packit 575503
#From: "Mandeep Chadha" <deep@cicada-semi.com>
Packit 575503
#To: <bug-gawk@gnu.org>
Packit 575503
#Subject: gawk version 3.1.0 will not print a ";"
Packit 575503
#Date: Tue, 22 Jan 2002 17:23:57 -0600
Packit 575503
#Message-ID: <NCBBLGONGLINHCDGFCPNOENHCOAA.deep@cicada-semi.com>
Packit 575503
#MIME-Version: 1.0
Packit 575503
#Content-Type: text/plain;
Packit 575503
#	charset="iso-8859-1"
Packit 575503
#Content-Transfer-Encoding: 7bit
Packit 575503
#X-Priority: 3 (Normal)
Packit 575503
#X-MSMail-Priority: Normal
Packit 575503
#X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0)
Packit 575503
#Importance: Normal
Packit 575503
#X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700
Packit 575503
#
Packit 575503
#
Packit 575503
#The file "tmp" contains the following lines:
Packit 575503
#
Packit 575503
#A
Packit 575503
#B
Packit 575503
#C
Packit 575503
#D
Packit 575503
#
Packit 575503
#and when I run the command:
Packit 575503
#
Packit 575503
#	gawk '{print "Input = "$_" ; "}' tmp
Packit 575503
{print "Input = "$_" ; "}
Packit 575503
#
Packit 575503
#I get the following output:
Packit 575503
#
Packit 575503
#Input = A
Packit 575503
#Input = B
Packit 575503
#Input = C
Packit 575503
#Input = D
Packit 575503
#
Packit 575503
#while I expect the following output:
Packit 575503
#
Packit 575503
#Input = A ;
Packit 575503
#Input = B ;
Packit 575503
#Input = C ;
Packit 575503
#Input = D ;
Packit 575503
#
Packit 575503
#Running gawk --version produces the following output:
Packit 575503
#
Packit 575503
#GNU Awk 3.1.0
Packit 575503
#Copyright (C) 1989, 1991-2001 Free Software Foundation.
Packit 575503
#
Packit 575503
#This program is free software; you can redistribute it and/or modify
Packit 575503
#it under the terms of the GNU General Public License as published by
Packit 575503
#the Free Software Foundation; either version 2 of the License, or
Packit 575503
#(at your option) any later version.
Packit 575503
#
Packit 575503
#This program is distributed in the hope that it will be useful,
Packit 575503
#but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 575503
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 575503
#GNU General Public License for more details.
Packit 575503
#
Packit 575503
#You should have received a copy of the GNU General Public License
Packit 575503
#along with this program; if not, write to the Free Software
Packit 575503
#Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
Packit 575503
#
Packit 575503
#I am running this on a i686 machine that is running RedHat 7.2 (out of the box).
Packit 575503
#
Packit 575503
#Thanks,
Packit 575503
#
Packit 575503
#Mandeep Chadha
Packit 575503
#
Packit 575503
#----------------------------------------
Packit 575503
#Mandeep Chadha
Packit 575503
#Cicada Semiconductor Corp.
Packit 575503
#811 Barton Springs Road, Suite 550
Packit 575503
#Austin, TX 78704
Packit 575503
#Ph:      (512) 327-3500 x111
Packit 575503
#E-mail:  deep@cicada-semi.com
Packit 575503
#URL:     http://www.cicada-semi.com
Packit 575503
#----------------------------------------