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) roo...
1、 [root@rhel7pc1 test]# echo"xxx"xxx [root@rhel7pc1 test]# echo-n"xxx"## -n选项实现不换行输出xxx[root@rhel7pc1 test]#