1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.es/linux/abbr.md
Darío Hereñú 50905474af
abbr: fix Spanish translation (#12927)
Co-authored-by: Alejandro Cervera <96702705+tricantivu@users.noreply.github.com>
2024-06-10 20:16:05 +02:00

21 lines
644 B
Markdown

# abbr
> Administra abreviaturas del intérprete de comandos fish.
> Las palabras definidas por el usuario se reemplazan con frases más largas después de ingresarlas.
> Más información: <https://fishshell.com/docs/current/cmds/abbr.html>.
- Añade una nueva abreviatura:
`abbr --add {{nombre_abreviatura}} {{comando}} {{argumentos_del_comando}}`
- Cambia el nombre de una abreviatura existente:
`abbr --rename {{nombre_antiguo}} {{nombre_nuevo}}`
- Borra una abreviatura existente:
`abbr --erase {{nombre_abreviatura}}`
- Importa las abreviaturas definidas en otro host a través de SSH:
`ssh {{nombre_host}} abbr --show | source`