Skip to content

Instantly share code, notes, and snippets.

@ksomemo
Created June 11, 2013 05:24
Show Gist options
  • Save ksomemo/5754620 to your computer and use it in GitHub Desktop.
Save ksomemo/5754620 to your computer and use it in GitHub Desktop.
lint php files with xargs (parallel)
find dir -name '*.php' -print0 | xargs -0 -n1 -P8 php -l
@ksomemo
Copy link
Author

ksomemo commented Jun 11, 2013

エラーが出ると止まってしまう。

PHP Fatal error:  Cannot redeclare ~.php on line 82
xargs: php: ステータス255で終了; 中断

xargsに渡されるステータスが0でないからだと思われる。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment