added usage in script
This commit is contained in:
parent
7c86af8f0b
commit
c0be40db0f
1
LICENSE
1
LICENSE
@ -1,6 +1,7 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2023 Roman Ožana (https://ozana.cz/)
|
||||
Copyright (c) 2024 Alexander Popov (https://iiiypuk.me/)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
@ -2,6 +2,8 @@
|
||||
|
||||
Write colored text to the terminal easily.
|
||||
|
||||
_Forker from https://github.com/OzzyCzech/colors.sh_
|
||||
|
||||
![Color palette](colors.png)
|
||||
|
||||
## Installation
|
||||
@ -9,7 +11,7 @@ Write colored text to the terminal easily.
|
||||
Download `colors.sh` and source it in your script or copy/paste the functions and variables into your script.
|
||||
|
||||
```shell
|
||||
curl -O https://raw.githubusercontent.com/OzzyCzech/colors.sh/master/colors.sh
|
||||
wget https://git.a2s.su/iiiypuk/colors.sh/raw/branch/main/colors.sh
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
10
colors.sh
10
colors.sh
@ -1,9 +1,15 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# This script is used to define colors for bash scripts
|
||||
# GitHub: https://github.com/OzzyCzech/colors.sh
|
||||
# Author: Roman Ožana <roman@ozana.cz>
|
||||
# Git: https://git.a2s.su/iiiypuk/colors.sh
|
||||
# Author: Alexander Popov
|
||||
# License: MIT
|
||||
# Update: 28 Mar 2024
|
||||
|
||||
# Usage:
|
||||
#
|
||||
# source colors.sh
|
||||
# echo -e "This is ${RED}red text${NC}"
|
||||
|
||||
# Black and white
|
||||
export BLACK='\033[0;30m'
|
||||
|
Loading…
Reference in New Issue
Block a user