From: Michael Hanke <michael.hanke@gmail.com> Date: Fri, 4 Sep 2009 12:09:27 +0000 (-0400) Subject: Script to update all supported nd+ cows. X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=87efe6228bb337c11ea667760244428c701c62ee;p=neurodebian.git Script to update all supported nd+ cows. --- diff --git a/tools/nd_updateall b/tools/nd_updateall new file mode 100755 index 0000000..b2e3edb --- /dev/null +++ b/tools/nd_updateall @@ -0,0 +1,10 @@ +#!/bin/bash + +. /home/neurodebian/neurodebian.git/tools/nd_cmdsettings.sh + +for d in $alldists; do + dfamily=${d%%-*} + drelease=${d##*-} + + nd_updatedist $dfamily $drelease +done