grep and cut....


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting grep and cut....
# 1  
Old 11-03-2005
grep and cut....

hi,

i have a simple question:

in hpux 11i;

this cmd :
cat mailtest |grep sekar >test1

gives the output file with the name test1.

i want to remove the line which contains the "sekar" and put the result in the new file....

what is the command for that?..
# 2  
Old 11-03-2005
Quote:
Originally Posted by sekar sundaram

this cmd :
cat mailtest |grep sekar >test1
Could be better done as

Code:
grep 'sekar' mailtest > test1


Quote:
Originally Posted by sekar sundaram
i want to remove the line which contains the "sekar" and put the result in the new file....

what is the command for that?..
By result, you mean have the contents of mailtest without those lines containing 'sekar' ?

You can do
Code:
grep -v 'sekar' mailtest > test.txt

If your grep doesnt have the -v option, this should work

Code:
sed -e '/sekar/d' mailtest >test.txt

If you want lines containing 'sekar' only, test1 has that.

vino

Last edited by vino; 11-03-2005 at 10:21 AM..
# 3  
Old 11-03-2005
thanks vino,

that is working fine..

grep -v .....is available in hpux 11i
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Cut Lines using grep

Hi, I have a SQL script with "create table" and "alter table" statements and I want to cut all the alter table statements from original file (A) and move it to a different file (B). Can you please me the option. Thanks a lot for your time. (3 Replies)
Discussion started by: bhupinder08
3 Replies

2. Shell Programming and Scripting

Basic use of who, cut, grep and pipes??

Hi, I'm new to shell scripting and i'm trying to write code which contains exactly three pipe commands (e.g. A | B | C) to return a list of the users currently logged into the system. I've been told three useful commands i could use are who, grep and cut. I know 'who' return a list of the users... (4 Replies)
Discussion started by: cylus99
4 Replies

3. Shell Programming and Scripting

grep with cut option??

This is my command-line code in my script, passwd=`grep $passwd $userfile | cut -f2 -d: login_users > retrieve` the cut -f2 -d: login_users > retrieve searches and prints the whole column two. what I need is one of the items in the column two only.. what option can I add to my cut... (2 Replies)
Discussion started by: jenimesh19
2 Replies

4. Slackware

How should I cut this line using cut and grep?

not sure how to do it. wan't to delete it using cut and grep ince i would use it in the shell. but how must the command be? grep "64.233.181.103 wwwGoogle.com" /etc/hosts | cut -d the delimeter is just a space. can you help meplease. :D (1 Reply)
Discussion started by: garfish
1 Replies

5. Shell Programming and Scripting

GREP/CUT/AWK to Arrays

hi people, I have a text file containing data, seperated by TAB. I want to process this tab'ed data as variable. how can I assign this? Ex: Code: 11aaa 12000 13aaa 14aaa 15aaa 16aaa 17aaa 21aaa 22000 23aaa 24aaa 25aaa 26aaa 27aaa 31aaa 32000 33aaa 34aaa 35aaa 36aaa 37aaa... (1 Reply)
Discussion started by: gc_sw
1 Replies

6. Shell Programming and Scripting

Using grep and cut within awk

Hi My input file looks like as follows: say a.txt "aaaa cc","224 AW","ss cccccc","P06 09/10","dddddd" "aaaa cc","224 AW","ss cccccc","P06 09/10","dddddd" "aaaa cc","224 AW","ss cccccc","P06 09/10","dddddd" "aaaa cc","224 AW","ss cccccc","P06 09/10","dddddd" "aaaa cc","224 AW","ss... (5 Replies)
Discussion started by: bittoo
5 Replies

7. UNIX for Dummies Questions & Answers

grep and cut problem

Hello folks, I have to (e)grep out a certain pattern e.g. <TAG1> from a huge log file which does not have any space as such. The thing is that once I have 'grep'ed out the <TAG1> from the file I need to extract the content within the tags, i.e, <TAG1>Data_To_Be_Extracted</TAG1> The underlined... (9 Replies)
Discussion started by: Rajat
9 Replies

8. Shell Programming and Scripting

grep & cut the file

I need to grep and cut the some file in the folder and output to some file. the sample file looks like below -rw-r--r-- 1 gui gui 28050789 Jun 25 18:38 mymkzpiii.txt -rw-r--r-- 1 gui gui 127983856 Jun 25 18:39 phmnlpiii.txt i need the output like below ... (3 Replies)
Discussion started by: aboorkuma
3 Replies

9. Shell Programming and Scripting

tail, grep and cut

Hello all, I have some weird problem that kinda baffles me. Say I have the following test file: claudia:~/tmp$ cat testfile.txt This is a test line This is the second test line And yeah, this is the third test line Then say I want to tail the file, grep for the word "third" then... (7 Replies)
Discussion started by: sylaan
7 Replies

10. Shell Programming and Scripting

cut sed grep or other?

Hi Is there a way to cut the last two characters off a word or number given that this word or number can be of varying length? I have tried something like TEST=`echo $OLD | cut -c 1-5` where $OLD is a variable containing a number like 1234567 which gives a result of 12345. This is fine... (4 Replies)
Discussion started by: rleebife
4 Replies
Login or Register to Ask a Question