001、
(base) root@PC1:/home/test3# ls (base) root@PC1:/home/test3# echo "xx" xx (base) root@PC1:/home/test3# echo -n "xx" ## echo -n 实现输出字符串,但是不输出换行符 xx(base) root@PC1:/home/test3#
002、printf实现
(base) root@PC1:/home/test3# printf "xxx\n" xxx (base) root@PC1:/home/test3# printf "xxx" ## printf实现输出字符串, 但是不输出换行符 xxx(base) root@PC1:/home/test3#
标签:输出,test3,PC1,base,linux,home,换行符,root From: https://www.cnblogs.com/liujiaxin2018/p/16625916.html