I use OS X Terminal.app for the command line, but this question can also apply to other command line tools.
Let's say I want to run this block of ruby āācode from the command line:
Cats.each do |cat| cat.name = 'Mommy' cat.kittens each do |kitten| kitten.color = "Brown" end end
Right now, if I copy / paste, it just breaks and fails.
source share