LinuxCommandLibrary

abbr

Manage abbreviations for the fish shell.

TLDR

Add a new abbreviation

$ abbr --add [abbreviation_name] [command] [command_arguments]
copy


Rename an existing abbreviation
$ abbr --rename [old_name] [new_name]
copy


Erase an existing abbreviation
$ abbr --erase [abbreviation_name]
copy


Import the abbreviations defined on another host over SSH
$ ssh [host_name] abbr --show | source
copy

Copied to clipboard