Skip to content

Instantly share code, notes, and snippets.

@gmelodie
Last active August 6, 2020 23:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gmelodie/0830c03eee0addb44073cc93dc02dd94 to your computer and use it in GitHub Desktop.
Save gmelodie/0830c03eee0addb44073cc93dc02dd94 to your computer and use it in GitHub Desktop.
Copy the contents of a file to X's clipboard (wrapping for "xclip -selection c")
# example: ./xcreep.sh somefile.txt
if [ $# -ne 1 ]
then
echo "usage: $0 <INPUTFILE>"
exit 1
fi
INPUTFILE=$1
cat $INPUTFILE | xclip -selection c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment