dotfiles/bin/styletest
Fernando Schauenburg a6f51c9be3 bin: remove comma from my scripts
The leading comma seemed like a good idea to namespace my commands but
in practice in turned out to just be annoying and not provide any real
benefits. So down with the comma...
2021-08-08 23:56:17 +02:00

12 lines
539 B
Bash
Executable file

#!/bin/sh
rst="$(tput sgr0)"
printf '%s\n' "$(tput bold)This text has the bold attribute.${rst}"
printf '%s\n' "$(tput dim)This text has the dim attribute.${rst}"
printf '%s\n' "$(tput smso)This text has the standout (smso) attribute.${rst}"
printf '%s\n' "$(tput smul)This text has the underline (smul) attribute.${rst}"
printf '%s\n' "$(tput blink)This text has the blink attribute.${rst}"
printf '%s\n' "$(tput rev)This text has the reverse attribute.${rst}"
printf '%s\n' "$(tput invis)This text has the invisible attribute.${rst}"