module Shell

def run(bin, cmd)

def run(bin, cmd)
  final = []
  final << bin
  final.concat(cmd)
  system final.join(%( ))
end