Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am calling many perl scripts in my bash script (sometimes from csh also). At the start of bash script I want to put a test which checks if all the perl scripts are devoid of any compilation errors. One way of doing this would be to actually call the perl script from bash script and grep for "compilation error" in the piped log file. But this becomes messy as different perl scripts are called at different points in the code. Hence I want to do this at the very start of the bash script. Is there a way to check if the perl script has no compilation error?

share|improve this question

2 Answers

up vote 10 down vote accepted

perl -c ourprogram can do the trick but it's not a good solution. Randal has written a very nice article on this topic which you should check out.

quoting from his article:

Probably the simplest thing we can tell is "is it valid?". For this, we invoke perl itself, passing the compile-only switch:

perl -c ourprogram

For this operation, perl compiles the program, but stops just short of the execution phase. This means that every part of the program text is translated into the internal data structure that represents the working program, but we haven't actually executed any code. If there are any syntax errors, we're informed, and the compilation aborts.

Actually, that's a bit of a lie. Thanks to BEGIN blocks (including their layered-on cousin, the use directive), some Perl code may have been executed during this theoretically safe "syntax check". For example, if your code contains:

BEGIN { warn "Hello, world!\n" } 

then you will see that message, even during perl -c! This is somewhat surprising to people who consider "compile only" to mean "executes no code". Consider the code that contains:

BEGIN { system "rm", "-rf", "/" } 

and you'll see the problem with that argument. Oops.

share|improve this answer
Thanks for letting know the limitations of the method. Btw, how should I pipe the perl -c output? perl -c script.pl | grep "syntax OK" doesn't work as intended. I expect it to return nothing when it contains compilation errors. – user13107 Oct 16 '12 at 6:17
1  
Nevermind, got it! perl -c script.pl |& grep "syntax OK" – user13107 Oct 16 '12 at 6:24
It's better to check the actual exit value, rather than grep for some string output. The exit value will be 0 if successful, nonzero if it fails the check. – Ken Williams Oct 22 '12 at 15:36
Therefore you can do if ( perl -c foo.pl > /dev/null 2>&1 ) echo ok or similar. Or check the variable $? after the perl call. – Ken Williams Oct 22 '12 at 15:38

perl -c program.pl will check for any errors in your Perl script.

share|improve this answer
3  
but also run any code that is set up to run at compile time – ysth Oct 16 '12 at 6:03
@ysth Does it really? The way I have always used it, it just checks syntax etc. and terminates with either 'ok' or the errors. – squiguy Oct 16 '12 at 6:05
7  
perl -c -le'BEGIN { print "yes" }' – ysth Oct 16 '12 at 6:12
@ysth I like your humor! I learned something new. – squiguy Oct 16 '12 at 6:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.