( categories: one liners )
perl -wc script.pl
NOTES:
- The above command just check the syntax, it does not execute the script.
- If you don't want to see the warnings, remove 'w' from the command line arguments.





