Contents
- UNIX
- Windows
- サーバ
- プログラミング言語
- データベース
- プロトコル
- サービス
- オープンソース
- 規格・技術
- アプリケーション
- PC
- DEVICE
- その他(未分類)
お問合せ: メールフォーム
/path/to/dir 配下で BOM(Bite Order Mark) が含まれるファイルを検出するスクリプト
% cd /path/to/dir % for f in `find . -type f` php -r '$hex = bin2hex(file_get_contents("$argv[1]")); if(strpos($hex, "efbbbf")===0) echo $argv[1]."\n";' -- $f