spell check


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers spell check
# 1  
Old 11-10-2008
spell check

# cat wrong.txt
thiis is going to be wrong words containing file

# aspell list < wrong.txt
thiis

I want to check only one word and see the first suggestions ("this" in this case). something like...
aspell list --one-word thiis --suggest
# 2  
Old 11-10-2008
aspell -a or aspell pipe will check stdin so
Code:
echo thiis |aspell -a

and if you want the suggestions for each misspelled word in a file
Code:
for w in $(aspell list <spell.check.this); do echo $w |aspell pipe; done

# 3  
Old 11-10-2008
Hi,
The first example below is what you have suggested. Since I want only the first value, I have added some code as shown in example 2 below. Is there a better way to do what I am trying? Is there any way to remove the extra enter mark?

# echo thiis |aspell -a
@(#) International Ispell Version 3.1.20 (but really Aspell 0.60.3)
& thiis 21 0: this, Thais, thous, thus, Thia's, Thurs, theirs, thighs, Th's, thins, Thieu's, thaws, thees, thews, Theo's, Thor's, Thur's, thigh's, Thar's, Thea's, thew's

# echo thiis |aspell -a | awk -F: '{print $2}' | awk '{print $1}' | sed s/,//g

this
# 4  
Old 11-10-2008
Code:
echo thiis |aspell -a | grep "&" |awk -F: '{print $2}' | awk '{print $1}' | sed s/,//g

# 5  
Old 11-10-2008
Thanks a lot.
I hope there will be no problem if I use it in my web application where a lot of words will be corrected simultaneously (no issue with performance)
# 6  
Old 11-10-2008
hmm, there maybe performance issues as each time this is run there are 7 processes being created and destroyed. This could ramp up quite remarkably on a web server.

If 1 user checks a 100 word document that will involve 700 separate processes. If at the same time the web server is processing say 10 requests to check 10 documents of 100 words then that is 7000 processes, so you can see how that could be a problem.

One solution if performance does become an issue is to recommend that your users use firefox or safari as their browser as they both have integrated spell checking for text boxes.

In the meantime it may be worthwhile trying to find a more efficient solution depending on your specific situation and traffic statistics.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Debian

Getting a better spell checker

Guys I am new to Linux in general and want to know what is the use of the following files-: /usr/share/dict/words /usr/share/dict/words.pre-dictionaries-common Are they used by the spell checker to find potential typos ? If so are there any better larger word lists out there ? I am sure... (2 Replies)
Discussion started by: sreyan32
2 Replies

2. Shell Programming and Scripting

Spell Check

I have this assignment and I am not sure how to start it, I am new any help will be appreciated.... (BASH) Let us say a test is conducted to assess the typing speed for applicants. We need to count # of correctly spelled words and penalize for incorrectly spelled words. score = (# of... (1 Reply)
Discussion started by: shilling
1 Replies

3. Homework & Coursework Questions

Help With spell checking

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: What the program is suppose to do is input a word and when the user press enter the result should read the word... (6 Replies)
Discussion started by: mgyeah
6 Replies

4. Homework & Coursework Questions

spell checker script

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: When "niuspell" is invoked from the command line it reads "file" and checks it for spelling of the words it... (1 Reply)
Discussion started by: Jeffthrow5
1 Replies

5. Shell Programming and Scripting

Spell Check in MS Word using PERL OLE

Hi, I am trying automate couting number of spell and typo errors in MS Word document using perl script. In perl script, i am using Win32::OLE module of perl to read MS word document. Can anybody tell me are there any modules available in perl which can be imported into my script to... (0 Replies)
Discussion started by: 123an
0 Replies

6. Shell Programming and Scripting

spell check program

hi, i need to write a spell check program in bash to find all possible spelling errors in a file or a number of files taken as input using usr/dict/words. whenever the program encounters a spelling error, it must state the line number at which the incorrect spelling has occured and... (1 Reply)
Discussion started by: kratos.
1 Replies

7. UNIX for Advanced & Expert Users

spell

Hi, I found the following line in a shell script. $spell -a < $filename | \ grep -v '@(#)' | sed "s/\'//g" | \ awk '{ if (length($0) > 15 && length($2) > 2) print $2 }' | \ grep -vif $okaywords | \ grep ']' | grep -v ']' | sort -u | \ sed 's/^/ /' > $tempout can... (2 Replies)
Discussion started by: ravi raj kumar
2 Replies

8. Post Here to Contact Site Administrators and Moderators

Spell Check

Administrator/Moderators, I would like to put forth a request rather a suggestion in other words. How about the inclusion of 'SPELL CHECK' tool along with existing submit reply and preview post tools? I believe that would be very much helpful in understanding questions clearly deprived of... (2 Replies)
Discussion started by: matrixmadhan
2 Replies

9. Shell Programming and Scripting

spell checker program

2.I need shell script to list all the 'words' in a given file (text) that are not listed in a specified dictionary. Let us call this utility 'spell-check'. 'spell-check' will be called as follows. $ spell-check letter Lucent UNIX UNIX OS a $ dictionary words are listed in lower... (2 Replies)
Discussion started by: ksjanakan
2 Replies
Login or Register to Ask a Question