Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/3bbaas/bash-scripts
Here, i share what i learning as a knowledge about bash scripts.
https://github.com/3bbaas/bash-scripts
bash bash-script shell shell-script shell-scripts
Last synced: about 1 month ago
JSON representation
Here, i share what i learning as a knowledge about bash scripts.
- Host: GitHub
- URL: https://github.com/3bbaas/bash-scripts
- Owner: 3bbaas
- Created: 2023-12-07T20:33:43.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2023-12-08T11:53:53.000Z (11 months ago)
- Last Synced: 2024-01-28T08:10:15.399Z (10 months ago)
- Topics: bash, bash-script, shell, shell-script, shell-scripts
- Language: HTML
- Homepage: https://a-3bbas.github.io/Bash-Scripts/
- Size: 11.7 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bash-Scripts
## Basics
- [Hello user script](./Scripts/Hello%20user.sh)
- [Basic Commit Script](./Scripts/Commit%20Script.sh)----
### **Colors**
| **Color** | **Text-Color** | **Background-Color** |
|------------------- |:--------------: |:--------------------: |
| Dark Red | `\033[31m` | `\033[41m` |
| Bright Red | `\033[91m` | `\033[101m` |
| Dark Green | `\033[32m` | `\033[42m` |
| Bright Green | `\033[92m` | `\033[102m` |
| Dark Yellow | `\033[33m` | `\033[43m` |
| Bright Yellow | `\033[93m` | `\033[103m` |
| Dark Blue | `\033[34m` | `\033[44m` |
| Bright Blue | `\033[94m` | `\033[104m` |
| White | `\033[97m` | `\033[107m` |----
### Text Formatting
| **Format** | **Code** |
|--------------| -------- |
| Bold | `\033[1m`|
| Underline | `\033[4m`|
| No underline | `\033[24m`|
----