在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
[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 |
请发表评论