module TerminalCommands

def self.open_file_or_link(file_or_link, options = {})

def self.open_file_or_link(file_or_link, options = {})
  command = if macosx?
    "open"
  elsif linux?
    "xdg-open"
  end
  `#{command} #{file_or_link}`
end