标签: bash echo
我需要知道echo -n的含义,这就是示例:echo -n "" > file.txt。 echo和echo -n之间有什么区别?
echo -n
echo -n "" > file.txt
echo
我看了man echo但需要更多信息。
man echo
答案 0 :(得分:0)
来自here:
-n:不输出尾随换行符。
>表示将其写入名为file.txt的文件(如果不存在则创建)。
>
file.txt