Re: [9fans] handling output

2009-10-01 Thread hugo rivera
shame on me, I didn't know about it. 2009/10/1, matt : > Tee part of the POSIX standard > > http://www.opengroup.org/onlinepubs/9699919799/utilities/tee.html > > > > hugo rivera wrote: > > > > Great, thanks. > > Looks like plan 9 guys have thought about everything useful ☺ (and > > that I didn't

Re: [9fans] handling output

2009-10-01 Thread matt
Tee part of the POSIX standard http://www.opengroup.org/onlinepubs/9699919799/utilities/tee.html hugo rivera wrote: Great, thanks. Looks like plan 9 guys have thought about everything useful ☺ (and that I didn't do my homework). 2009/10/1, roger peppe : 2009/10/1 hugo rivera : I'v

Re: [9fans] handling output

2009-10-01 Thread hugo rivera
Great, thanks. Looks like plan 9 guys have thought about everything useful ☺ (and that I didn't do my homework). 2009/10/1, roger peppe : > 2009/10/1 hugo rivera : > > > I've been wondering for a while if there's some way to multiplex (if > > this is the correct term) stdout for a given program:

Re: [9fans] handling output

2009-10-01 Thread Richard Miller
> I've been wondering for a while if there's some way to multiplex (if > this is the correct term) stdout for a given program: > % ls @ {grep regexp1 > file1 } @ {grep regexp2 > file2} ls | tee >{grep regexp1 >file1} | grep regexp2 >file2

Re: [9fans] handling output

2009-10-01 Thread Sam Watkins
I'd like to make a "graphical shell" which could do this sort of thing, it would also have a textual format for saving and suitable for editing. I think it would be good to have an equivalent graphical tool for each command line tool, as powerful as the original one; and an editable graphical repr

Re: [9fans] handling output

2009-10-01 Thread roger peppe
2009/10/1 hugo rivera : > I've been wondering for a while if there's some way to multiplex (if > this is the correct term) stdout for a given program: that's what tee does. e.g. ls | tee >{grep regexp1 > file1} >{grep regexp2 > file2}