2022-03-06 18:57:52 +00:00
|
|
|
|
# abbr
|
|
|
|
|
|
2024-03-10 06:53:17 +00:00
|
|
|
|
> Gère les abréviations pour le shell fish.
|
2022-03-06 18:57:52 +00:00
|
|
|
|
> 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`
|