コンピュータや音楽の事書いてます

2011-10-25から1日間の記事一覧

perlのsystem関数の戻り値

意外と探すの大変だったので情報めもhttp://perldoc.perl.org/functions/system.html if ($? == -1) { print "failed to execute: $!\n"; } elsif ($? & 127) { printf "child died with signal %d, %s coredump\n", ($? & 127), ($? & 128) ? 'with' : 'wit…