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">
[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中文網其他相關文章!