11 lines
159 B
Bash
Executable file
11 lines
159 B
Bash
Executable file
#!/bin/sh
|
|
|
|
#
|
|
#
|
|
#
|
|
|
|
JAIL_NAME="dev"
|
|
JAIL_COMMAND="liteide"
|
|
|
|
JAIL_RUN_ID=$(jls | grep $JAIL_NAME | tr -s ' ' | cut -d ' ' -f 2)
|
|
jailme $JAIL_RUN_ID $JAIL_COMMAND
|