# HG changeset patch # User HackBot # Date 1455086384 0 # Node ID 13a2a618bea0277c6b51e32b49d0ed8b9f1cac13 # Parent 187d003817ca3311552810c7f3f325ea8037d77b overwrite bin/tomfoolery = if [ -z "$1" ];then exec echo "I have nothing to tell you.";fi;f="tmflry/$(echo "$1" | lowercase)";if [ -h "$f" ];then exec tomfoolery `readlink "$f" | sed \'s/^tmflry\\///\'`;fi;if [ -x "$f" ];then exec bash "$f";fi;if [ -r "$f" ];then exec cat "$f";fi;echo "I must confess, I know not of what you are speaking." diff -r 187d003817ca -r 13a2a618bea0 bin/tomfoolery --- a/bin/tomfoolery Wed Feb 10 06:39:33 2016 +0000 +++ b/bin/tomfoolery Wed Feb 10 06:39:44 2016 +0000 @@ -1,1 +1,1 @@ -if [ -z "$1" ];then exec echo "I have nothing to tell you.";fi;f="tmflry/$1";if [ -h "$f" ];then exec tomfoolery `readlink "$f" | sed 's/^tmflry\///'`;fi;if [ -x "$f" ];then exec bash "$f";fi;if [ -r "$f" ];then exec cat "$f";fi;? "$1" +if [ -z "$1" ];then exec echo "I have nothing to tell you.";fi;f="tmflry/$(echo "$1" | lowercase)";if [ -h "$f" ];then exec tomfoolery `readlink "$f" | sed 's/^tmflry\///'`;fi;if [ -x "$f" ];then exec bash "$f";fi;if [ -r "$f" ];then exec cat "$f";fi;echo "I must confess, I know not of what you are speaking."