Add multiple error strings support

This commit is contained in:
2024-09-05 08:31:40 +03:00
parent fc3beae6e7
commit dbcf7cf296

View File

@@ -18,7 +18,10 @@ _mapped_options_count=0
_positional_args_count=0
_err() {
echo "$1"
for arg in "$@"; do
echo "$arg"
done
exit 1
}