1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 05:06:00 +02:00

abbr: add pt_BR translation (#8211)

This commit is contained in:
Luis 2022-07-20 12:08:46 -03:00 committed by GitHub
parent b7c6980c8f
commit 98dfcc76fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

21
pages.pt_BR/linux/abbr.md Normal file
View file

@ -0,0 +1,21 @@
# 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}}`
- Renomear uma abreviação existente:
`abbr --rename {{nome_antigo}} {{novo_nome}}`
- Apagar uma abreviação existente:
`abbr --erase {{nome_abreviacao}}`
- Importar abreviações definidas em outro host via SSH:
`ssh {{nome_host}} abbr --show | source`