tools:bash:customization
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tools:bash:customization [2024/06/04 02:37] – [Color Codes] Humphrey Boa-Gart | tools:bash:customization [2025/01/04 03:40] (current) – Humphrey Boa-Gart | ||
---|---|---|---|
Line 40: | Line 40: | ||
As you start to use bash more often, you will find yourself using specific combinations of commands and flags to accomplish basic tasks. You can drastically cut the amount of typing you will do by setting **aliases**, | As you start to use bash more often, you will find yourself using specific combinations of commands and flags to accomplish basic tasks. You can drastically cut the amount of typing you will do by setting **aliases**, | ||
- | For example, lets look at the '' | + | For example, lets look at the '' |
- | ls='ls -lhaF --color=auto' | + | ls='ls -lhAF --color=auto' |
Aliases do not have to be permanent, either. To set that same alias to only work for the current shell session, you would run: | Aliases do not have to be permanent, either. To set that same alias to only work for the current shell session, you would run: | ||
- | $ alias ls=\' | + | $ alias ls=\' |
To unset that alias, you would run: | To unset that alias, you would run: | ||
Line 72: | Line 72: | ||
PS1=' | PS1=' | ||
- | Here is a <wrap em>red version</ | + | Here is a separate |
PS1=' | PS1=' | ||
Line 104: | Line 104: | ||
/ | / | ||
| | ||
- | This above line shows that bash will look in your personal **~/ | + | This above line shows that bash will look in your personal **~/ |
To enable bash to run a custom application (such as a freshly downloaded [[tools: | To enable bash to run a custom application (such as a freshly downloaded [[tools: | ||
Line 202: | Line 202: | ||
===== ANSI Escape Codes ===== | ===== ANSI Escape Codes ===== | ||
- | When you set your custom hostname earlier in this article, you may have noticed a bunch of numbers | + | When you set your custom hostname earlier in this article, you may have noticed |
==== Color Codes ==== | ==== Color Codes ==== | ||
+ | ^ Color ^ Foreground Code ^ Background Code ^ | ||
+ | | Black | 30 | 40 | | ||
+ | | Red | 31 | 41 | | ||
+ | | Green | 32 | 42 | | ||
+ | | Yellow | ||
+ | | Blue | 34 | 44 | | ||
+ | | Magenta | ||
+ | | Cyan | 36 | 46 | | ||
+ | | Light Gray | 37 | 47 | | ||
+ | | Gray | 90 | 100 | | ||
+ | | Light Red | 91 | 101 | | ||
+ | | Light Green | 92 | 102 | | ||
+ | | Light Yellow | 93 | 103 | | ||
+ | | Light Blue | 94 | 104 | | ||
+ | | Light Magenta | 95 | 105 | | ||
+ | | Light Cyan | 96 | 106 | | ||
+ | | White | 97 | 107 | | ||
- | **Color Foreground Code Background Code** | + | ==== Other Codes ==== |
- | Black | + | |
- | Red 31 41 | + | |
- | Green | + | |
- | Yellow 33 | + | |
- | Blue 34 44 | + | |
- | Magenta 35 | + | |
- | Cyan 36 46 | + | |
- | Light Gray 37 | + | |
- | Gray 90 100 | + | |
- | Light Red 91 | + | |
- | Light Green 92 | + | |
- | Light Yellow 93 | + | |
- | Light Blue 94 | + | |
- | Light Magenta 95 | + | |
- | Light Cyan 96 | + | |
- | White 97 107 | + | |
+ | ^ Code ^ Description | ||
+ | | 00 | Reset/ | ||
+ | | 01 | Bold text | | ||
+ | | 02 | Faint text | | ||
+ | | 03 | Italics | ||
+ | | 04 | Underlined text | | ||
- | ==== Other Codes ==== | ||
- | < | ||
- | Code Description | ||
- | 0 Reset/ | ||
- | 1 Bold text | ||
- | 2 Faint text | ||
- | 3 Italics | ||
- | 4 Underlined text | ||
- | </ | ||
---- | ---- | ||
+ | * Previous Page: [[tools: | ||
* [[tools: | * [[tools: | ||
+ | |||
+ | |||
+ | {{wst> |
tools/bash/customization.1717468666.txt.gz · Last modified: 2024/08/06 05:54 (external edit)
Find this page online at: https://bestpoint.institute/tools/bash/customization
Find this page online at: https://bestpoint.institute/tools/bash/customization