Skip to content

Instantly share code, notes, and snippets.

@gizmomogwai
Created December 2, 2016 09:39
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 gizmomogwai/1358ea5f74374a3a763994b3194c7320 to your computer and use it in GitHub Desktop.
Save gizmomogwai/1358ea5f74374a3a763994b3194c7320 to your computer and use it in GitHub Desktop.
fish function for copy to clipboard
function copy -d 'copy to clipboard'
switch (uname)
case Linux
xsel --clipboard --input
case Darwin
pbcopy
case '*'
echo "copy not supported for (uname)"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment