Skip to content

Instantly share code, notes, and snippets.

@kgriffs
Last active April 8, 2021 01:16
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kgriffs/204f7e2a55c039ba06cb to your computer and use it in GitHub Desktop.
Save kgriffs/204f7e2a55c039ba06cb to your computer and use it in GitHub Desktop.
Shrug-o-matic: Save to /usr/local/bin and make executable
#/usr/bin/env bash
SHRUG="¯\_(ツ)_/¯"
if [ -t 1 ]
then
echo $SHRUG
else
# For piping to your clipboard (e.g., "shrug | pbcopy") or elsewhere
echo $SHRUG | tr -d '\n'
fi
@kgriffs
Copy link
Author

kgriffs commented Feb 10, 2016

Because... ¯\_(ツ)_/¯

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment