]> mj.ucw.cz Git - moe.git/commitdiff
Added.
authorMartin Mares <mj@ucw.cz>
Thu, 3 Jul 2003 09:21:19 +0000 (09:21 +0000)
committerMartin Mares <mj@ucw.cz>
Thu, 3 Jul 2003 09:21:19 +0000 (09:21 +0000)
bin/mo-ev-open-all [new file with mode: 0755]

diff --git a/bin/mo-ev-open-all b/bin/mo-ev-open-all
new file mode 100755 (executable)
index 0000000..f16ce2a
--- /dev/null
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+[ -n "$1" ] || { echo "Usage: mo-ev-open-all <tasks>" ; exit 1 ; }
+
+while [ -n "$1" ] ; do
+       for user in `bin/mo-get-users` ; do
+               echo -e "\n### USER $user TASK $1 ###\n"
+               bin/ev-open $user $1
+       done
+       shift
+done