Tput: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
Line 11: Line 11:
  reset=$(tput sgr0)
  reset=$(tput sgr0)
  bold=$(tput bold)
  bold=$(tput bold)
  echo "${red} ${bold} red and bold ${reset}"
  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}"