Skip to content

Instantly share code, notes, and snippets.

@cybic
Created January 13, 2015 15:10
Show Gist options
  • Save cybic/751eb664fe82b0f8990d to your computer and use it in GitHub Desktop.
Save cybic/751eb664fe82b0f8990d to your computer and use it in GitHub Desktop.
Pipe text to this to copy to OS X pasteboard/clipboard using iTerm2 escape sequences
#!/usr/bin/perl
#
# Copy to OS X Clipboard using iterm2 escape chars
print "\e]50;CopyToClipboard\a";
while (<>) {
print;
}
print "\e]50;EndCopy\a";
@vnys
Copy link

vnys commented Jan 15, 2015

Nice 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment