he.txtbash:he.txt:cannotoverwriteexistingfile如果要取消限制,就把set-o改为set+o[root@stu227he]#set+onoclobber[root@stu227he]#echo"123">he.txt[root@stu227he]#c"/> he.txtbash:he.txt:cannotoverwriteexistingfile如果要取消限制,就把set-o改为set+o[root@stu227he]#set+onoclobber[root@stu227he]#echo"123">he.txt[root@stu227he]#c">

首页  >  文章  >  系统教程  >  CentOS文件覆盖问题的解决方法

CentOS文件覆盖问题的解决方法

王林
王林转载
2024-01-03 16:34:24642浏览

[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

以上是CentOS文件覆盖问题的解决方法的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:jb51.net。如有侵权,请联系admin@php.cn删除