在bash/ksh中设置`set -o noclobber`后,则shell将不允许IO重定向破坏一个已经存在的文件. 除非在重定向的符号之后添加一个!来显式的通知他.
set -o noclobber ls# filea filebls >filea# bash: filea: Cannot clobber existing file ls >|filea# 没问题,filea被覆盖了
如何保证IO重定向不会破坏一个已经存在的文件
原文:http://darksun.blog.51cto.com/3874064/1558325