Skip to content

Instantly share code, notes, and snippets.

@Lucretiel
Last active October 5, 2021 16:22
Show Gist options
  • Save Lucretiel/71f768cac99ffac3b9e0 to your computer and use it in GitHub Desktop.
Save Lucretiel/71f768cac99ffac3b9e0 to your computer and use it in GitHub Desktop.
Pipe stuff into your terminal's clipboard
#!/bin/sh
# Copy some stuff to the term clipboard
stuff="$(base64 -w0)"
exec echo -en "\x1b]52;c;${stuff}\x07"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment