Last active
November 25, 2016 16:26
-
-
Save technmsg/1d7fde43c3b80db9dce3 to your computer and use it in GitHub Desktop.
TweetNull -- a Twitter client just for Sean
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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