Tput: Difference between revisions
Jump to navigation
Jump to search
(→TODO) |
|||
Line 10: | Line 10: | ||
green=$(tput setaf 10) | green=$(tput setaf 10) | ||
reset=$(tput sgr0) | reset=$(tput sgr0) | ||
bold=$(tput bold) | |||
echo "${red} ${bold} red and bold ${reset}" |
Revision as of 04:38, 11 March 2021
Internal
Overview
TODO
red=$(tput setaf 9) green=$(tput setaf 10) reset=$(tput sgr0) bold=$(tput bold)
echo "${red} ${bold} red and bold ${reset}"