# HG changeset patch # User HackBot # Date 1370460236 0 # Node ID bb75acbc97c0792b90ff644a848164e427965a33 # Parent 98731c813a7475360e25428f7c99bf8e1732c7f3 sed -i \'s/\\$ARGV\\[0\\]/(join " ", @ARGV)/\' bin/thanks diff -r 98731c813a74 -r bb75acbc97c0 bin/thanks --- a/bin/thanks Wed Jun 05 19:19:50 2013 +0000 +++ b/bin/thanks Wed Jun 05 19:23:56 2013 +0000 @@ -1,2 +1,2 @@ #!/usr/bin/perl -$_ = $ARGV[0] || `words`; s/^\s+|\s+$//g; print "Thanks, $_. "; if (/[aeiouy]/) { s/^[^aeiouy]*/Th/; } else { s/^./T/; } print "$_."; \ No newline at end of file +$_ = (join " ", @ARGV) || `words`; s/^\s+|\s+$//g; print "Thanks, $_. "; if (/[aeiouy]/) { s/^[^aeiouy]*/Th/; } else { s/^./T/; } print "$_."; \ No newline at end of file