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:
The scirpt I have is meant to check the strings read in from a file with the aspell subroutine in the UNIX bash shell. I don't seem to have a problem reading it and checking it. Only printing it correctly.
I'm having some trouble with my script/understanding it fully. I want to print out all of the items stored in uncorrect in the mispelled columns I have set under the mispelled table. Then print out the values corrected with user input. Am I not storing them correctly? Or am I not calling them correctly in my last echo statement? I'm really just lost for syntax. Forgive me I'm new at this and am just having trouble understanding it. Thanks so much for your help in advance.
2. Relevant commands, code, scripts, algorithms:
It was recommended in my assignment that we use the ASPELL LIST command, but I didn't know how to properly implement it.
3. The attempts at a solution (include all code and scripts):
4.
NIU, Dekalb, Il , Ege, CSCI330
Note: Without school/professor/course information, you will be banned if you post here! You must complete the entire template (not just parts of it).
Last edited by Don Cragun; 10-20-2013 at 04:06 AM..
Reason: Add CODE tags.
Thanks so much, that makes much more sense. However, I'm still getting the same problems. I've tried multiple different variants of my loop. It seems to me that I may be storing it wrong? Maybe I am still trying to loop through the arrays wrong but here's what else I tried and has only accessed the first string of misspelled words. (Along with this one.)
This did not access the strings I believe I stored in the corresponding arrays, so maybe my problem is storage. Thanks again.
Not sure if your respell array is correctly and completely populated, but you should at least get a list of uncorrect's elements with
And, bash array by default start at element 0. That's why I started with i=0. Consider that for your count variable.
Hi: I've tried to get aspell to work to check a latex document I have. I get this error message:
Error: No word lists can be found for the language "en_CA".
Can anyone offer any suggestions? I'm trying to get a good spell-checker set up for my latex documents. Excalibur does not work all... (1 Reply)
Hi,
I have 2 identical servers both running aspell but for some reason I can't redirect the output to a file on one of them. This is what I'm trying to do:
echo feck | aspell -l > errors.txt
On one machine this works fine but the other it doesn't (the file is created but it is empty). ... (6 Replies)