Files
IronFox/scripts/utilities.sh
celenity 415496c49d fix: set indentation to 2 spaces for all files
This makes indentation consistent across all our files, and also improves readability in general

Signed-off-by: celenity <celenity@celenity.dev>
2026-06-29 05:24:33 +00:00

15 lines
276 B
Bash

#!/bin/bash
set -euo pipefail
# 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"
}