nodeq-port-test/app-setting.sh

14 lines
317 B
Bash
Raw Permalink Normal View History

2023-11-20 02:32:48 +00:00
#!/bin/bash
if [ -z $1 ] || [ -z $2 ] || [ -z $3 ] ; then
echo "Please fill in app's name, bin path, file."
exit
fi
mv sdt-cloud-app.service $1.service
sed -i "s/sdt-cloud-app/$1/g" ./install.sh
sed -i "s/sdt-cloud-app/$1/g" ./$1.service
sed -i "s%exePath%$2%g" ./$1.service
sed -i "s/exeFile/$3/g" ./$1.service