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ファイル上書き問題の解決策
[root@stu227 he]# touch he.txt
[root@stu227 he]# set -o noclobber
[root@stu227 he]# echo "123" > he.txt
bash: he.txt: 既存のファイルを上書きできません
制限を解除したい場合はset -oをset o
に変更してください。[root@stu227 he]# 破壊を設定します
[root@stu227 he]# echo "123" > he.txt
[root@stu227 he]# 猫 he.txt
123
以上がCentOSファイル上書き問題の解決策の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。