Files
IronFox/scripts/utilities.sh
celenity e57b08039a fix: scripts (for now)
Signed-off-by: celenity <celenity@celenity.dev>
2026-04-02 21:31:13 +00:00

13 lines
255 B
Bash

#!/bin/bash
# Utility functions for frequently performed tasks
# This file MUST NOT contain anything other than function definitions.
function echo_red_text() {
echo -e "\033[31m$1\033[0m"
}
function echo_green_text() {
echo -e "\033[32m$1\033[0m"
}