Re: Retiring --tollef

2013-02-18 Thread Calvin Morrison
Exterminate Exterminate Exterminate On 16 February 2013 20:15, Wayne E. Seguin wrote: > Nuke it. > > > On Fri, Feb 15, 2013 at 6:26 PM, Ole Tange wrote: >> >> Some distributions (most recently Ubuntu) seem to enable --tollef by >> default without stressing they have done so to their users. >> >>

Why this should not work ?

2013-02-18 Thread yacob sen
Hi ALL, I have the following command: for i in `seq -w 2010 2010`    do   mkdir $i   cd $i      file=test.$i      dirr=test   parallel -j+0 'mkdir {}; cd ${}  wget ${prot}://${ftp_site}/$file/{}/${dirr}/*.zip ; cd ../'  ::: $(seq -w 01 365) done Basically what I want is , first create a directory

Re: Why this should not work ?

2013-02-18 Thread Hans Schou
You can not use '*.zip' - you need to know the filenames. And what is the '$' doing in "cd ${}" ? Consider using ncftpget in recursive mode instead. /hans