This commit is contained in:
陆柯 2021-08-18 20:01:55 +08:00
parent 7f308f6c34
commit 6745234b9d

View File

@ -7,11 +7,21 @@ if [ $1 ]
then then
SourcePath=$1 SourcePath=$1
else else
read -p "Enter config source path (leave blank for /faronear/lib/sysconfig/home) >> " SourcePath read -p "Enter config source path (leave blank for [Users/luk.lu]/faronear/fon/sysconfig/home) >> " SourcePath
if [ ! $SourcePath ] if [ ! $SourcePath ]
then then
echo "Use default source path: /faronear/lib/sysconfig/home" echo "Use default source path: [Users/luk.lu]/faronear/fon/sysconfig/home"
SourcePath=/faronear/lib/sysconfig/home if [ -d /faronear/fon/sysconfig/home ]
then
SourcePath=/faronear/fon/sysconfig/home
else
if [ -d /Users/luk.lu/faronear/fon/sysconfig/home ]
then
SourcePath=/Users/luk.lu/faronear/fon/sysconfig/home
else
SourcePath=`pwd`/home
fi
fi
fi fi
fi fi