eolas/zk/Bash_colour_output.md

25 lines
363 B
Bash
Raw Permalink Normal View History

2024-11-17 12:01:24 +00:00
---
tags: [shell]
created: Sunday, November 17, 2024
---
2024-11-17 15:08:36 +00:00
# Bash colour output
2024-11-17 12:01:24 +00:00
Define colours:
2024-11-17 15:08:36 +00:00
```bash
2024-11-17 12:01:24 +00:00
RED='\033[0;31m'
GREEN='\033[0;32m'
BLUE='\033[0;34m'
NO_COLOR='\033[0m'
```
Interpolate in string:
2024-11-17 15:08:36 +00:00
```bash
2024-11-17 12:01:24 +00:00
echo -e "${BLUE}INFO Uploading graph file...${NO_COLOR}"
```
Note: must end with the blank colour otherwise everything subsequent will be in
blue.