# File lib/os.rb, line 251
  def self.open_file_command
    if OS.doze? || OS.cygwin?
      "start"
    elsif OS.mac?
      "open"
    else
      # linux...what about cygwin?

      "xdg-open"
    end

  end