3. Piping and RedirectionΒΆ
I/O redirection and concepts covered in the video:
Standard output (stdout), standard input (stdin), standard error (stderr)
>,>>: redirect stdout and replace/append to file2>,2>>: redirect stderr and replace/append to file&>,&>>: redirect both stdout and stderr and replace/append to file>:stdin redirect from file|: pipe stdout from one program to another
Piping and redirection. Runtime ~ 18min