From owner-freebsd-questions Tue Jun 15 12:38: 6 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by hub.freebsd.org (Postfix) with ESMTP id E738814ECA for ; Tue, 15 Jun 1999 12:37:57 -0700 (PDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.9.3/8.9.3) id OAA40539; Tue, 15 Jun 1999 14:37:50 -0500 (CDT) (envelope-from dan) Date: Tue, 15 Jun 1999 14:37:50 -0500 From: Dan Nelson To: vagner@WWW.TIMANDPATRICK.COM Cc: questions@FreeBSD.ORG Subject: Re: capt to lower case Message-ID: <19990615143749.A40362@dan.emsphone.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: ; from "vagner@WWW.TIMANDPATRICK.COM" on Tue Jun 15 12:34:07 GMT 1999 X-OS: FreeBSD 4.0-CURRENT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In the last episode (Jun 15), vagner@WWW.TIMANDPATRICK.COM said: > I need a command to convert all the files in a directory > from uppercase to lower case. for i in *[A-Z]* ; do mv $i `echo $i | tr A-Z a-z` done .. should work. -Dan Nelson dnelson@emsphone.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message