Tput: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
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}"

Latest 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}"