Skip to content

Instantly share code, notes, and snippets.

@jaydonnell
Created May 9, 2011 21:30
Show Gist options
  • Save jaydonnell/963461 to your computer and use it in GitHub Desktop.
Save jaydonnell/963461 to your computer and use it in GitHub Desktop.
stdin
puts "give me a command (q to quit):"
STDOUT.flush
while(input = gets)
break if input.strip == 'q'
puts `#{input}`
puts "give me a command:"
STDOUT.flush
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment