he.txtbash:he.txt:cannotoverwriteexistingfile如; 极乐门资源网更新日期:2024/11/16">
(编辑:jimmy 日期: 2024/11/16 浏览:2)
[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