Data streams (Bash): verschil tussen versies

Uit De Vliegende Brigade
Naar navigatie springen Naar zoeken springen
Regel 1: Regel 1:
A ''stream'' or ''datastream'' is something that can transfer data. Whenever running a command in Bash, the three default data streams, ''stderr'', ''stdin'' and ''stnout'' are activated. They all three carry data. Amongst other things, streams are relevant for ''piping/redirection''.
+
A ''stream'' or ''datastream'' is something that can transfer data. Whenever running a command in Bash, the three default data streams, ''stderr'', ''stdin'' and ''stnout'' are activated. They all three carry data. Amongst other things, streams are relevant for ''piping'' and ''redirection''.
 +
 
 +
 
 +
== See also ==
 +
 
 +
* [[Mapfile (Bash)]]
 +
* [[Pipelining & redirection (Bash)]]

Versie van 24 okt 2022 13:48

A stream or datastream is something that can transfer data. Whenever running a command in Bash, the three default data streams, stderr, stdin and stnout are activated. They all three carry data. Amongst other things, streams are relevant for piping and redirection.


See also