0% found this document useful (0 votes)
39 views1 page

Text Fu

stdin takes terminal input, stdout outputs command results, and stderr outputs errors; grep searches files for patterns, awk executes programs to manipulate text, and sed performs basic text transformations on streams.

Uploaded by

Sidi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
39 views1 page

Text Fu

stdin takes terminal input, stdout outputs command results, and stderr outputs errors; grep searches files for patterns, awk executes programs to manipulate text, and sed performs basic text transformations on streams.

Uploaded by

Sidi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Questions:

- stdin stands for standard input, and is used for taking text as an input.

- stdout stands for standard output, and is used to text output of any command you
type in the terminal, and then that output is stored in the stdout stream.

- stderr stands for standard error.

Grep : The grep utility shall search the input files, selecting lines
matching one or more
patterns; the types of patterns are controlled by the options specified

Awk: The awk utility shall execute programs written in the awk programming
language, which is
specialized for textual data manipulation.

Sed : Sed is a stream editor that is used to perform basic text transformations on
an input stream (a file or input from a pipeline).

Resources:

www.google.com
https://explainshell.com

You might also like