Files
tldr/pages.fr/linux/abbr.md
2022-03-06 15:57:52 -03:00

22 lines
624 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# abbr
> Gère les abréviations pour le shell Fish.
> Les mots définis par l'utilisateur sont remplacés par des phrases plus longues après leur saisie.
> Plus d'informations : <https://fishshell.com/docs/current/cmds/abbr.html>.
- Ajoute une nouvelle abréviation :
`abbr --add {{nom_abrégé}} {{commande}} {{arguments_de_la_commande}}`
- Renomme une abréviation existante :
`abbr --rename {{ancien_nom}} {{nouveau_nom}}`
- Supprime une abréviation existante :
`abbr --erase {{nom_abrégé}}`
- Importe les abréviations définies sur un autre hôte via SSH :
`ssh {{nom_de_l_hôte}} abbr --show | source`