目录

echo命令

目录
  • echo
1
2
[root@os55 ~]# echo test test.txt
test test.txt
  • echo 与> , 在特定的场合,也是需要直接覆盖模式的,类似python的w模式
1
2
3
4
[root@os55 ~]# cat test.txt
[root@os55 ~]# echo test > test.txt
[root@os55 ~]# cat test.txt
test
  • “> >” ,类似python的a模式
1
2
3
[root@os55 ~]# ls >> test.txt
[root@os55 ~]# cat test.txt
test