Introduction

Get an introduction to streams of text and how they can be useful in the CLI environment.

We'll cover the following...

Overview of standard streams

Long ago, if we wanted an output from a program, we had to write specific instructions into our code. If we wanted the program to take input from a keyboard, we had to write that code as well. This tightly coupled the program to the hardware on which it ran, making things pretty specialized and not ...