首页 > 系统 > CentOS > 正文

CentOS下如何避免文件覆盖?

2020-07-08 12:43:27
字体:
来源:转载
供稿:网友

[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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表