所以,我想要做的是,如果用户没有将路径作为参数传递给脚本,脚本将使用当前目录。如果通过了路径,请改用它。
instdir="$(pwd)/"
if [ -n "$1" ] ; then
instdir="$1"
fi
cd $instdir
错误
./script.sh /path/to/a\ folder/
输出:cd: /path/to/a: File or folder not found
./script.sh "/path/to/a\ folder/"
输出:cd: /path/to/a\: File or folder not found
我在这里做错了什么?