Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

run-with-aspell(1) [suse man page]

RUN-WITH-ASPELL(1)					 Aspell Abbreviated User's Manual					RUN-WITH-ASPELL(1)

NAME
run-with-aspell - script to help use GNU Aspell as an ispell replacement SYNOPSIS
run-with-aspell <command> DESCRIPTION
The recommended way to use Aspell as a replacement for Ispell is to change the Ispell command from within the program being used. If that is not possible, the run-with-aspell script may be used instead. OPTIONS
<command> is the name of the program with any optional arguments. The old method of mapping ispell to Aspell is discouraged because it can create compatibility problems with programs that actually require ispell such as ispell's own scripts. SEE ALSO
aspell(1), aspell-import(1), word-list-compress(1) Aspell is fully documented in its Texinfo manual. See the `aspell' entry in info for more complete documentation. AUTHOR
This manual page was written by Sudhakar Chandrasekharan <thaths@netscape.com> and Brian Nelson <pyro@debian.org>. GNU
2004-03-03 RUN-WITH-ASPELL(1)

Check Out this Related Man Page

ENCHANT_BROKER_LIST_DICTS(3)						 1					      ENCHANT_BROKER_LIST_DICTS(3)

enchant_broker_list_dicts - Returns a list of available dictionaries

SYNOPSIS
mixed enchant_broker_list_dicts (resource $broker) DESCRIPTION
Returns a list of available dictionaries with their details. PARAMETERS
o $broker - Broker resource RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 List all available dictionaries for one broker <?php $r = enchant_broker_init(); $dicts = enchant_broker_list_dicts($r); print_r($dicts); ?> The above example will output something similar to: Array ( [0] => Array ( [lang_tag] => de [provider_name] => aspell [provider_desc] => Aspell Provider [provider_file] => /usr/lib/enchant/libenchant_aspell.so ) [1] => Array ( [lang_tag] => de_DE [provider_name] => aspell [provider_desc] => Aspell Provider [provider_file] => /usr/lib/enchant/libenchant_aspell.so ) [3] => Array ( [lang_tag] => en [provider_name] => aspell [provider_desc] => Aspell Provider [provider_file] => /usr/lib/enchant/libenchant_aspell.so ) [4] => Array ( [lang_tag] => en_GB [provider_name] => aspell [provider_desc] => Aspell Provider [provider_file] => /usr/lib/enchant/libenchant_aspell.so ) [5] => Array ( [lang_tag] => en_US [provider_name] => aspell [provider_desc] => Aspell Provider [provider_file] => /usr/lib/enchant/libenchant_aspell.so ) [6] => Array ( [lang_tag] => hi_IN [provider_name] => myspell [provider_desc] => Myspell Provider [provider_file] => /usr/lib/enchant/libenchant_myspell.so ) ) SEE ALSO
enchant_broker_describe(3). PHP Documentation Group ENCHANT_BROKER_LIST_DICTS(3)
Man Page