linux中“>”和“>>”区别
'>' 输出到文件中。文件不存在会创建。文件已存在,内容会被覆盖。文件时间会更新。
第一次输入'> test', 第二次输入'> test again', 发现内容
[root@localhost ~]# ll
总用量 8
-rw-------. 1 root root 1555 8月 20 15:30 anaconda-ks.cfg-rw-r--r-- 1 root root 7 2月 1 18:03 echo.log
[root@localhost ~]# cat echo.log
> test
[root@localhost ~]# echo '> test again' > echo.log
[root@localhost ~]# cat echo.log
> test again
[root@localhost ~]# ll
总用量 8
-rw-------. 1 root root 1555 8月 20 15:30 anaconda-ks.cfg-rw-r--r-- 1 root root 13 2月 1 18:04 echo.log
最后输出只有:'> test again'
删除echo.log, 测试'>>'
'>>'输出到文件中。文件不存在会创建。文件已存在,内容会继续追加在后面。文件时间会更新。
[root@localhost ~]# rm echo.log
rm:是否删除普通文件 "echo.log"?y
[root@localhost ~]# ll
总用量 4
-rw-------. 1 root root 1555 8月 20 15:30 anaconda-ks.cfg
[root@localhost ~]# echo '> test' >> echo.log
[root@localhost ~]# ll
总用量 8
-rw-------. 1 root root 1555 8月 20 15:30 anaconda-ks.cfg-rw-r--r-- 1 root root 7 2月 1 18:11 echo.log
[root@localhost ~]# cat echo.log
> test
[root@localhost ~]# echo '> test again' >> echo.log
[root@localhost ~]# ll
总用量 8
-rw-------. 1 root root 1555 8月 20 15:30 anaconda-ks.cfg-rw-r--r-- 1 root root 20 2月 1 18:12 echo.log
[root@localhost ~]# cat echo.log
> test> test again
最后输出,文本中有两行。
> test
> test again
辅助记忆:
这两个都是重定向,
>> 比较长,只有继续跟在后面附加,文本才会比较长。
> 比较短,理解成替换文本,才不会那么长。更详细更多的Linux命令可查看下Linux命令的介绍,查找方式如下:
>会覆盖目标的原有内容。当文件存在时会先删除原文件,再重新创建文件,然后把内容写入该文件;否则直接创建文件。
>>会在目标原有内容后追加内容。当文件存在时直接在文件末尾进行内容追加,不会删除原文件;否则直接创建文件。如若想了解更多Linux内容《Linux就该这么学》看下
>会覆盖目标的原有内容。当文件存在时会先删除原文件,再重新创建文件,然后把内容写入该文件;否则直接创建文件。
>>会在目标原有内容后追加内容。当文件存在时直接在文件末尾进行内容追加,不会删除原文件;否则直接创建文件。如若想了解更多Linux内容《Linux就该这么学》看下
>>尾部追加,不会覆盖掉文件中原有的内容
>>是 追加 ,>>会在目标原有内容后追加内容 命令介绍可查看“Linux命令大全”