7 lines
95 B
Text
7 lines
95 B
Text
|
#!/bin/bash
|
||
|
if [ x"${EXPERT_MODE}" == "x" ]; then
|
||
|
zenithserver
|
||
|
else
|
||
|
/bin/bash -l
|
||
|
fi
|