Sponsored Content
Top Forums UNIX for Dummies Questions & Answers sed [delete everything between two words] Post 302153527 by Orbix on Tuesday 25th of December 2007 05:13:18 AM
Old 12-25-2007
Computer sed [delete everything between two words]

Hi,

I have the following codes below that aims to delete every words between two pattern word. Say I have the files
Quote:
$ cat file.txt
hello
start
WISH_LIST="
candy
money
t-shirt
"
stop
cool
Christmas
To delete every word between WISH_LIST=" and " I used the below codes (but its not working):

Code:
#!/bin/sh
sed '
/WISH_LIST=\"/ {
N
/\n.*\"/ {
s/WISH_LIST=\".*\n.*\"/WISH_LIST=\"\n\"/
}
}' file.txt

and also I have tried this code:
Code:
#!/bin/sh
sed '
/WISH_LIST=\"/ {
N
/WISH_LIST=\".*\"/ {
s/WISH_LIST=\".*\"/WISH_LIST=\"\n\"/
P
D
}
}' file.txt

Any Idea why I can't have the below output from the codes above:

Quote:
$ cat file.txt
hello
start
WISH_LIST="
"
stop
cool
Christmas
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

sed option to delete two words within a file

Could someone please help me with the following. I'm trying to figure out how to delete two words within a specific file using sed. The two words are directory and named. I have tried the following: sed '//d' sedfile sed '//d' sedfile both of these options do not work..... ... (4 Replies)
Discussion started by: klannon
4 Replies

2. UNIX for Advanced & Expert Users

How to delete first 10 words from file

Hi, Could you please let me know, how to delete first 10 words from text files using vi? 10dw will delete it from current line, how to do it for all the lines from file? Thanks (6 Replies)
Discussion started by: sentak
6 Replies

3. Shell Programming and Scripting

sed/awk: Delete matching words leaving only the first instance

I have an input text that looks like this (comes already sorted): on Caturday 22 at 10:15, some event on Caturday 22 at 10:15, some other event on Caturday 22 at 21:30, even more events on Funday 23 at 11:00, yet another event I need to delete all the matching words between the lines, from... (2 Replies)
Discussion started by: GrinningArmor
2 Replies

4. UNIX for Dummies Questions & Answers

sed how to delete between two words within a file

I'm hoping someone could help me out please :) I have several .txt files with several hundred lines in each that look like this: 10241;</td><td>10241</td><td class="b">x2801;</td><td>2801</td><td>TEXT-1</td></tr> 10242;</td><td>10242</td><td... (4 Replies)
Discussion started by: martinsmith
4 Replies

5. Shell Programming and Scripting

Delete between two words

Hi, I wanted to delete data between two words. Input: I read gihoihsahkjlk write goal hard read hsakdjhkh write work read hlkhlkhlkh write Desired Output: I write goal hard write work write We have to replace the data that comes between 'read' and 'write' with... (3 Replies)
Discussion started by: mahish20
3 Replies

6. Shell Programming and Scripting

Using Sed to Delete Words in a File

This is a Nagios situation. So i have a list of servers in one file called Servers.txt And in another file called hostgroups.cfg, i want to remove each and every one of the servers in the Servers.txt file. The problem is, the script I wrote is having a problem removing the exact servers in... (5 Replies)
Discussion started by: SkySmart
5 Replies

7. Shell Programming and Scripting

SED - delete words between two possible words

Hi all, I want to make an script using sed that removes everything between 'begin' (including the line that has it) and 'end1' or 'end2', not removing this line. Let me paste an 2 examples: anything before any string begin few lines of content end1 anything after anything before any... (4 Replies)
Discussion started by: meuser
4 Replies

8. UNIX for Dummies Questions & Answers

Delete all words not containing letter /s/

I have a word file that looks like: pens binder spiral user I want to delete all the words without the letter /s/, so output looks like: pens spiral user I tried using sed: sed '//d' infile.txt > out.txt (5 Replies)
Discussion started by: pxalpine
5 Replies

9. Shell Programming and Scripting

Delete some words

hi, i have a fasta file like this: >contig00003 length=363 numreads=45 gene=isogroup00001 status=it_thresh GATTTTTTACCCTGGGAGTGAGGAGGACGAGGTTGAGGATGAAGAAAAGAGAAAGATGAAGAGGTTGAGGATGTT GTAGTCGGCGGTGGAATTAGGGGGAGCCGGCGAGCCCAAGTATTTTGCAGAGGTGTCTTCATCATCCAAACAACA... (3 Replies)
Discussion started by: the_simpsons
3 Replies

