aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/link.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/cmd/link.rb')
-rw-r--r--Library/Homebrew/cmd/link.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/link.rb b/Library/Homebrew/cmd/link.rb
new file mode 100644
index 000000000..5565309e2
--- /dev/null
+++ b/Library/Homebrew/cmd/link.rb
@@ -0,0 +1,8 @@
+module Homebrew extend self
+ def link
+ ARGV.kegs.each do |keg|
+ print "Linking #{keg}... "
+ puts "#{keg.link} links created"
+ end
+ end
+end