On Thu, 10 Apr 2014 00:43:45 +0300
Andrei POPESCU <[email protected]> wrote:

> On Mi, 09 apr 14, 08:59:51, Steve Litt wrote:
> > 
> > Or, you can just redirect ls into a file, use Vim to convert and
> > rename each file individually.
> 
> Could you please elaborate on this?

ls -1 *.png > doit.sh
chmod a+x doit.sh
gvim doit.sh
:%s/^/doconvert  /
ggi
function doconvert(){
 mv $1 $1.bak
 convert -crop whatever $1.bak $1
}<esc>
:wq
./doit.sh
 
SteveT

Steve Litt                *  http://www.troubleshooters.com/
Troubleshooting Training  *  Human Performance


-- 
To UNSUBSCRIBE, email to [email protected] 
with a subject of "unsubscribe". Trouble? Contact [email protected]
Archive: https://lists.debian.org/20140412122648.11ed9653@mydesk

Reply via email to