# File lib/anemone/cli.rb, line 5
    def self.run
      command = ARGV.shift
      
      if COMMANDS.include? command
        load "anemone/cli/#{command.tr('-', '_')}.rb"
      else
        puts "Anemone is a web spider framework that can collect\nuseful information about pages it visits.\n\nUsage:\nanemone <command> [arguments]\n\nCommands:\n\#{COMMANDS.join(', ')}\n"
      end
    end