Which of the following will be used to print lines containing ‘manager’ in emp.lst?

🎲 Try a Random Question  |  Total Questions in Quiz: 36  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Unix Basics Practice Test: Awk Command Operations — practice the complete quiz, review flashcards, or try a random question.

AWK is a pattern-action language that is designed for processing text files. It is often used to extract specific data from files, format data, and perform calculations on data. AWK is a very efficient language for processing large text files, and it is often used in shell scripts and other Unix utilities. Here are some of the common operations that can be performed using AWK: Scanning files line by line: AWK can read a file line by line and process each line individually. Splitting each input line into fields: AWK can split each input line into fields based on a delimiter, such as a... Show more

Which of the following will be used to print lines containing ‘manager’ in emp.lst?