A collection of shell scripts to make my live easier.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
210 B

function underline() {
[[ $# -lt 2 ]] && return 1
printf "\033[4m%${1}s\033[24m" $2
}
function bold() {
[[ $# -lt 2 ]] && return 1
printf "\033[1m%${1}s\033[22m" $2
}
# vim: set et ts=4 sw=4: