Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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`|
----