972adb98b5
csshX is an SSH multiplexer. It connects to multiple machines via SSH and lets you enter the same commands on each one of them. There is no build system, just a single Perl script to be installed into bin/. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
282 B
Ruby
12 lines
282 B
Ruby
require 'formula'
|
|
|
|
class Csshx < Formula
|
|
url 'http://csshx.googlecode.com/files/csshX-0.72.tgz'
|
|
homepage 'http://code.google.com/p/csshx/'
|
|
md5 '15178bbdaaa8f949bd583bd639577232'
|
|
head 'http://csshx.googlecode.com/svn/trunk/'
|
|
|
|
def install
|
|
bin.install 'csshX'
|
|
end
|
|
end
|