setup-cockpit/installation_scripts/separator.sh

11 lines
219 B
Bash

#!/bin/bash
## This script is used to visually separate commands in the other scripts
if [ $? -eq 0 ]; then
echo -n "${GREEN}"
else
echo -n "${RED}"
fi
echo "========================================"
echo "${NC}"