Executing shell script with system() returns 256. What does that mean?

According to this and that, Perl’s system() returns exit values multiplied by 256. So it’s actually exiting with 1. It seems this happens in C too.

Leave a Comment