在bash/ksh中设置`set -o noclobber`后,则shell将不允许IO重定向破坏一个已经存在的文件. 除非在重定向的符号之后添加一个!来显式的通知他.
set -o noclobber ls# filea filebls >filea# bash: filea: Cannot clobber existing file ls >|filea# 没问题,filea被覆盖了
时间: 2024-10-15 14:36:37
在bash/ksh中设置`set -o noclobber`后,则shell将不允许IO重定向破坏一个已经存在的文件. 除非在重定向的符号之后添加一个!来显式的通知他.
set -o noclobber ls# filea filebls >filea# bash: filea: Cannot clobber existing file ls >|filea# 没问题,filea被覆盖了