What is the syntax of grep command and what is its use?
Answers were Sorted based on User's Feedback
Answer / bharath
grep command is used to search a file for keywords.
grep 'keyword' file
Is This Answer Correct ? | 9 Yes | 0 No |
Answer / amit
grep command is used to search the any word, any sentence
from given or input file.
syntex of grep command is
grep "word or sentence" filename
Is This Answer Correct ? | 7 Yes | 0 No |
Answer / ankita
grep is used to find the patterns inside files.
grep -options "pattern" file_name
grep -i "hello" test_file
this is search for "hello"(case doesn't matter as we have used -i) in test_file
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / shilpa
syntax= % grep pattern file-name-1 file-name-2
It is used to search files
Is This Answer Correct ? | 0 Yes | 1 No |
How to convert a hidden file to normal visible file?
what is the use of nice command?
Is ‘du’ a command? If so, what is its use?
what is the use of ls -l command & what is the information it gives about user ?
What are Unix processes, and how do you manage them?
how to sort the content of the file based on numeric values
what is the difference between "cron" command and "at" command?
What happens when we execute a unix command?
If JFS file system is 100% full how we can increase the file system ?
What difference between cmp and diff commands?
What is command statement?
What is the use of find command in unix?