What is the syntax of "grep" command?
Answers were Sorted based on User's Feedback
syntax of "grep" command
syntax: grep {word to lookup} {filename}
Ex: grep man test
| Is This Answer Correct ? | 29 Yes | 6 No |
Answer / satchi
Grep is a filter used for pattern matching in shell script.
It searches for the patern if file name is give, or else it
will look for the input data using pipe(|)
Syntax:
1. Grep <patern to search> <Filename>
2. cat <filename> | grep <Patern to search.>
we can use -i option to ignore case sensitiveness.There are
so many options available.you have to explore that.
| Is This Answer Correct ? | 18 Yes | 4 No |
Answer / vasanth
grep: Find lines in a file that match a regular expression
syntax: grep [options] pattern [files]
Useful Options : -v, -l, -L, -c, -n, -b, ,-i
-v Print only lines that donot match the regular expression
-l Print only names of files that contains matching
lines,not the line themseleves
for furthur information
pls ref. linux pocket guide by Daniel J. Barrett (page-71)
| Is This Answer Correct ? | 14 Yes | 4 No |
Answer / kaustubh
grep command is a utility which helps in searching pattern
from the given file.
example
grep "pattern" /home/username/somefile.txt
it ll search all lines in the file somefile.txt and will
print the line which contains pattern.
there are many options as
-v = invert
-i = ignorecase
-c = count
-l = filename
-r = recursive
| Is This Answer Correct ? | 7 Yes | 6 No |
write a shell script that counts a number of unique word contained in the file and print them in alphabetical order line by line?
Create a bash shell script that removes all files whose names end with a "~" from your home directory and subdirectories. Name this script "cleanup.sh"
How do I stop script errors?
Explain how you Automate your application using Shell scripting.
What is sed in shell script?
how to print the 2-d, 3-d arrays in unix shell script programs please answer thi questio to my mail venusaikumar@gmail.com
what are special characters and explain how does text varies by the usage of single quotes,double quotes and back quotes?
What are the Different types of shells?
What is a shell environment?
how to delete all the files with extension .dat rom a directory tree from root to third level in a single unix command?
What is c in shell script?
How do I debug a shell script?