OLD | NEW |
1 #! /bin/sh | 1 #!/bin/bash |
2 # | 2 # |
3 # start -- start up configured conmux servers on this host. | 3 # start -- start up configured conmux servers on this host. |
4 # | 4 # |
5 # (C) Copyright IBM Corp. 2004, 2005, 2006 | 5 # (C) Copyright IBM Corp. 2004, 2005, 2006 |
6 # Author: Andy Whitcroft <andyw@uk.ibm.com> | 6 # Author: Andy Whitcroft <andyw@uk.ibm.com> |
7 # | 7 # |
8 # The Console Multiplexor is released under the GNU Public License V2 | 8 # The Console Multiplexor is released under the GNU Public License V2 |
9 # | 9 # |
10 if [ -f ~/.gmm.conf ]; then | 10 if [ -f ~/.gmm.conf ]; then |
11 . ~/.gmm.conf | 11 . ~/.gmm.conf |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 mn="${n#abat-}" | 129 mn="${n#abat-}" |
130 case "$n" in | 130 case "$n" in |
131 registry|*-helper) | 131 registry|*-helper) |
132 ;; | 132 ;; |
133 *) | 133 *) |
134 status=`console -s $mn` | 134 status=`console -s $mn` |
135 echo "$mn $status" | 135 echo "$mn $status" |
136 esac | 136 esac |
137 done | 137 done |
138 fi | 138 fi |
OLD | NEW |