What does cat do?
Prints contents of a file to standard output
Cannot pause the output -> not practical for long files
What does more or less command do?
Print contents of file to standard input with paging capability
Navigation is same as using man pages (Space to scroll down, ‘b’ to scroll back, ‘q’ to quit)
What does head command ddo
Print first few lines of the file (first 10 by default)
What does tail command do?
Print last few lines of the file (last 10 by default)
What does grep command do?
Filters file contents or command outputs to print only the lines that contain specific pattern