-
-
Save janlelis/781835 to your computer and use it in GitHub Desktop.
Easy access to your clipboard
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'rubygems' unless defined? Gem | |
require 'clipboard' | |
if $stdin.tty? && $*.empty? | |
puts Clipboard.paste # the trailing new-line is intended ;) | |
else | |
Clipboard.copy ARGF.read | |
end | |
# J-_-L |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment