initial configs
This commit is contained in:
15
install.rb
Executable file
15
install.rb
Executable file
@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env ruby
|
||||
|
||||
# from http://errtheblog.com/posts/89-huba-huba
|
||||
|
||||
home = File.expand_path('~')
|
||||
|
||||
Dir['*'].each do |file|
|
||||
next if file =~ /install/ || file =~ /README/
|
||||
target = File.join(home, ".#{file}")
|
||||
unless File.exist? target
|
||||
`ln -vsf #{File.expand_path file} #{target}`
|
||||
else
|
||||
puts "#{target} exists"
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user