Re: [arch-general] How to do this

2010-10-24 Thread Matthew Monaco
On 10/24/2010 10:45 AM, Lukas Fleischer wrote: On Sun, Oct 24, 2010 at 05:38:35PM +0300, jesse jaara wrote: I think i miss understoid you, if you wang the output og make to file you can put>/file/path to end if iy ">" won't work since errors are printed to stderr (not stdout) in most cases. "2

Re: [arch-general] How to do this

2010-10-24 Thread Baho Utot
On 10/24/10 11:20, Johannes Held wrote: Christian: I know that I have to use piping for this, but I want to output the errors I get while compiling a program into atext file. What to type after make then? You could try "tee". man tee. your_command | tee file_1 file_2 If you need to bail fr

Re: [arch-general] How to do this

2010-10-24 Thread Heiko Baums
Am Sun, 24 Oct 2010 16:33:10 +0200 schrieb Christian : > Hi all, > I know that I have to use piping for this, but I want to output the > errors I get while compiling a program into atext file. > What to type after make then? > Many thanks for any help, > Christian The easiest way in Arch Linux i

Re: [arch-general] How to do this

2010-10-24 Thread Johannes Held
Christian : > I know that I have to use piping for this, but I want to output the > errors I get while compiling a program into atext file. > What to type after make then? You could try "tee". man tee. your_command | tee file_1 file_2 -- Gruß, Johannes http://hehejo.de signature.asc Descript

Re: [arch-general] How to do this

2010-10-24 Thread Christian
Hi, On 2010-10-24 16:45, Lukas Fleischer wrote: On Sun, Oct 24, 2010 at 05:38:35PM +0300, jesse jaara wrote: I think i miss understoid you, if you wang the output og make to file you can put>/file/path to end if iy ">" won't work since errors are printed to stderr (not stdout) in most cases. "2

Re: [arch-general] How to do this

2010-10-24 Thread Lukas Fleischer
On Sun, Oct 24, 2010 at 05:38:35PM +0300, jesse jaara wrote: > I think i miss understoid you, if you wang the output og make to file you > can put >/file/path to end if iy ">" won't work since errors are printed to stderr (not stdout) in most cases. "2>" should do the trick. If there are some erro

Re: [arch-general] How to do this

2010-10-24 Thread jesse jaara
I think i miss understoid you, if you wang the output og make to file you can put >/file/path to end if iy On 24.10.2010 17.36, "jesse jaara" wrote: > If you build it in some terminal emulator you might be ableto save the whole > output into file. If i remember right atleast kdes konsole and yakua

Re: [arch-general] How to do this

2010-10-24 Thread Lukas Fleischer
On Sun, Oct 24, 2010 at 04:33:10PM +0200, Christian wrote: > I know that I have to use piping for this, but I want to output the > errors I get while compiling a program into atext file. > What to type after make then? `make 2> foobar` will put them errors in a text file called "foobar".

Re: [arch-general] How to do this

2010-10-24 Thread jesse jaara
If you build it in some terminal emulator you might be ableto save the whole output into file. If i remember right atleast kdes konsole and yakuake can do that On 24.10.2010 17.33, "Christian" wrote: > Hi all, > I know that I have to use piping for this, but I want to output the > errors I get whi