当前位置: > CentOS > CentOS入门 >

CentOS下下避免文件覆盖的命令

时间:2015-08-06 11:35来源:linux.it.net.cn 作者:IT
[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

(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容