Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

FILTERS AND PIPES HEAD It is used to display the top ten lines of file. Syntax:

ID: 3908558 • Letter: F

Question

FILTERS AND PIPES HEAD It is used to display the top ten lines of file. Syntax: TAILThis command is used to display the last ten lines of file. Syntax: PAGE: This command shows the page by page a screen full of information is displayed after which the page command displays a prompt and passes for the user to strike the enter key to continue scrolling Syntax: MORE: It also displays the file page by page To continue scrolling with more command, press the space bar key Syntax PIPE: It is a mechanism by which the output of one command can be channelled into the input of another command. Syntax:

Explanation / Answer

1) head -10 filename
2) tail -10 filename
3) page filename
4) more filename
5) cat filename | tee filename

____________Thank You