10. UNIX for Dummies Questions & Answers

Delete between two words

So;C951;1;2;0;100;true;SNetwork=ORM_RO_MO_R,MeCext=C5951,ManagedElement=1,vsDaFunction=1;473;12;EEE So;C951;2;2;0;100;true;SNetwork=ORM_RO_MO_R,MeCext=L5921,ManagedElement=1,vsDaFunction=4;481;12;EEE Output:- So;C951;1;2;0;100;true;1;473;12;EEE So;C951;2;2;0;100;true;4;481;12;EEE Output... (7 Replies)
Discussion started by: pareshkp
7 Replies
SPELL(1)						    BSD General Commands Manual 						  SPELL(1)

NAME
spell -- find spelling errors SYNOPSIS
spell [-biltvx] [-d list] [-h spellhist] [-m a | e | l | m | s] [-s stop] [+extra_list] [file ...] DESCRIPTION
spell collects words from the named documents and looks them up in a spelling list. Words that neither occur among nor are derivable (by applying certain inflections, prefixes or suffixes) from words in the spelling list are printed on the standard output. If no files are named, words are collected from the standard input. spell ignores most troff(1), tbl(1), eqn(1), and pic(1) constructions. Copies of all output may be accumulated in the history file, if one is specified. By default, spell (like deroff(1)) follows chains of included files (``.so'' and ``.nx'' commands)). The default spelling list is based on Webster's Second International dictionary and should be fairly complete. Words that appear in the ``stop list'' are immediately flagged as misspellings, regardless of whether or not they exist in one of the word lists. This helps filter out misspellings (e.g. thier=thy-y+ier) that would otherwise pass. Additionally, the british file is also used as a stop list unless the -b option is specified. Site administrators may add words to the local word list, /usr/local/share/dict/words or the local stop list, /usr/local/share/dict/stop. All word (and stop) lists must be sorted in lexicographical order with case folded. The simplest way to achieve this is to use ``sort -df''. If the word files are incorrectly sorted, spell will not be able to operate correctly. The options are as follows: -b Check British spelling. Besides preferring centre, colour, speciality, travelled, etc., this option insists upon -ise in words like standardise, Fowler and the OED to the contrary notwithstanding. In this mode, American variants of words are added to the stop list. -d word_list Use the specified word list instead of the default system word list. The word list must be sorted as specified above. -h spellhist Store misspelled words in the specified history file. The output of who -m is appended to the history file after the list of mis- spelled words. -i Instruct deroff(1) to ignore ``.so'' and ``.nx'' commands. -l Use delatex instead of deroff(1) if it is present on the system. -m Enable support for common troff(1) macro packages; this option is passed verbatim to deroff(1). Refer to the --m description in deroff(1) for details. -s stop_list Use the specified stop list instead of the default system stop list. The stop list must be sorted as specified above. -t Use detex instead of deroff(1) if it is present on the system. -v Print all words not literally in the spelling list in addition to plausible derivations from spelling list words. -x Print every plausible stem, prefixed with '='. +extra_list Use extra_list in addition to the default word list. The extra word list must be sorted as specified above. FILES
/usr/share/dict/words Default spelling list /usr/share/dict/american American spelling of certain words /usr/share/dict/british British spelling of certain words /usr/share/dict/stop Default stop list. /usr/local/share/dict/words Local spelling list (optional) /usr/local/share/dict/stop Local stop list (optional) /usr/libexec/spellprog Binary executed by the shell script /usr/bin/spell. SEE ALSO
deroff(1), look(1), sed(1), sort(1), tee(1), troff(1) HISTORY
The spell command appeared in Version 6 AT&T UNIX. Unlike historic versions, the NetBSD spell command does not use hashed word files. Instead, it uses lexicographically sorted files and the same technique as look(1). BUGS
The spelling list lacks many technical terms; new installations will probably wish to monitor the output for several months to gather local additions. British spelling was done by an American. In -x mode it would be nicer if the stems were grouped with the appropriate word. BSD
April 18, 1994 BSD
All times are GMT -4. The time now is 05:31 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy