佚名 通过本文向大家介绍了centos cp 覆盖文件,centos镜像文件下载,centos 共享文件夹,centos 删除文件,centos删除文件夹等相关知识,希望对您有所帮助,也希望大家多多支持微课江湖
[root@stu227 he]# touch he.txt
[root@stu227 he]# set -o noclobber
[root@stu227 he]# echo "123" > he.txt
bash: he.txt: cannot overwrite existing file
如果要取消限制,就把set -o 改为set +o
[root@stu227 he]# set +o noclobber
[root@stu227 he]# echo "123" > he.txt
[root@stu227 he]# cat he.txt
123
</div>