more bugfixes

This commit is contained in:
2025-05-09 14:57:56 -06:00
parent baaaf0c0cc
commit 50839489e0
8 changed files with 28 additions and 16 deletions
+9
View File
@@ -1,4 +1,13 @@
#!/bin/bash
function test_fun() {
echo "function name? $0"
}
echo "script name? $0"
test_fun
test_fun "one" "two" 3
if [[ ! -z $1 ]]; then
message="$1"
else