mirror of
https://github.com/kremalicious/dotfiles.git
synced 2024-11-22 01:37:14 +01:00
15 lines
409 B
Bash
Executable File
15 lines
409 B
Bash
Executable File
#!/bin/bash
|
|
# tputcolors
|
|
|
|
echo
|
|
echo -e "$(tput bold) reg bld und tput-command-colors$(tput sgr0)"
|
|
|
|
for i in $(seq 1 256); do
|
|
echo " $(tput setaf $i)Text$(tput sgr0) $(tput bold)$(tput setaf $i)Text$(tput sgr0) $(tput sgr 0 1)$(tput setaf $i)Text$(tput sgr0) \$(tput setaf $i)"
|
|
done
|
|
|
|
echo ' Bold $(tput bold)'
|
|
echo ' Underline $(tput sgr 0 1)'
|
|
echo ' Reset $(tput sgr0)'
|
|
echo
|