All public logs

From ~esantoro

Combined display of all available logs of ~esantoro. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 21:51, 25 April 2023 Esantoro talk contribs created page Blog/Colors in bash (Created page with "These are a few lines of code to get some basic coloring when writing bash scripts. I'm publishing them here because sometimes i have to use <s>work</s> other people's computers and it comes handy to be able to copy-and-paste them where needed. <syntaxhighlight lang="bash"> function yellow { tput setaf 3 ; echo $1 ; tput sgr0 } function red { tput setaf 1 ; echo $1 ; tput sgr0 } function green { tput setaf 2 ; echo $1 ; tput sgr0 } function cyan { tp...") Tag: Visual edit