在 bash 脚本中,我们可以使用\
. 有没有办法从代码中做同样的事情?
$ a=hello\ world
$ echo $a
hello world
$ b=${a:?} # ? used as dummy; it will not work
$ echo $b
hello\ world
调用者.bash
#!/bin/bash
name=$1
if [[ -n $name ]]; then
where_query="--where name $name"
fi
mycommand $where_query
mycommand,一个外部程序,我们不能修改。添加的虚拟代码仅用于说明目的。
#!/bin/bash
for i in "${@}"
do
echo "$i"
done
实际的
$ caller.bash "foo bar"
--where
name
foo
bar
预期的
$ caller.bash "foo bar"
--where
name
foo bar