我看到这有以下行为:
[root@divinity test]# echo 0 > file.txt
[root@divinity test]# cat file.txt
0
[root@divinity test]# echo 0> file.txt
[root@divinity test]# cat file.txt
我还注意到,如果我包含""
then 它会按预期工作:
[root@divinity test]# echo 0""> file.txt
[root@divinity test]# cat file.txt
0
我想这只是 IO 重定向的一部分,但我不太明白echo 0>
在做什么。