def pbcopy(input) str = input.to_s IO.popen('clip', 'w') { |f| f << str } str end def pbpaste `pbpaste` end