Skip to content

Instantly share code, notes, and snippets.

@elwinar
Created February 13, 2015 09:03
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save elwinar/163c537cc9637219b3df to your computer and use it in GitHub Desktop.
Save elwinar/163c537cc9637219b3df to your computer and use it in GitHub Desktop.
Shortcut to pipe from and to clipboard using xclip
#!/bin/bash
# Linux version
# Use this script to pipe in/out of the clipboard
#
# Usage: someapp | clip # Pipe someapp's output into clipboard
# clip | someapp # Pipe clipboard's content into someapp
#
if command -v xclip 1>/dev/null; then
if [[ -p /dev/stdin ]] ; then
# stdin is a pipe
# stdin -> clipboard
xclip -i -selection clipboard
else
# stdin is not a pipe
# clipboard -> stdout
xclip -o -selection clipboard
fi
else
echo "Remember to install xclip"
fi
@dmarcelino
Copy link

That makes things simpler. Thanks and well done! 👍

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