diff options
Diffstat (limited to 'xmc')
-rwxr-xr-x | xmc | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ +#!/bin/bash + +if [ $# -eq 0 ]; then + xsh - mc +else + if [ $# -eq 1 -a "x$1" = "xsu" ]; then +# xsh - mc su + exec xsh - mc su + else +# xsh $@ mc + exec xsh $@ mc + fi +fi |