Query regarding egrep command


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Query regarding egrep command
# 8  
Old 02-19-2010
Hi ,

Its a typo mistake.Please let me know if any alternate command is available.

Error message is : Syntax error.
# 9  
Old 02-19-2010
Please post the full script (in code tags) and the full and complete error message.
It is unlikely the the message "Syntax error" came from egrep.
On both machines please check which shell you are using:
echo "${SHELL}"
# 10  
Old 02-19-2010
Hi ,

output of echo "${SHELL}" is /usr/bin/ksh

Following is the error message i am getting:

egrep: syntax error
bash: 0: command not found
# 11  
Old 02-19-2010
check FEW things
1. alias <-- May be echo has alias
2. set <--- check if any function in env or check PATH

try which echo to find where the echo command is and run
/bin/echo $SHELL and see result

also can try \echo etc ..
# 12  
Old 02-19-2010
Hi.

That's the error one would expect if you tried to execute the result of the grep.

For example, if you had a space after count=
Code:

count= `echo "Sriram-201002.DAT" | egrep -f Mask_File.lst | wc -l`
bash: 0: command not found

Are you showing us the exact command you are running?
# 13  
Old 02-19-2010
Mystery how shell is "ksh" but error message came from "bash". Are the two accounts set up the same?
Please post the full script (in code tags).
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Egrep -v command not filtering correctly

Hello guys, I have an issue when trying to do an egrep -v on a file, let me show you. I want to filter the last column as to where it filters out the columns with asterisks and zeros ( * and 0 ) it is working properly up to a certain point where I have a value of '10000' which is also getting... (3 Replies)
Discussion started by: evergreen
3 Replies

2. UNIX for Beginners Questions & Answers

Egrep command is not working for me

my file is below REREGISTER is something to Failed to create the request Failed to create the request in not easy I know how REREGISTERcommand i run is egrep 'REREGISTER|Failed|to|create|the|request' test1 expected output REREGISTER is something to Failed to create the request i should... (2 Replies)
Discussion started by: mirwasim
2 Replies

3. Shell Programming and Scripting

help in egrep command in file

Hi Guys, I need hepl on egrep commnad I have one file and i need grep only specific lines.. EX: 2012-04-01 02:15:14 w 2012-04-01 02:15:14 w 2012-04-01 02:15:14 w 2012-10-26 02:15:14 w 2012-04-01 02:15:14 w 2012-10-26 02:15:14 w 2012-10-26 02:15:14 w 2012-10-26 03:18:56 M... (1 Reply)
Discussion started by: asavaliya
1 Replies

4. Shell Programming and Scripting

Help with egrep command

Hello folks, Here's how my current egrep command works: egrep "NY|DC|LA|VA|MD" state_data.txt I am planning to use a file to enter all allowable state values like say a new state_names.lookup with the following data: NY DC LA VA MD egrep "`cat state_names.lookup`"... (6 Replies)
Discussion started by: calredd
6 Replies

5. Shell Programming and Scripting

Help with egrep command

cat /tmp/inventory.csv|grep AARP|egrep -v "T11|12.4\(7\)" how do i exclude in addition to above 12.4\(3\) I have tried adding this in i.e -v "T11|12.4\(7\)|12.4\(3\)" but it did not work (3 Replies)
Discussion started by: slashbash
3 Replies

6. Shell Programming and Scripting

egrep command and order

Hi All, Here is my question. I have two files, file1.txt and file2.txt. I need the line number (index number) of file2.txt where the words in file1.txt appear. But they have to be in the same order as file1.txt. In example, file1.txt Z K A ... T file2.txt W A Q R (6 Replies)
Discussion started by: senayasma
6 Replies

7. Shell Programming and Scripting

Whitespace breaking my egrep command

Hi, I am writing a bash script which will dynamically generate an egrep command searching for a number of times within a file. The problem is that I am putting a space in a variable called timestr. When I echo the variable the space comes out normally: '(2011-10-05 12:|2011-10-05 13)' ... (6 Replies)
Discussion started by: remixed
6 Replies

8. UNIX Desktop Questions & Answers

egrep query....request for help

Hi Please can someone help me with a query. Will the following query bring back 'Jolly Brewers'. My understanding is that it will bring back either 'Jolly' or 'Brewers' but not 'Jolly Brewers'....because of the pipe egrep '(Jolly)|(Brewers)' Public_Houses Please can someone confirm? ... (6 Replies)
Discussion started by: tmn0004676
6 Replies

9. Shell Programming and Scripting

Help with egrep command

Hi All, I am using egrep command to search one pattern. Following is the command i am using egrep -i "ACL*" filename but its also giving me the records which do not contain ACL. any help would be appreciated. Regards, Sam (3 Replies)
Discussion started by: sam25
3 Replies

10. Shell Programming and Scripting

egrep command

I'd like to grep a pattern of a version number as *_number.number.number number should be digit my grep is |egrep '^*++\.+' It works for V_3.2.1 or V _5.3.2 but not with V_43.6.543 !!!!! How can I specify any repetition of digit in the ? thanks, (4 Replies)
Discussion started by: annelisa
4 Replies
Login or Register to Ask a Question