On Sun, 16 Jan 2000, Tom Gilbert wrote:

> Why not just
> cat abc def > def
> 
Not safe.  def could get truncated by the shell before cat tries to read
it.

> or
> cat def >> abc
> 
Doesn't achieve the desire result.

cat abc def | cat >def
is probably the easiest way of doing it

-- 
Mike Ricketts <[EMAIL PROTECTED]>

Put your Nose to the Grindstone!
                -- Amalgamated Plastic Surgeons and Toolmakers, Ltd.

Reply via email to