5/28 What's the equivalent of >>! in bash?
\_ I'm not a bash user, but the manpage (hey, it has one!) seems to
imply >>|
\_ It seems that >> in bash works like >>! in csh?
\_ In either bash or (t)csh, you must set "noclobber" to prevent
overwriting. Perhaps you have it set it in (t)csh but
neglected to set it in bash?
overwriting. Perhaps you have it set in (t)csh but negeclted
to set it in bash? But more importantly, what does >>! mean?
>! makes sense, but don't >> and >>! mean the same thing?
\_ "cmd >> foo" will not create foo if does not exist.
"cmd >>! foo" will. at least in *csh
\_ Oh, ok. In that case, yeah, what the previous poster said:
just use >> in bash. |