需要使用sh.exe来解析*.sh脚本。
注意事项:
1)因为shell是区分大小写的,shell使用PATH作为环境变量。必须在每个文件的开始用
PATH=$Path
export PATH
2) 路径分隔符可以使用/或\\。
3)正反斜杠替换
Root=$1
WebRoot=$Root/Web
echo $WebRoot
echo $WebRoot | sed 's/\\/\//g' > temp.txt
WebRoot=`cat temp.txt`
rm -f temp.txt
echo $WebRoot
echo $WebRoot | sed 's#/#\\\\#g' > temp.txt
WebRoot=`cat temp.txt`
rm -f temp.txt
echo $WebRoot
4)sed和grep中l路径分隔符使用\\\\
sed "s#C:\\\\Program Files\\\\product\\\\AAA\#C:\\\\Program Files\\\\product\\\\BBB#" product.ini > product.ini.Update
grep -q "C:\\\\Program Files\\\\product\\\\BBB" product.ini.Update
STATUS=$?
if [ $STATUS -eq 0 ] ; then
mv -f product.ini.Update product.ini
else
echo Update FAILED For product.ini
fi
5)判断传入参数个数
if [ $# -ne 4 ] ; then
echo the parameters are not correct for $0 !
exit 1
fi
6)kill某个进程
PID=$(ps -a | grep -i $programname | awk '{print $1;}')
if [ "$PID" = "" ] ; then
echo "no instance of $programname ."
else
echo "kill -9 $PID"
kill -9 $PID
sleep 10
fi
完!