Skip to content

Instantly share code, notes, and snippets.

@Nully
Created November 24, 2010 04:58
Show Gist options
  • Save Nully/713140 to your computer and use it in GitHub Desktop.
Save Nully/713140 to your computer and use it in GitHub Desktop.
PeaerPackageInstaller
#!/usr/bin/env ruby
`pear remote-list`.each_line do |p|
puts p.split(/\s+/)[0]
`pear install -f #{p.split(/\s+/)[0]}`
end
@Nully
Copy link
Author

Nully commented Nov 30, 2010

PEARのパッケージを全部インストール

全てのパッケージを一括インストール。

Rubyでやったのは謎。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment