English dictionary

I know it's not exactly what you want, but I often use this shell function:
Code:
function lookup() {
# Check if curl is installed
if [ ! -x "/usr/local/bin/curl" ] ; then
  echo "Error: curl is no installed on your system"
   exit 1
fi

curl dict://dict.org/d:"$*"
}
 
Back
Top