Sha256: 0efefce352521ea322172f230efa96b5706e578c52119756b9c95bafe94ef6a8
Contents?: true
Size: 729 Bytes
Versions: 13
Compression:
Stored size: 729 Bytes
Contents
#!/usr/bin/env ruby require "rubygems" require "mandy" puts "\nYou are running Mandy!" puts "Here are the commands at your disposal..." puts '' { 'mandy-install' => 'Installs the Mandy Rubygem on several hosts via ssh.', 'mandy-local' => 'Run a Map/Reduce task locally without requiring hadoop', 'mandy-hadoop' => 'Run a Map/Reduce task on hadoop using the provided cluster config', 'mandy-rm' => 'remove a file or directory from HDFS', 'mandy-put' => 'upload a file into HDFS', 'mandy-map' => 'Run a map task reading on STDIN and writing to STDOUT', 'mandy-reduce' => 'Run a reduce task reading on STDIN and writing to STDOUT' }.each do |command, description| puts "#{command.ljust(15)} #{description}" end
Version data entries
13 entries across 13 versions & 1 rubygems