2023-01-30

This commit is contained in:
Ismo Vuorinen
2023-01-30 12:16:20 +02:00
parent 9ba66c7734
commit 16d455a262
6 changed files with 34 additions and 26 deletions

View File

@@ -104,3 +104,10 @@ function menu_item()
LINE=$(printf '%-15s %-30s\n' "$1" "$2")
echo -e "$(__log_indent)$(__log_marker) $LINE"
}
# https://stackoverflow.com/a/85932
function fn_exists()
{
declare -f -F "$1" > /dev/null
return $?
}