Sponsored Content
Top Forums Shell Programming and Scripting Find out the words, just for fun Post 302374511 by rdcwayx on Tuesday 24th of November 2009 05:54:39 PM
Old 11-24-2009
Done.

Code:
$ cat spell_game
#!/usr/bin/bash

WORD="/usr/dict/words"

for i in `grep "^$1." $WORD`
do
   KEY="${i#$1}"
   NEW="${i#$1}$2"
   grep "^$NEW$" $WORD > /dev/null && echo "$i, $NEW"
done
$ ./spell_game play table
playtime, timetable
$ ./spell_game hair ball
hairpin, pinball
$ ./spell_game high lay
highway, waylay

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

find words with grep....

I have a .txt file which contains several lines of text. I need to write a script program using grep or any other unix tool so as to detect part of the text (words) between / / that begin with the symbol ~. For example if somewhere in the text appears a webpage address like... (8 Replies)
Discussion started by: chrisxgr
8 Replies

2. Shell Programming and Scripting

find files with 2 or more words

I'm trying to find files that contain two or more specific words (e.g. all files with both "John" and "Mary" in them but not necessarily on the same line) but I don't know how to go about it. Maybe something like grep to find files with the first word, then grep the resulting set of files to find... (1 Reply)
Discussion started by: Anita
1 Replies

3. Shell Programming and Scripting

FInd the String between Two words

Hi I would like know how can write a script for find a string between two words. My input like this: a1 IN a1a1a1a1a1a1 OUT b1 IN b1b1b1b1b1b1 OUT c1 IN c1c1c1c1c1c1 OUT . . . now my out put like: a1a1a1a1a1a1 b1b1b1b1b1b1 c1c1c1c1c1c1 please help on this. (6 Replies)
Discussion started by: koti_rama
6 Replies

4. UNIX for Dummies Questions & Answers

how to find common words and take them out from two files

Hi, everyone, Let's say, we have xxx.txt A 1 2 3 4 5 C 1 2 3 4 5 E 1 2 3 4 5 yyy.txt A 1 2 3 4 5 B 1 2 3 4 5 C 1 2 3 4 5 D 1 2 3 4 5 E 1 2 3 4 5 First I match the first column I find intersection (A,C, E), then I want to take those lines with ACE out from yyy.txt, like A 1... (11 Replies)
Discussion started by: kaixinsjtu
11 Replies

5. Shell Programming and Scripting

how to find number of words

please help me for this "divide the file into multiple files containing no more than 50 lines each and find the number of words of length less than 5 characters" (3 Replies)
Discussion started by: annapurna konga
3 Replies

6. Emergency UNIX and Linux Support

Find two words and join together in one file

Hi, I have a huge text file like below , I need to select only lines having line Fatal joined with id. like below i want the line to be Fatal Error for input record 25 is id = 543523. Waiting for your help. -----Original Message----- Acceptance with warnings for input record 24. 001 tag... (13 Replies)
Discussion started by: umapearl
13 Replies

7. Shell Programming and Scripting

Shell script to find out words, replace them and count words

hello, i 'd like your help about a bash script which: 1. finds inside the html file (it is attached with my post) the code number of the Latest Stable Kernel, 2.finds the link which leads to the download location of the Latest Stable Kernel version, (the right link should lead to the file... (3 Replies)
Discussion started by: alex83
3 Replies

8. Shell Programming and Scripting

Find Multiple words in a file

Hi all, I have trouble in finding the multiple word in .txt file. Please help me with any solution. I have 10,000 .txt files and in each file i have to search specific word but more than one, like (data, machine learning, clustering) and all these keywords should be case insensitive because... (3 Replies)
Discussion started by: XXLMMN
3 Replies

9. Shell Programming and Scripting

Find common words

Hi, I have 10 files which needs to be print common words from those all files. Is there any command to find out. (2 Replies)
Discussion started by: munna_dude
2 Replies

10. UNIX for Advanced & Expert Users

Find duplicate words using sed

I have following statement and I want to find duplicate word using sed command. How is it possible? "detect string and remove the duplicate string" There could be many statements in a file and each line may have duplicate word. Thanks! (1 Reply)
Discussion started by: jnrohit2k
1 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:56 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy