2007-04-08から1日間の記事一覧

まとめて構文チェック

PHP

#!/bin/sh FILES=`find $1 -name \*.php` for file in $FILES do php -l $file done