From d855b1d7a4b523102d7c4e5e6a1bff075c5bc7b8 Mon Sep 17 00:00:00 2001 From: Andrik Albuquerque Date: Wed, 27 Mar 2019 14:35:39 -0300 Subject: [PATCH] aspell: add Brazilian Portuguese translation --- pages.pt-BR/linux/aspell.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pages.pt-BR/linux/aspell.md diff --git a/pages.pt-BR/linux/aspell.md b/pages.pt-BR/linux/aspell.md new file mode 100644 index 0000000000..a1481c557f --- /dev/null +++ b/pages.pt-BR/linux/aspell.md @@ -0,0 +1,23 @@ +# aspell + +> Verificador de excrita interativo. + +- Verifica a corretude de escrita um arquivo: + +`aspell check {{path/to/file}}` + +- Exibe as palavras escritas incorretamente no dispositivo de entrada padrão: + +`cat {{file}} | aspell list` + +- Exibe a lista de dicionários disponíveis: + +`aspell dicts` + +- Executa aspell utilizando um língua diferente (informe o código ISO 639 da língua): + +`aspell --lang={{cs}}` + +- Exibe as palavras escritas incorretamente no dispositivo de entrada padrão e ignora as palavras da lista pessoal: + +`cat {{file}} | aspell --personal={{personal-word-list.pws}} {{list}}`