Sponsored Content
Homework and Emergencies Homework & Coursework Questions Unix Spell Checker Assignment Post 302468468 by bravens52 on Wednesday 3rd of November 2010 05:47:59 PM
Old 11-03-2010
Unix Spell Checker Assignment

hello, im a new member to the forum and im doing a assignment for unix command and we have to make a spell checker and im a little confused about the directions .. ill post them below and continue..

Northern Illinois University
CSCI 330-Unix Command

Write a shell script that implements a simple spell checker. The general format for invocation is:
niuspell file
where "niuspell" is the name of the executable file that contains your shell script, and "file" refers to the file to be checked word-by-word for spelling. Your are encouraged to take advantage of the "ispell -l" command. It produces a list of misspelled words from standard input.
Specification:

When "niuspell" is invoked from the command line it reads "file" and checks it for spelling of the words it contains. For each word that is found to be incorrect, the invoker is asked for either:
  • to insist on the spelling of the word.
  • to provide a replacement spelling
If the invoker insists on the spelling of the word, then niuspell will remember it. niuspell remembers words in the file ".niuspelled" in the invoker's home directory. Any further invocation of niuspell by the same invoker will consider the word to be correct. Otherwise, the invoker is prompted for a replacement spelling. As output, niuspell produces a 2-column-ed list of words, the left column lists incorrectly spelled words, the right column lists their replacement as given by the invoker. The list is produced after the invoker has answered to all incorrectly spelled words.
Here is an example of an invocation of the niuspell script with a testfile:



ok so i made 2 separate files one called niuspell and one called testfile. My test file I have is a random paragraph that has a few misspelled words. My niuspell file i am confused on how i set it up. I started with my #! /bin/bash and im stuck. Could anyone give me a hint on how i move forward.

---------- Post updated 11-03-10 at 04:47 PM ---------- Previous update was 11-02-10 at 07:51 PM ----------

can anyone please help

The output my teacher gave us:

% ls
testfile niuspell
% cat testfile
I was going about my business quite nicely
when I was acosted by the mail man
whio insisted that my name is Raimund Ege
but I did not believe him
% ./niuspell testfile

'acosted' is mispelled. Press "Enter" to keep
this spelling, or type a correction here: accosted

'whio' is mispelled. Press "Enter" to keep
this spelling, or type a correction here: who

'Raimund' is mispelled. Press "Enter" to keep
this spelling, or type a correction here:

'Ege' is mispelled. Press "Enter" to keep
this spelling, or type a correction here:

MISPELLED: CORRECTIONS:

acosted accosted
whio who

% ./niuspell testfile

'acosted' is mispelled. Press "Enter" to keep
this spelling, or type a correction here: accosted

'whio' is mispelled. Press "Enter" to keep
this spelling, or type a correction here: who

MISPELLED: CORRECTIONS:

acosted accosted
whio who

% cat ~/.niuspelled
Raimund
Ege
% cat testfile
I was going about my business quite nicely
when I was acosted by the mail man
whio insisted that my name is Raimund Ege
but I did not believe him
 

10 More Discussions You Might Find Interesting

1. 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

2. 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

3. Shell Programming and Scripting

Shell Sript - Spell Checker Assign

Hi Folks. I am currently working on a script that has to spell check a file and print the output to the screen in 2 columns like this. INCORRECT CORRECTION whio who weahter weather The file will allow the user to override the ispell command and save any... (9 Replies)
Discussion started by: ccfc1986
9 Replies

4. UNIX for Dummies Questions & Answers

Unix Assignment, need help!

