一括リネーム用のシェル
#!/bin/bash for f in `grep '2008' /var/www/html/ -rls` do echo $f /usr/bin/perl -i -pe 's{2008}{2009}gxo' $f; done