mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-15 04:55:52 +02:00

* pages.pt*: fix verb tenses * pages.pt*: fix all pt_PT verb tenses in the start and more pt_BR verb tenses * pages.pt_BR: fix more verb tenses * pages.pt_BR: fix more verb tenses * pages.pt_BR: fix more verb tenses * pages.pt*: fix more verb tenses * review PR --------- Co-authored-by: Isaac Vicente <isaacvicentsocial@gmail.com> Co-authored-by: Isaac Vicente <contatoisaacvicente@gmail.com>
21 lines
587 B
Markdown
21 lines
587 B
Markdown
# abbr
|
|
|
|
> Gerencie abreviações para fish-shell.
|
|
> Palavras definidas pelo usuário são substituídas por frases longas assim que são digitadas.
|
|
> Mais informações: <https://fishshell.com/docs/current/cmds/abbr.html>.
|
|
|
|
- Adicione uma nova abreviação:
|
|
|
|
`abbr --add {{nome_abreviacao}} {{comando}} {{orgumentos_comando}}`
|
|
|
|
- Renomeia uma abreviação existente:
|
|
|
|
`abbr --rename {{nome_antigo}} {{novo_nome}}`
|
|
|
|
- Apaga uma abreviação existente:
|
|
|
|
`abbr --erase {{nome_abreviacao}}`
|
|
|
|
- Importa abreviações definidas em outro host via SSH:
|
|
|
|
`ssh {{nome_host}} abbr --show | source`
|