he.txtbash: he.txt: cannot overwrite existing file如 ;明霞山资源网更新日期:2025/1/9.">

CentOS下如何避免文件覆盖?

操作系统 发布日期:2025/1/9 浏览次数:1

正在浏览: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