ArchSetupScripts/error.sh
2024-11-10 08:58:16 -05:00

9 lines
138 B
Bash
Executable File

error(){
local txtred=$(tput setaf 1) # Red
local txtwht=$(tput setaf 7) # White
local msg=$*
echo "$txtred $msg $txtwht"
}
error $1