Django の models に対応したテーブルを MySQL から grep する方法

以下のコマンドで、取り出す。

mysql -uroot -N information_schema -e "select table_name from tables where table_schema = 'tablename' and table_name like 'prefix_%'" > table.txt