X-Git-Url: http://gitweb.pimeys.fr/?a=blobdiff_plain;f=dump_all_confs.sh;fp=dump_all_confs.sh;h=c7d120643046bf18b21435518771aac4c85a0793;hb=a4b00a25d6d5d71258df6910afd528e8d9c88a89;hp=0000000000000000000000000000000000000000;hpb=ed9093bb3c2584f0ba5860047f7caad681ece482;p=scripts-20-100.git diff --git a/dump_all_confs.sh b/dump_all_confs.sh new file mode 100755 index 0000000..c7d1206 --- /dev/null +++ b/dump_all_confs.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# Dumpe les config de toutes les MLs + +DIR="/home/legallic/confs/" + +cd ${DIR} + +echo "Dumping des confs des MLs dans ${DIR}…" + +for ml in $(list_lists -b) +do + echo ${ml} + config_list -o config-${ml} ${ml} +done