我想在bash脚本中使用双引号(“”)到外部命令中。例如:
我想要
result=$(hg log "one to three")
字面意思地在
中引用hg log "one to three"
不要
hg log 'one to three'.
有什么想法吗?
答案 0 :(得分:0)
将结果存储在一个数组中是解决方案。例如:
revisions=($(hg log -d "$start to $end" --template "{ rev}\n"))