我有一个bash脚本,其中有一个命令
echo -e $(sort $1 | uniq -d)
从命令行运行此脚本时,所有行都出现在一行中。如何在此脚本中添加换行符以将所有行分开?
答案 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