mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-03 04:07:51 +08:00
10 lines
242 B
Bash
10 lines
242 B
Bash
#!/bin/bash
|
|
if [ "$1" = "bash" ];then
|
|
exec /bin/bash
|
|
elif [ "$1" = "version" ];then
|
|
/run/rainbond-grctl version
|
|
elif [ "$1" = "copy" ];then
|
|
cp -a /run/rainbond-grctl /rootfs/usr/local/bin/
|
|
else
|
|
exec /run/rainbond-grctl "$@"
|
|
fi |