Skip to content

Instantly share code, notes, and snippets.

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 matthewstokeley/a9ad8fe4228aed4e9a2ffc5cedc025f2 to your computer and use it in GitHub Desktop.
Save matthewstokeley/a9ad8fe4228aed4e9a2ffc5cedc025f2 to your computer and use it in GitHub Desktop.
# working with text in bash
# paste string into a text file
echo string > textfile
# export stdout to a text file
command > textfile
# copy contents of a text file
cat filename > /dev/clipboard
# view clipboard
cat /dev/clipboard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment