Files
zerotier-magisk/magisk/zerotier/zerotier.sh
T
2024-05-11 13:04:22 +08:00

13 lines
222 B
Bash

#!/bin/sh
pipe=/data/adb/zerotier/run/pipe
if [[ ! -p $pipe ]]; then
echo "daemon not running"
exit 1
fi
if [[ "$1" ]]; then
echo "$1" > $pipe
else
echo "Usage: zerotier.sh {start|stop|restart|join|leave}"
fi