This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Redirect both stdout & stderr to the same file


On Sat, 14 Jun 2003, Alex Vinokur wrote:

> ===========================================
> Windows 2000
> CYGWIN_NT-5.0 1.3.22(0.78/3/2)
> GNU gcc version 3.2 20020927 (prerelease)
> ===========================================
>
> ------ C code : BEGIN ------
> /* File t.c */
> #include <stdio.h>
> int main()
> {
>   fprintf (stdout, "(1) to stdout\n");
>   fprintf (stderr, "(2) to stderr\n");
>   fprintf (stdout, "(3) to stdout\n");
>   return 0;
> }
> ------ C code : END --------
>
> $ gcc t.c
>
> $ a &>zzz

$ a >zzz 2>&1

You **really** should read `info bash', search for a tutorial or something. This
is basic shell usage.

Elfyn

-- 
Elfyn McBratney
Systems Administrator
ABCtales.com / Ubertales.co.uk

Show us yer bulk: biteme@is.ubertales.co.uk


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]