In lab 3 we learned about many more different commands that have to do with redirection, pipelines, patterns and expansions. The name of the commands are listed below along with a screenshot of how it works and a description about what it does.
Commands:
A. > : redirects output to a file.
B. < : Redirects input to a file.
C. | : redirects the output of one command and pipe it as input to another.
D. Grep: Allows user to find special patterns within files and displays the lines to the user.
E. Head : Prints the first ten lines of a file.
F. Tail: Prints last ten lines of a file.
G. Echo: Used to display a line of text.