Personal tools

I/O redirection

From MohidWiki

Revision as of 11:27, 3 December 2008 by Guillaume (talk | contribs) (1 revision)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

0 - stdin 1 - stdout 2 - stderr

Syntax

> command < input-file > output-file
> command i>&j

Examples

> make > makelog.log 2>&1

Redirects all make output to makelog.log file as stderr is redirected to stdout.

External References