Skip to content

Instantly share code, notes, and snippets.

@bhb

bhb/c

Created March 11, 2015 19:44
Show Gist options
  • Save bhb/94b3199a383aa354ac2c to your computer and use it in GitHub Desktop.
Save bhb/94b3199a383aa354ac2c to your computer and use it in GitHub Desktop.
Copy text into clipboard
#! /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