mirror of
https://github.com/GRFreire/scripts.git
synced 2026-01-09 20:59:37 +00:00
6 lines
246 B
Bash
Executable File
6 lines
246 B
Bash
Executable File
#!/bin/env bash
|
|
pcs() { for i in {0..7}; do echo -en "\e[${1}$((30+$i))m \u2588\u2588 \e[0m"; done; }
|
|
pcsbright() { for i in {0..7}; do echo -en "\e[${1}$((90+$i))m \u2588\u2588 \e[0m"; done; }
|
|
printf "\n%s\n%s\n\n" "$(pcs)" "$(pcsbright '1;')"
|
|
|