[[email protected] he]# touch he.txt
[[email protected] he]# set -o noclobber
[[email protected] he]# echo "123" > he.txt
bash: he.txt: cannot overwrite existing file
如果要取消限制,就把set -o 改为set +o
[[email protected] he]# set +o noclobber
[[email protected] he]# echo "123" > he.txt
[root[email protected] he]# cat he.txt
123
时间: 2024-10-06 10:15:57