• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

converting a csh to bash style

SoundTheSurrender

Diamond Member
foreach name (`ispell -l < $1`)

$1 = file to read
name = the word that is spelled wrong

This command right here allows me to read a text file that has errors and goes through a loop until it done checking all the misspelled words. This is for CSH.

I'm totally lost on who I can have the same idea in Bash.

Any tips?

Thanks
 
I don't fully understand what you're trying to do so I won't try to translate it to sh, but maybe this will be of help to you.
 
Back
Top