# File app/utils/many_file_app.rb, line 17
        def initialize
                @fname_pattern = "*"
                
                @parser = OptionParser.new
                @usage_line_option_args = "[オプション]"
                @usage_line_fixed_args = "(ファイル|フォルダ) ..."
                @usage_msg_fixed_args = "" +
                        "ファイル      - ワイルドカードが使用可能です。\n" +
                        "                *   空文字列を含む任意の文字列と一致します。\n" +
                        "                ?   任意の一文字と一致します。\n" +
                        "                **  ディレクトリを再帰的にたどります。\n" +
                        "                (例)カレントディレクトリ配下の全ファイル\n" +
                        "                      **/*\n" +
                        "フォルダ      - 指定フォルダ配下の全ファイルを処理します。"
        end