diff options
author | Erich Eckner <git@eckner.net> | 2016-07-12 07:06:27 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2016-07-12 07:06:27 +0200 |
commit | e6f52673deab9685259eaf9d0465c0864b56d72b (patch) | |
tree | 290696453707f90b7a1471cbd6ee8b98ca2ee510 | |
parent | 56b0630251c5730ed3f03ac9d187d1ced7c1f6fe (diff) | |
download | update-all-e6f52673deab9685259eaf9d0465c0864b56d72b.tar.xz |
parallel in mehreren Fenstern ausfuehren
-rw-r--r-- | update-all.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/update-all.in b/update-all.in index c672d8a..ab8dcf9 100644 --- a/update-all.in +++ b/update-all.in @@ -19,8 +19,6 @@ do else conCmd="ssh -t -t $s" fi - echo "updating ${s} ..." - ${conCmd} "su -c \"${updateCmd["${systemTyp}"]}\"" - echo "... ${s} updated" + urxvt -e ${conCmd} "hostname; su -c \"${updateCmd["${systemTyp}"]}\"" & done done |