Copyright 2002,2003 A.P. Lawrence
d
The "set -C" sets no clobber, which prevents overwriting existing files. Therefore, the
echo "c" > this echo "e" > this
will fail. However,
echo "d" >| this
will succeed: >| overides noclobber.
Add your comments