[bash] ファイル名先頭の「_」を一括して削除する

$ for i in `ls _*.html`; do mv $i ` ls $i | cut -b 2-`; done

たったこれだけで、カレントディレクトリにある「_ほにゃらら.html」を「ほにゃらら.html」にしてくれる。