欢迎来到电脑知识学习网,专业的电脑知识大全学习平台!

手机版

CentOS下如何避免文件覆盖?

操作系统 发布时间:2019-03-13 03:43:40

[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


责任编辑:电脑知识学习网

操作系统