当命令是if
语句的一部分时,如何在 shell 中将命令拆分为多行?
这有效:
if ! fab --fabfile=.deploy/fabfile.py --forward-agent --disable-known-hosts deploy:$target; then rc=1
fi
这不起作用:
# does not work:
if ! fab --fabfile=.deploy/fabfile.py \
--forward-agent \
--disable-known-hosts deploy:$target; then
rc=1
fi
我没有执行整个命令,而是得到:
./script.sh: line 73: --forward-agent: command not found
更重要的是,我对 Bash 的理解中缺少什么可以帮助我在未来理解这个问题和类似问题?