如何将换行符添加到bash脚本中?

时间:2014-02-04 10:51:35

标签: bash ksh

我有一个bash脚本,其中有一个命令

echo -e $(sort $1 | uniq -d)

从命令行运行此脚本时,所有行都出现在一行中。如何在此脚本中添加换行符以将所有行分开?

1 个答案:

答案 0 :(得分:3)

您可能需要引用回显以保持格式:

echo -e "$(sort $1 | uniq -d)"

查看示例:

$ myvar="hello
> how
> are
> you"

$ echo $myvar     <--- unquoted, loses the format
hello how are you

$ echo "$myvar"   <--- quoted, keeps the format
hello
how
are
you