pan-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Pan-users] 0.11.3 question


From: Eric Ortega
Subject: Re: [Pan-users] 0.11.3 question
Date: Tue, 27 May 2003 12:40:15 -0700
User-agent: Mutt/1.5.3i

On Fri, May 23, 2003 at 08:23:49PM -0400, Wolf J. Flywheel wrote:

>       As far as I know, there's no way built into Pan, but if you're using 
> Bash 
> as your command shell, you can save them all in the same place and do 
> something like this:
> 
> for f in *.jpg ; do mv "${f}" "BobsCat${f}" ; done

Those quotes and squiggly-brackets are unnecessary AFAIK.

  for i in `ls *.jpg` ; do mv $i BobsCat$i; done

is fine.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]