在外部命令中转义双引号

时间:2015-01-26 09:23:48

标签: bash

我想在bash脚本中使用双引号(“”)到外部命令中。例如:

我想要

result=$(hg log "one to three") 

字面意思地在

中引用
hg log "one to three"

不要

hg log 'one to three'. 

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

将结果存储在一个数组中是解决方案。例如:

revisions=($(hg log -d "$start to $end" --template "{ rev}\n"))