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 |
Explain about gui scripting?
What will happen to my current process when I execute a command using exec?
Why should we use shell scripts?
What is .sh file in mac?
What is batch file programming?
How do I run a powershell script?
What does $# stand for?
How can I send a mail with a compressed file as an attachment?
How will you connect to a database server from linux?
How to get the first line from a file using just the terminal?
What are the different types of shell scripting?
Hi, all Scripting professional. Q. I have written script1.sh and calling script2.sh in script1.sh file using bash shell as interpreter and my log in shell also bash shell.My code like Script1 #!/bin/bash echo "My script2 call" . script2.sh Here script2.sh file run successfully but when I have changed my interpreter bash to ksh like #!/bin/ksh Error are comming script2.sh command not found. Guid me how to call other script in our main script.