Sha256: 74781e353e79736276703a4eace555c217f7985ffe33bc55e7fbeba5041cca64
Contents?: true
Size: 207 Bytes
Versions: 26
Compression:
Stored size: 207 Bytes
Contents
#!/usr/bin/env ruby $running = true trap('INT') do $running = true end STDIN.each_line do |line| break unless $running command = line.chomp puts puts "command: #{command}" system command end
Version data entries
26 entries across 26 versions & 1 rubygems