From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from techfac.TechFak.Uni-Bielefeld.DE ([129.70.132.100]) by hawkwind.utcs.toronto.edu with SMTP id <2757>; Sat, 5 Jun 1993 08:53:36 -0400 Received: from idefix.TechFak.Uni-Bielefeld.DE by techfac.TechFak.Uni-Bielefeld.DE id AA29015; Sat, 5 Jun 1993 14:53:15 +0200 Received: by idefix.techfak.uni-bielefeld.de (5.0/tp.29.0890) id AA09468; Sat, 5 Jun 93 14:53:13 +0200 Date: Sat, 5 Jun 1993 08:53:13 -0400 From: malte@TechFak.Uni-Bielefeld.DE Message-Id: <9306051253.AA09468@idefix.techfak.uni-bielefeld.de> To: rc@hawkwind.utcs.toronto.edu Subject: Re: here strings Forwarding: Mail from 'John (Most modern computers would break if you stood on them) Mackin ' dated: Sat, 5 Jun 1993 08:35:30 -0400 a directory full of files that had come from, ah, another operating system, and the names were all upper-case: for (f in *) mv $f `{tr A-Z a-z <<<$f} OK, John. Your lucky this worked because most (especially on older unixes) text utilities require their input to end in a '\n'. Then you'd have to for (f in *) mv $f `{echo $f | tr A-Z a-z} Malte