Standard Streams in Linux
Jun 10, 2022 · 2 min read · Streams in computing mean that they are just used to transfer data. Linux by default has 3 Standard Streams. below are their names and the codes assigned to them STDIN / Standard Input -> 0 STDOUT/ Standard Output -> 1 STDERR / Standard Error -> 2 ...
AApoorv commented