ubuntu ruby get clipboard text code example
Example: copy to clipboard in ruby in windows
def pbcopy(input)
str = input.to_s
IO.popen('clip', 'w') { |f| f << str }
str
end
def pbpaste
`pbpaste`
end
def pbcopy(input)
str = input.to_s
IO.popen('clip', 'w') { |f| f << str }
str
end
def pbpaste
`pbpaste`
end