Re: When line starts with '-' or other

Jos Dirks <[email protected]> Thu, 24 Dec 2009 02:31:18 -0800 (PST)
Newsgroups gmane.comp.gnu.aspell.user
Message-ID <[email protected]>
> aspell.exe -a --lang=nl --add-extra-dicts=nl_extra.rws --add-extra-dicts=..\gebruiker\gebr_woorden.rws --ignore-case <  text.tmp
>
> However, when a line in text.tmp starts with a '-', '#', '*' or some other punctuation aspell ingores the whole line.
> Removing a '-', '#', '*' or some other punctuation and the beginning of a text-line will return excellent result.
>
> Does anyone has a solution for this?

You need to prefix your text with a "^".  See 
http://aspell.net/man-html/Through-A-Pipe.html#Through-A-Pipe

 You're right, huge problems solved. Thanks.