# File lib/fastcst/command.rb, line 141
141:     def print_command_list
142:         # oops, that's not valid, show them the message
143:         msg = "Invalid command.  Available commands are:\n"
144:             
145:         self.commands.each do |name|
146:             msg += " - #{name}\n"
147:         end
148:             
149:         msg += "Each command takes -h as an option to get help."
150:             
151:         UI.failure :command, msg
152:     end