You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
525 B
26 lines
525 B
require 'fileutils'
|
|
|
|
include FileUtils
|
|
|
|
def with_mount(image)
|
|
out = `hdiutil mount #{image}`
|
|
mountpoint = out.split(/\s+/).last
|
|
yield(mountpoint)
|
|
ensure
|
|
puts `hdiutil unmount #{mountpoint}`
|
|
end
|
|
|
|
cd File.expand_path('~/.ssh')
|
|
|
|
with_mount "~/Dropbox/sekritz.sparseimage" do |mountpoint|
|
|
from = Dir["#{mountpoint}/ssh keys/*"]
|
|
to = from.map {|file| File.basename(file) }
|
|
from.zip(to).each do |from, to|
|
|
next if File.exist?(to)
|
|
|
|
cp from, to
|
|
puts `chmod go-r #{to}`
|
|
puts `ssh-add -K #{to}`
|
|
end
|
|
end
|