module Pry::SystemCommandHandler

def default(output, command, _pry_instance)

def default(output, command, _pry_instance)
  return if Kernel.system(command)
  output.puts(
    "Error: there was a problem executing system command: #{command}"
  )
end