Skip to content

Instantly share code, notes, and snippets.

@PhilHudson
Created May 21, 2015 19:43
Show Gist options
  • Save PhilHudson/f1414e7ae765339ff5e4 to your computer and use it in GitHub Desktop.
Save PhilHudson/f1414e7ae765339ff5e4 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
# To be called by a GNU screen keybinding
screen_copybuffer_file="${HOME}/tmp/screen-copybuffer"
case "$OSTYPE" in
[Dd]arwin*)
pbcopy < "$screen_copybuffer_file"
;;
*)
xsel -i -b < "$screen_copybuffer_file"
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment