Created
December 1, 2011 13:17
-
-
Save io41/1416644 to your computer and use it in GitHub Desktop.
This file contains 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
# Add this self removing snippet to someone's .bashrc, or .zshrc. #DELETEME | |
# So next time they ssh in, or open a terminal... NYAN CAT!! #DELETEME | |
CONF_FILE=$HOME/.bashrc #DELETEME | |
(sleep 15 && killall telnet > /dev/null 2>&1) & #DELETEME | |
telnet miku.acm.uiuc.edu #DELETEME | |
reset #DELETEME | |
clear #DELETEME | |
sed '/#DELETEME/d' $CONF_FILE > /tmp/$(basename $CONF_FILE) #DELETEME | |
cat /tmp/$(basename $CONF_FILE) > $CONF_FILE #DELETEME | |
rm -f /tmp/$(basename $CONF_FILE) #DELETEME |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment