Module: Shenzhen::PlistBuddy

Defined in:
lib/shenzhen/plistbuddy.rb

Class Method Summary collapse

Class Method Details



3
4
5
6
7
# File 'lib/shenzhen/plistbuddy.rb', line 3

def print(file, key)
  output = `/usr/libexec/PlistBuddy -c "Print :#{key}" "#{file}" 2> /dev/null`

  !output || output.empty? || /Does Not Exist/ === output ? nil : output.strip
end