Redirection - CI/CD Glossary Definition
Redirection sends a process stream to or from a file or another descriptor using operators like >, >>, <, and 2>. For example command > out.log 2>&1 captures both stdout and stderr.
In CI
Redirect noisy output to a file you upload as an artifact, then print only a summary to keep logs readable. Note > truncates while >> appends; mixing them up overwrites logs you meant to keep.
Related guides
Pipe - CI/CD Glossary DefinitionPipe: A pipe (`|`) connects the standard output of one command to the standard input of the next, letting sma…
Standard Output (stdout) - CI/CD Glossary DefinitionStandard Output (stdout): Standard output (stdout, file descriptor 1) is the default stream a process writes…
Standard Error (stderr) - CI/CD Glossary DefinitionStandard Error (stderr): Standard error (stderr, file descriptor 2) is the separate stream a process writes d…