module Sys

def run(cmd)

Run the system command +cmd+.
def run(cmd)
  log cmd
  system(cmd) or fail "Command Failed: [#{cmd}]"
end