12 lines
220 B
Bash
12 lines
220 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}"
|