|
.Stream of characters ingested by a program, often abbreviated as
stdin
. A common way to send data to a program is to pipe
them from the standard output stream of another program. In the
below we use the echo
command to send the string foo bar baz
to
the standard input stream of the wc
command.
$ echo "foo bar baz" | wc
1 3 12
stderr
.stdout
.Methodology used in software development that makes use of rapid iterations of development cycles. The development cycle includes three steps:
- Write a test
- Write minimal code to make the test pass
- Refactor the code if necessary