Skip to content

Instantly share code, notes, and snippets.

@heywoodlh
Created October 3, 2022 16:54
Show Gist options
  • Save heywoodlh/d3ccf4723d260d7300e6bfa648cdc74c to your computer and use it in GitHub Desktop.
Save heywoodlh/d3ccf4723d260d7300e6bfa648cdc74c to your computer and use it in GitHub Desktop.
Cross-platform (MacOS, Linux, FreeBSD) pbcopy
#!/usr/bin/env bash
if uname -a | grep -iq Darwin &>/dev/null
then
/usr/bin/pbcopy
else
xclip -r -selection clipboard
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment