grep error


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers grep error
# 1  
Old 11-07-2006
grep error

Can anyone tell me what this error means?:

Usage: grep -hblcnsviw pattern file . . .

Thanks in advance!
# 2  
Old 11-07-2006
Simple Dave...
It's showing how to use grep command.

Usage: grep -hblcnsviw pattern file . . .
-hblcnsviw - these are different switches tht can be used with the grep command. A switch is something that changes the behaviour of a command. U can refer to man pages of grep for the details about each switch.

pattern - Pattern is what you wanted to search

file - The file(s) you wanted to search the above pattern

A small advice... refer to man pages before posting... they've a lot of info.
All the best
justsam
# 3  
Old 11-07-2006
Thank You!
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Inconsistent `ps -eaf -o args | grep -i sfs_pcard_load_file.ksh | grep -v grep | wc -l`

i have this line of code that looks for the same file if it is currently running and returns the count. `ps -eaf -o args | grep -i sfs_pcard_load_file.ksh | grep -v grep | wc -l` basically it is assigned to a variable ISRUNNING=`ps -eaf -o args | grep -i sfs_pcard_load_file.ksh |... (6 Replies)
Discussion started by: wtolentino
6 Replies

2. Shell Programming and Scripting

Grep command error

I am using a command but getting an error despite of modifying it many times. Pattern=`grep story file|cut -c 19-24` Where as 'story' is the pattern to be matched and i want to cut the value of characters ranging from 19 to 24 when this pattern is found in a variable. file consists of below... (11 Replies)
Discussion started by: pratima.kumari
11 Replies

3. Shell Programming and Scripting

Grep 'error' between two timestamps

Hi, Need to grep for a error in a log file but between two timestamps / patterns example: in the below log file if the given timestamps are 14:00 to 15:00 and m greping for error only error3 should come in the output. pls note that apart from timestamps printed, the log file has no... (2 Replies)
Discussion started by: amicableperson
2 Replies

4. Shell Programming and Scripting

grep error

Terminated ./dft/PCRs/811310/badlogic-dontMap-dedicatedCompEnable.g at Mon Feb 14 10:09:08 IST 2011 SUCCESSFUL run of /home/rcap/logs/latest/bin/linux/rc-o -e { if \{\\} \{ set_attr ovf_verification_directory /tmp/_dft_PCRs_811310_badlogic-dontMap-dedicatedCompEnable.dir.pid31578/fv / \} ... (2 Replies)
Discussion started by: harjinder
2 Replies

5. Shell Programming and Scripting

error in grep

Hello Team, if ; then is there an syntax error above line? i got error like can i know how to resolve this error? Regards (2 Replies)
Discussion started by: rocking77
2 Replies

6. Shell Programming and Scripting

grep only last occurred error in error.log,

hi folk i need your help to find one logic.... i have error log same as any other error logs which get populated by no of events and errors... but i need to grep the last occured errors.. which cant be duplicate. here is my script. ======================== #!/usr/bin/ksh grep -i... (3 Replies)
Discussion started by: tapia
3 Replies

7. Shell Programming and Scripting

grep can't open error

Hi, Thanks for all your help. This forum is excellent. I just learnt PERL over the last few weeks by coding and asking questions.... I have one more. When I run my script I get the following error msg. The grep statement I have is `grep "Number of jobs processed:" output | sort -u |... (10 Replies)
Discussion started by: nurani
10 Replies

8. Shell Programming and Scripting

error in grep

hi!! I am getting an error while grepping. The error is like "grep: RE error 41: No remembered search string." Can u please help with it? Thanks in advance.........:) (3 Replies)
Discussion started by: tushar_tus
3 Replies

9. Shell Programming and Scripting

error in grep

Hi gurus I am running a grep statement like this (ls -ltr eCustomerCME* | grep ^- | tail -1 | awk ' { print $6,$7,$8 } ') its returning an error as follows "ksh: /bin/ls: arg list too long" Does anybody know why this error occurs. this seems to work fine in other boxes except this... (6 Replies)
Discussion started by: ragha81
6 Replies

10. UNIX for Dummies Questions & Answers

grep error message

hi, I get this error message after I pipe a lot of output into grep. Does anyone know what his means? grep: writing output: Invalid argument thanks, gammaman (3 Replies)
Discussion started by: gammaman
3 Replies
Login or Register to Ask a Question