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.
- Scripting problems. Niclas Hedhman
- Re: Scripting problems. Richard Adams
- Re: Scripting problems. Niclas Hedhman
- Re: Scripting problems. Tom Gilbert
- Re: Scripting problems. Niclas Hedhman
- Re: Scripting problems. Mike Ricketts
- Re: Scripting problems. Ray Olszewski
