# File class/main.rb, line 21
        def initialize(argv)
                listfile = argv.shift
                unless listfile
                        puts Usage
                        exit
                end
                @listfile = []
                open (listfile) {|fp|
                        while file = fp.gets
                                @listfile << file.chomp
                        end
                }
        end