-
-
Save bhb/94b3199a383aa354ac2c to your computer and use it in GitHub Desktop.
Copy text into 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 | |
# file: ~/bin/c | |
# | |
# usage: highlight lines and pipe them to stdout in your editor. nothing | |
# changes except they are copied to your paste buffer. should be modified to | |
# work with linux using xclip | |
$VERBOSE=nil | |
STDOUT.sync = true | |
STDERR.sync = true | |
unless ARGV.empty? | |
buf = ARGF.read | |
STDOUT.write buf | |
else | |
buf = '' | |
begin | |
while((c = STDIN.readpartial(1))) | |
print c | |
buf << c | |
end | |
rescue EOFError | |
:ignore | |
end | |
end | |
fork{ fork{ IO.popen('pbcopy', 'w'){|fd| fd.write buf} }; exit!(0) } | |
exit(0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment