mirror of
https://github.com/hiddify/hiddify-next.git
synced 2026-06-23 21:12:33 +08:00
10 lines
149 B
Bash
10 lines
149 B
Bash
#!/bin/bash
|
|
|
|
cd "\$(dirname "\$0")"
|
|
export LD_LIBRARY_PATH=usr/lib
|
|
if [ "$1" == "HiddifyService" ];then
|
|
exec ./$@
|
|
else
|
|
exec ./$appName $@
|
|
fi
|