10 lines
146 B
Bash
10 lines
146 B
Bash
#!/bin/bash
|
|
|
|
cd "$(dirname "$0")"
|
|
export LD_LIBRARY_PATH=usr/lib
|
|
if [ "$1" == "HiddifyService" ];then
|
|
exec ./$@
|
|
else
|
|
exec ./hiddify $@
|
|
fi
|