class Dollar::Dollar

Public Instance Methods

start() click to toggle source
# File lib/dollar.rb, line 5
def start
  arguments = ARGV

  if arguments.length < 1 || arguments[0] == "--help" 
    puts '$: Runs any commands that follow it to help with copy and paste errors'
    exit
  end

  exec arguments.join(' ')
end