Open1

カレントフォルダ以下を再帰的に探索して指定の拡張子以外の全ファイルと空フォルダを削除する

PINTOPINTO
find . -not -name "*.h" -type f | xargs rm -rf && find . -type d -empty -delete