Standard Input (stdin) - CI/CD用語集の定義
standard input(stdin、file descriptor 0)は、process が入力を読み取るデフォルトのストリームです。キーボード、pipe、またはファイルのリダイレクトから来ることがあります。
CI での扱い
CI の runner は非対話的なので、stdin は通常空か閉じられています。入力を求めるツールはハングまたは失敗します。答えは flag で渡すか、here document や echo ... | command で与えましょう。
関連ガイド
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…
Pipe - CI/CD Glossary DefinitionPipe: A pipe (`|`) connects the standard output of one command to the standard input of the next, letting sma…