Date: Thu, 4 Mar 1999 21:36:30 +0000 From: Ben Smithurst <ben@scientia.demon.co.uk> To: Keith Anderson <keith@apcs.com.au> Cc: questions@freeBSD.org Subject: Re: omething simple (sorry) Message-ID: <19990304213629.A13061@scientia.demon.co.uk> In-Reply-To: <19990304191114.A11792@scientia.demon.co.uk> References: <XFMail.990304231927.keith@apcs.com.au> <19990304191114.A11792@scientia.demon.co.uk>
next in thread | previous in thread | raw e-mail | index | archive | help
I wrote... > for i in *.txt; do mv $i $(basename $i .txt); done smeg. This might work better: for i in *.txt; do mv $i $(basename $i .txt).old; done -- Ben Smithurst ben@scientia.demon.co.uk send a blank message to ben+pgp@scientia.demon.co.uk for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19990304213629.A13061>