I have been working on this for the past hour and I can not figure it out :( What command would you give to produce a listing of the names of all the text files in ~/UnixCourse or its subdirectories (possibly nested several layers deep) followed immediately by the first line of text within that... (10 Replies)
Discussion started by: gordonheimer
10 Replies

5. Shell Programming and Scripting

Need your help for the spell checker in unix or python

Hi, Want to know is there any command to correct the spelling using unix or python? Unix command "spell" will give only the list of the incorrect words . But i want the output along with the corrected word . Thanks in advance (1 Reply)
Discussion started by: vini
1 Replies

6. Homework & Coursework Questions

UNIX- Database creating/viewing/updating assignment

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: I have posted the assignment below, I am new to unix programming and am having a very hard time knowing where... (5 Replies)
Discussion started by: student1989
5 Replies

7. 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

8. Shell Programming and Scripting

Help with Bash Shell Script Spell Checker program.

I have a majority of this problem done but seem to be struggling on the last couple of steps. Here is the whole problem to help you guys get a better understanding. Write a shell script that implements a simple spell checker. The filename you will use for your script will be your Z-id followed... (1 Reply)
Discussion started by: DsmRacer2k14
1 Replies

9. 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

10. UNIX for Dummies Questions & Answers

UNIX assignment or value returns

Hi Folks, In UNIX, I am quite confused on how to use or when to use ${} $() $ . For Example , if i use variable called "i" then when do i use, ${i} $(i) $i or sometime with arithmetic operations $(i+1) like this or ${i}+1 quite confused... Please help... ... (1 Reply)
Discussion started by: Nandy
1 Replies
spell(1)						      General Commands Manual							  spell(1)

NAME
spell, hashmake, spellin, hashcheck - find spelling errors SYNOPSIS
local_file] [files] n spelling_list DESCRIPTION
The command collects words from the named files and looks them up in a spelling list. Words that neither occur among nor are derivable (by applying certain inflections, prefixes, and/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. The command ignores most and eqn constructions. Options The command recognizes the following options: All words not literally in the spelling list are printed, and plausible derivations from the words in the spelling list are indicated. British spelling is checked. Besides preferring etc., this option insists upon in certain words, such as in Every plausible stem is printed with for each word. By default, follows chains of included files much like (see deroff(1)) which recognizes the intrinsics and the names of such included files begin with If the option is used, follows the chains of included files. With the option, ignores all chains of included files. If the option is used, words found in local_file are removed from output. local_file is the name of a user-provided file containing a sorted list of words, one per line. With this option, the user can specify a set of words that are correct spellings (in addition to spell's own spelling list) for each job. The spelling list is based on many sources, and while more haphazard than an ordinary dictionary, is also more effective with respect to proper names and popular technical words. Coverage of the specialized vocabularies of biology, medicine, and chemistry is light. Pertinent auxiliary files can be specified by name arguments, indicated below with their default settings (see FILES and VARIABLES). Copies of all output are accumulated in the history file. The stop list filters out misspellings (such as that would otherwise pass. Three routines help maintain and check the hash lists used by Reads a list of words from the standard input and writes the corresponding nine-digit hash code on the standard output. This program only accepts words that are up to 30 characters long. When words exceeding 30 characters are encountered, a diagnostic message is displayed on stan- dard error. Reads n hash codes from the standard input and writes a compressed spelling list on the standard output. Information about the hash coding is printed on standard error. Reads a compressed spelling_list and recreates the nine-digit hash codes for all the words in it; it writes these codes on the standard output. EXTERNAL INFLUENCES
Environment Variables Your hashed spelling list (default is Spelling history (default is Your hashed stop list (default is Directory for temporary files; overrides the default EXAMPLES
To check spelling of a single word: If word is spelled correctly, a prompt is returned. If it is spelled incorrectly, word is printed before the prompt is returned. To check spelling of multiple words, they can also be typed as a group on the same command line: To create a personal spelling list that incorporates the words already present in the default American spelling list file To modify the default British spelling list file replace all occurrences of with in the above example. To add words to the default spelling list, change login to change the current working directory to and execute the commands listed in the above example. WARNINGS
The spelling list's coverage is uneven. When undertaking the use of as a new tool, it may be advisable to monitor the output for several months to gather local additions. Typically, these are kept in a separate local file that is added to the hashed spelling_list via as shown above. The British spelling feature was developed by an American. Start-up versions of files and are available in directory If these files or a suitable equivalent are not present in directory complains: The command is likely to be withdrawn from X/Open standards. Applications using this command might not be portable to other vendors' sys- tems. FILES
Hashed spelling lists, American and British. Hashed stop list. History file. Executable program file. SEE ALSO
deroff(1), sed(1), sort(1), tbl(1), tee(1). STANDARDS CONFORMANCE
spell(1)
All times are GMT -4. The time now is 01:28 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy