Created
February 22, 2012 20:36
-
-
Save pjones/1887087 to your computer and use it in GitHub Desktop.
Create an env file for Mac OS GUI applications
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
PASS_THROUGH = %w(PATH MANPATH EDITOR) | |
DIRECTORY = File.expand_path('~/.MacOSX') | |
FILENAME = File.join(DIRECTORY, 'environment.plist') | |
Dir.mkdir(DIRECTORY) unless File.exist?(DIRECTORY) | |
HEADER = <<EOT | |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"><dict> | |
EOT | |
File.open(FILENAME, 'w') do |file| | |
file.puts(HEADER) | |
ENV.each do |name, value| | |
next unless PASS_THROUGH.include?(name) | |
file.puts("<key>#{name}</key>") | |
file.puts("<string><![CDATA[#{value}]]></string>") | |
end | |
file.puts('</dict></plist>') | |
end | |
$stdout.puts("You must now log-out for these changes to take affect.") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment