SyntaxFix
Write A Post
Hire A Developer
Questions
Another thing to check (just occured to me):
I.e. this innocent-looking snippet will cause the same error:
die () { test -n "$@" && echo "$@"; exit 1 }
To make the dumb parser happy:
die () { test -n "$@" && echo "$@"; exit 1; }