# File lib/ohai/system.rb, line 72
    def from(cmd)
      status, stdout, stderr = run_command(:command => cmd)
      return "" if stdout.nil? || stdout.empty?
      stdout.chomp!.strip
    end