> On Tue, 18 May 2004, Drew Tomlinson wrote: > > > OK, thanks. I'm using tcsh but I think I figure out how to do it > > following your example. So a "script" is the only way to do it in > > *nix? Being born and raised on MS-DOS, I'm accustomed to the "copy bac* > > bac*.old" syntax.
On the command line (tcsh): > ls bac* bac1 bac2 bac3 > foreach file ( bac* ) foreach? cp -p $file $file.old foreach? end > ls bac* bac1 bac1.old bac2 bac2.old bac3 bac3.old cheers, Ruben _______________________________________________ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
