bash:aliases:local_vs_global
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
bash:aliases:local_vs_global [2020/05/05 20:17] – peter | bash:aliases:local_vs_global [2020/05/05 20:21] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== BASH - Aliases - Local vs Global ====== | ||
- | |||
- | Aliases can be global, i.e. apply by default to every user on the system. | ||
- | |||
- | However each user can also have their own aliases which only apply to them. | ||
- | |||
- | ---- | ||
- | |||
- | ===== Global Aliases ===== | ||
- | |||
- | Global aliases are specified in a file within the **/ | ||
- | |||
- | We use **/ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | |||
- | For example 644. | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Local Aliases ===== | ||
- | |||
- | Local aliases are specific to the user. | ||
- | |||
- | These aliases should be defined in a file named **.bash_aliases** within a users home directory. | ||
- | |||
- | |||
- | * ~/ | ||
- | * ~/.bashrc | ||
- | * ~/ | ||
- | |||
- | |||
- | |||
- | <file bash ~/ | ||
- | alias apt=' | ||
- | alias update=' | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Enable the aliases ===== | ||
- | |||
- | To apply the changes immediately to your bash profile without having to log out: | ||
- | |||
- | <code bash> | ||
- | ~/ | ||
- | </ | ||
- | |||
- | or | ||
- | |||
- | <code bash> | ||
- | . ~/.bashrc | ||
- | </ | ||
- | |||
- | or | ||
- | |||
- | <code bash> | ||
- | . ~/ | ||
- | </ | ||
- | |||
bash/aliases/local_vs_global.1588709869.txt.gz · Last modified: 2020/07/15 09:30 (external edit)