UA3F/ua3f.service
2023-12-03 15:39:45 +08:00

17 lines
188 B
Desktop File

#!/bin/sh /etc/rc.common
START=99
start(){
/root/ua3f &
echo "ua3f is start"
}
stop(){
killall ua3f
echo "ua3f is stop"
}
restart(){
killall ua3f
/root/ua3f &
}