itworks

来自「接收端的程序」· 代码 · 共 28 行

TXT
28
字号
#!/bin/bashif [ "$1" = "start" ]then	echo The system started!	./itworksmonitorelif [ "$1" = "stop" ]then	echo The system stopped!	killall itworksmonitorelif [ "$1" = "restart" ]then	echo The system stoped!	echo The system started!	killall itworksmonitor	./itworksmonitorelse	echo Sorry!The parameter is wrong!	exit 1fiexit 0

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?