class Thor::Options

def normalize_switch(arg)


Check if the given argument is actually a shortcut.
def normalize_switch(arg)
  (@shorts[arg] || arg).tr('_', '-')
end