echo命令
约 103 字
预计阅读 1 分钟
次阅读
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
|
1
2
3
| [root@os55 ~]# ls >> test.txt
[root@os55 ~]# cat test.txt
test
|