mirror script:

#!/bin/sh
umask 002
tla archives |\
        awk  '/.*-MIRROR/ { mirror = $1; sub("-MIRROR.*",""); print "nice tla archive-mirror --no-cached " $1 " " mirror " &" } /.*-SOURCE/ { source = $1; sub("-SOURCE.*",""); print "nice tla archive-mirror --no-cached " source " " $1 " &" } END { print "wait" }' |\
        sh

replay a tree with subprojects script:

#!/bin/sh
tla replay
tla catcfg $1 | while read dir conf; do tla replay -d $dir $conf; done

=locations proprosal

TlaStuff (last edited 2004-08-31 17:45:12 by ct)