Skip to content

Instantly share code, notes, and snippets.

@technmsg
Last active November 25, 2016 16:26
Show Gist options
  • Save technmsg/1d7fde43c3b80db9dce3 to your computer and use it in GitHub Desktop.
Save technmsg/1d7fde43c3b80db9dce3 to your computer and use it in GitHub Desktop.
TweetNull -- a Twitter client just for Sean
#!/bin/sh
# It ain't an application without usage.
if [ -z $1 ] ; then
echo "Usage: $0 <tweet body>"
exit 1
fi
# Tweet that mutha.
echo "tweeting: $@"
# Just to be thorough.
echo $@ > /dev/null
exit 0
# EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment