# HG changeset patch # User HackBot # Date 1412223656 0 # Node ID e281f5947a6a16da7fb7510a7e93f126110608ba # Parent 75a32204c931b000e5c55c9b223f552f7bff5d4b ` echo $\'#!/bin/bash\\ntopic=$(echo "$1" | lowercase | cut -d / -f 1)\\n[ -z "$topic" ] && exit 1\\nvalue=$(echo "$1" | cut -d / -f 2-)\\necho "$value" > wisdom/"$topic" && echo "Learned \xc2\xab$topic\xc2\xbb"\' > bin/slashlearn diff -r 75a32204c931 -r e281f5947a6a bin/slashlearn --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bin/slashlearn Thu Oct 02 04:20:56 2014 +0000 @@ -0,0 +1,5 @@ +#!/bin/bash +topic=$(echo "$1" | lowercase | cut -d / -f 1) +[ -z "$topic" ] && exit 1 +value=$(echo "$1" | cut -d / -f 2-) +echo "$value" > wisdom/"$topic" && echo "Learned «$topic»"