dotfiles/zsh/func/wiki

13 lines
151 B
Text
Raw Normal View History

2011-05-03 21:53:50 -07:00
#!/bin/zsh
# vim:ft=zsh
wiki ()
{
if [[ $1 == "" ]]; then
echo "Usage: wiki [term]"
else
dig +short txt $1.wp.dg.cx
fi
}