1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

perl上でexit codeを取得する際は要注意

Posted at

system('date')とかでシステムコールした際のexit codeを取りたい時注意。

どうしたらいいの?

exit code取りたいだけならこうしておく。

my $code = system('date') >> 8

なんで?

unix的な戻り値を返すらしい。
左8bit: exit code
右8bit: コアダンプの有無とか停止時のシグナルとか

参照

perldoc
http://perldoc.jp/variable/%24%3F

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?