On Sun, Apr 11, 2004 at 07:13:13PM -0500, hugo vanwoerkom wrote:
} Hi world!
} 
} I would like to run jigdo-lite in batch mode.
} 
} That way I can stack 3 runs and have them done overnite.
} 
} Is that possible? Man and Howto not too helpful. Mailing-list is mostly 
} spam. Could hack the script. Takes time.

I used this script to create a full set of sarge ISOs. You may find it
helpful in writing your own script.

#!/bin/sh

URLTMPL="http://gluck.debian.org/cdimage/testing/cd/jigdo-area/i386/sarge-i386-X
XX.jigdo"
CDCOUNT=12

yes | tr 'y' '\012' | {
        CURCD=1
        while test $CURCD -le $CDCOUNT
        do
                URL="`echo \"$URLTMPL\" | sed s/XXX/$CURCD/`"
                jigdo-lite "$URL"
                CURCD="`expr $CURCD + 1`"
        done
}


} Thanks!
} Hugo
--Greg


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to