Sometimes Perl tries to be smart and avoid launching the shell (notice no /bin/sh being executed):
$ strace -fe execve perl -e '$code=system("exit 3"); print("Finished w +ith $? (or ",$?>>8,") $code (or ",$code>>8,")\n");' execve("/usr/bin/perl", ["perl", "-e", "$code=system(\"exit 3\"); prin +t(\"F"...], [/* 51 vars */]) = 0 strace: Process 24553 attached [pid 24553] execve("/home/username/perl5/bin/exit", ["exit", "3"], [/* + 51 vars */]) = -1 ENOENT (No such file or directory) [pid 24553] execve("/usr/local/bin/exit", ["exit", "3"], [/* 51 vars * +/]) = -1 ENOENT (No such file or directory) [pid 24553] execve("/usr/bin/exit", ["exit", "3"], [/* 51 vars */]) = +-1 ENOENT (No such file or directory) [pid 24553] execve("/bin/exit", ["exit", "3"], [/* 51 vars */]) = -1 E +NOENT (No such file or directory) [pid 24553] execve("/usr/local/games/exit", ["exit", "3"], [/* 51 vars + */]) = -1 ENOENT (No such file or directory) [pid 24553] execve("/usr/games/exit", ["exit", "3"], [/* 51 vars */]) += -1 ENOENT (No such file or directory) [pid 24553] execve("/home/username/.local/bin/exit", ["exit", "3"], [/ +* 51 vars */]) = -1 ENOENT (No such file or directory) [pid 24553] +++ exited with 255 +++ --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=24553, si_ui +d=1000, si_status=255, si_utime=0, si_stime=0} --- Finished with -1 (or 72057594037927935) -1 (or 72057594037927935) +++ exited with 0 +++
But when it notices enough special characters in the command line, a real shell is launched:
$ strace -fe execve perl -e '$code=system("ps > /dev/null;exit 3"); pr +int("Finished with $? (or ",$?>>8,") $code (or ",$code>>8,")\n");' execve("/usr/bin/perl", ["perl", "-e", "$code=system(\"ps > /dev/null; +exi"...], [/* 51 vars */]) = 0 strace: Process 24618 attached [pid 24618] execve("/bin/sh", ["sh", "-c", "ps > /dev/null;exit 3"], [ +/* 51 vars */]) = 0 strace: Process 24619 attached [pid 24619] execve("/bin/ps", ["ps"], [/* 51 vars */]) = 0 [pid 24619] +++ exited with 0 +++ [pid 24618] --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid= +24619, si_uid=1000, si_status=0, si_utime=0, si_stime=1} --- [pid 24618] +++ exited with 3 +++ --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=24618, si_ui +d=1000, si_status=3, si_utime=0, si_stime=0} --- Finished with 768 (or 3) 768 (or 3) +++ exited with 0 +++
This is described in the first paragraph of perldoc -f system:
If there is only one scalar argument, the argument is checked for shell metacharacters, and if there are any, the entire argument is passed to the system's command shell for parsing (this is /bin/sh -c on Unix platforms, but varies on other platforms). If there are no shell metacharacters in the argument, it is split into words and passed directly to execvp, which is more efficient.

In reply to Re: Why is this exit code -1? by Anonymous Monk
in thread Why is this exit code -1? by hepcat72

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.