module Utils::IRB::Shell

def ls(*args)

List contents of directory
def ls(*args)
  puts `ls #{args.map { |x| "'#{x}'" } * ' '}`
end