Skip to content

Instantly share code, notes, and snippets.

@kejadlen
Created July 24, 2012 23:43
Show Gist options
  • Save kejadlen/3173447 to your computer and use it in GitHub Desktop.
Save kejadlen/3173447 to your computer and use it in GitHub Desktop.
if $cygwin; then
alias pbpaste=/home/alphach/bin/pbpaste.cmd
alias pbcopy=/home/alphach/bin/pbcopy.cmd
fi
@ruby "c:/Documents and Settings/alphach.redmond/bin/pbcopy.rb"
#!/usr/bin/env ruby
require 'win32/clipboard'
Win32::Clipboard.set_data(ARGF.read)
@ruby "c:/Documents and Settings/alphach.redmond/bin/pbpaste.rb"
#!/usr/bin/env ruby
require 'win32/clipboard'
puts Win32::Clipboard.data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment