#!/usr/local/bin/bash out=`grep apache README` echo $out;
通常,当在命令行上运行时,grep在单独的行上显示每个匹配。但是,在上面的脚本中,分隔每个匹配的换行符消失。有谁知道如何保留换行符?
你不会失去它在作业,但在回声。你可以清楚地看到这一点,如果你:
原文链接:https://www.f2er.com/bash/390963.htmlecho "${out}"
您将看到与以下脚本类似的效果:
x="Hello,I am a string with newlines" echo "=====" echo ${x} echo "=====" echo "${x}" echo "====="
其输出:
===== Hello,I am a string with newlines ===== Hello,I am a string with newlines =====
并且,与您的问题无关,但我想提到它,我更喜欢使用$()结构,而不是反引号,只是为了能够嵌套命令的额外的好处。所以你的脚本行变成:
out=$(grep apache README)
现在可能看起来没有什么不同(但它不是),但它使得可能更复杂的命令,如:
lines_with_nine=$(grep $(expr 7 + 2) inputfile)