Perplexed

Kevin Buettner plug-discuss@lists.plug.phoenix.az.us
Fri, 28 Feb 2003 16:32:32 -0700


On Feb 28,  4:26pm, Michael Havens wrote:

> Why would I have a file, uniq the output, have the output redirected to a 
> file, and the file be blank when I tried to look at it?
[...]
> [bmike1@localhost training]$ uniq test-sor >test-sor
> [bmike1@localhost training]$ more test-sor

Because the file is truncated by the shell before ``uniq'' gets to operate
on it.  By the time ``uniq'' opens it, it's already empty.

Kevin