dotfiles/zsh/func/wiki
2011-05-03 21:53:50 -07:00

12 lines
151 B
Bash

#!/bin/zsh
# vim:ft=zsh
wiki ()
{
if [[ $1 == "" ]]; then
echo "Usage: wiki [term]"
else
dig +short txt $1.wp.dg.cx
fi
}