当前位置: 技术问答>linux和unix
如何在脚本尾部添加字节串(不能换行)
来源: 互联网 发布时间:2016-09-17
本文导语: 比如: echo 'A' >> 1.txt echo 'B' >> 1.txt 这样是2行,我想在1行, 有办法吗 | echo -n a >>1.txt | Echo the STRING(s) to standard output. -n do not output the tra...
比如:
echo 'A' >> 1.txt
echo 'B' >> 1.txt
这样是2行,我想在1行, 有办法吗
echo 'A' >> 1.txt
echo 'B' >> 1.txt
这样是2行,我想在1行, 有办法吗
|
echo -n a >>1.txt
|
Echo the STRING(s) to standard output.
-n do not output the trailing newline
-e enable interpretation of backslash escapes
-E disable interpretation of backslash escapes (default)
--help display this help and exit
--version
output version information and exit
-n do not output the trailing newline
-e enable interpretation of backslash escapes
-E disable interpretation of backslash escapes (default)
--help display this help and exit
--version
output version information and exit