How can i delete a keyword containing XYZ in unix


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How can i delete a keyword containing XYZ in unix
# 1  
Old 09-11-2009
How can i delete a keyword containing XYZ in unix

Hi all,

I am trying to remove the words which has XYZ as a prt of that.

My input file is something like this :

Code:
PHNDAZLF-UPS-XYZ' aaaaaaa bbbbb
ADFRTEJKS-XYZ cccccccc ddddddd rrrrrr
SGETHEHDJ-ABC-RXY' hhhhh ttttt' kkkk
FHJSKSJDKD-XXX-YYY

Output expected is :

Code:
aaaaaaa bbbbb
cccccccc ddddddd rrrrrr
SGETHEHDJ-ABC-RXY' hhhhh ttttt' kkkk
FHJSKSJDKD-XXX-YYY


Last edited by rdhanek; 09-11-2009 at 04:31 AM..
# 2  
Old 09-11-2009
Have you tried grep? Have a read of the man page.

Regards
# 3  
Old 09-11-2009
Hi,

You can use the below code:

Code:
grep xyz filename > temp_filename
if [ $? -eq 0 ] ; then
echo "Pattern exist in filename"
sed "/$value/d" filename > temp_filename
mv temp_filename filename
echo "Pattern deleted"
else
echo "Pattern does not exist in filename"
fi

Cheers,
Shazin
# 4  
Old 09-11-2009
Or Simply

Simply do this:
grep -v XYZ > file_without_XYZ
# 5  
Old 09-11-2009
I apologize for the confusion. But i want to delete the words having XYZ as a part of them and not the total lines.

I have also modified the example above now.
Not sure if this is still possible with grep??
# 6  
Old 09-11-2009
Its simple using sed

Code:
sed 's/xyz//' FILENAME

# 7  
Old 09-11-2009
something like:

Code:
sed -e "s/[a-zA-Z-][a-zA-Z-]*XYZ[' ]*//g" -e "s/XYZ[a-zA-Z-][a-zA-Z-]*//g" filename

Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. What is on Your Mind?

Search Results for the UNIX keyword - Google, Bing, DuckDuckGo

Some search results for the keyword "unix" searches: DuckDuckGo #1 https://www.unix.com/members/1-albums215-picture1254.png Bing #2 https://www.unix.com/members/1-albums215-picture1253.png Google #15 (page 2) https://www.unix.com/members/1-albums215-picture1252.png (1 Reply)
Discussion started by: Neo
1 Replies

2. Shell Programming and Scripting

Search for a Keyword in file and replace another keyword or add at the end of line

Hi I want to implement something like this: if( keyword1 exists) then check if(keyword2 exists in the same line) then replace keyword 2 with New_Keyword else Add New_Keyword at the end of line end if eg: Check for Keyword JUNGLE and add/replace... (7 Replies)
Discussion started by: dashing201
7 Replies

3. Shell Programming and Scripting

Using sed to delete a line having a particular keyword

Hi Geeks :b:, I need to delete a line from file that contains a particular keyword. I had read in some forum of unix.com that below code could be used sed "/$titlesearch/d" movielist >tmp mv tmp movielist But my file contains lines which contain slashes (/) FOr eg: /etc/movie/title/... (5 Replies)
Discussion started by: ajincoep
5 Replies

4. UNIX for Dummies Questions & Answers

Replace 'abc' with 'xyz'

Hi everyone I am new to unix . i got struck up with small issue. i have text file something like this abc 'xyz' '5' pqr 'lmn' '6' i want to replace abc 'xyz' '5' with abc 'tyr' '9' but i know the key 'xyz' based on the key 'xyz' i want to replace please help me . its... (3 Replies)
Discussion started by: Vijayaragavan
3 Replies

5. Shell Programming and Scripting

search for keyword in subsequent lines and delete the second line

I have my data something like this I need to search for the keyword yyyy in the susequent lines and if it is present, delete the second line with keyword. In other words, if a keywords is found in two subsequent lines delete the second line. input data: aaaa bbbbb cccc dddd xxxx... (4 Replies)
Discussion started by: rdhanek
4 Replies

6. Shell Programming and Scripting

Delete the lines before the first instance of the keyword

I have my data something like this. I want to delete all the lines before the frist instance of the key word 'ravi kumar' aaa bbbbbb cccccc ddddd eeeee 1234 ravi kumar aaaaaa vvvvvvv 5678 ravi kumar rrrrrrr mmmmmmm I want the output as follows. 1234 ravi kumar aaaaaa... (8 Replies)
Discussion started by: rdhanek
8 Replies

7. Shell Programming and Scripting

Delete the lines after the last instance of the keyword

I have my input sometyhing like this aaa bbbbbb cccccc ddddd eeeee 1234 ravi kumar aaaaaa vvvvvvv 5678 ravi kumar rrrrrrr mmmmmmm I want the output as follows. aaa bbbbbb cccccc ddddd eeeee 1234 ravi kumar aaaaaa vvvvvvv 5678 ravi kumar (2 Replies)
Discussion started by: rdhanek
2 Replies

8. Shell Programming and Scripting

How can i delete a keyword starting with x in unix

I am trying to delete key word starting with x in a unix text file. example, I am trying to delete the words like xaa,xabxbb,xbd and so on.... my input file is some thing like this xaaa w 1234 5678 rwsd ravi xw123 xbc3 ohrd want to delete words xaaa,xw123 and xbc3 from the above... (10 Replies)
Discussion started by: rdhanek
10 Replies

9. Forum Support Area for Unregistered Users & Account Problems

Same problem as xyz

Hi, Could you delete my account so that i can register again. My user id is ranj@tcs. The problem is I get a mail asking to click on the link to reset the password. Once that is done, the page says - 'The reset password has been mailed to you'. I done get that mail at all. So, please delete... (1 Reply)
Discussion started by: whyaskedhere
1 Replies
Login or Register to Ask a Question