feat(func): Convert text ucase, lcase

This commit is contained in:
2026-07-23 21:56:19 -06:00
parent 1336c8e63b
commit 1da49b06db
+8
View File
@@ -39,6 +39,14 @@ getHostname() {
(hostname -s) (hostname -s)
} }
lowercase() {
echo "$1" | tr '[:upper:]' '[:lower:]'
}
uppercase() {
echo "$1" | tr '[:lower:]' '[:upper:]'
}
### functions ### functions
badParam() { badParam() {
if [ "$1" = "null" ]; then if [ "$1" = "null" ]; then