Are there any AWK syntax checkers? I'm interested in both minimal checkers that only flag syntax errors and more extensive checkers along the lines of lint.
It should be a static checker only, not dependent on running the script.
|
Are there any AWK syntax checkers? I'm interested in both minimal checkers that only flag syntax errors and more extensive checkers along the lines of lint. It should be a static checker only, not dependent on running the script. |
||||
|
|
|
If you prefix your Awk script with If you put the code snippet in a separate argument, you'll get good line numbers in the error messages. This invocation...
Gives error messages like this:
GNU Awk's
And GNU Awk's
Update:
|
The END { exit(0) } doesn't really seem necessary. Or am I missing something? – Michael J. Barber Aug 27 '11 at 6:16 |
|
@Michael J. Barber: I've added an update to my answer to show the difference that it makes. – Dan Cecile Aug 27 '11 at 12:55 |
|
|
GNU awk appears to have a --lint option. |
|||||
|
|
For a minimal syntax checker, which stops at the first error, try |
|||
|