module EacRubyUtils::Envs::BaseCommand::Execution

def execute(options = {})

def execute(options = {})
  c = command(options)
  debug_print("BEFORE: #{c}")
  t1 = Time.now
  r = ::EacRubyUtils::Envs::Process.new(c).to_h
  i = Time.now - t1
  debug_print("AFTER [#{i}]: #{c}")
  r
end