stderr

Jakub Jedelský

O autorovi

Jmenuji se Jakub Jedelský, těší mě.

Od října 2014 mě potkáte v brněnské kanceláři GoodData, kde se v ROLAP týmu starám o databázové a další servery. Mimo to spravuju pár balíčků pro Fedoru. Můžu se pochlubit certifikací RHCE. Zvládám pár kytarových riffů.

Máte-li k tomuto webu nějaké výhrady, můžete mi jej pomoci upravit. Zdrojové kódy jsou na Githubu.

Co je to ten stderr?

NAME
    stdin, stdout, stderr - standard I/O streams
SYNOPSIS
     #include
     extern FILE *stderr;

DESCRIPTION
     Under normal circumstances every Unix program has three
     streams opened fot it when it starts up, one for input,
     one for output, and one for printing diagnostic or error
     mesages.

     The input stream is referred to as ‘‘standard input’’; the
     output stream is referred to as ‘‘standard output’’; and
     the error stream is referred to as ‘‘standard error’’.
     These terms are abbreviated to form the symbols used to
     refer to these files, namely stdin, stdout, and stderr.
(...)