When I asked people if they knew of a dict.org command line client, no one mentioned that Net::Dict existed. Here's a copy of the original source.

use strict; use warnings; use HTML::FormatText; use WWW::Mechanize; main( @ARGV ); exit; sub main { initialize( @_ ); for ( @_ ) { my $def = HTML::FormatText->format_string( WebClient::Dict_org::define( $_ ) ); $def =~ s/\A.+-{30,}[\r\n]+(.+)^\s*-{30,}.+/$1/ms; print $def; } 1; } sub initialize { $| = 1; 1; } package WebClient::Dict_org; use WWW::Mechanize; our $DEFAULT_URL; INIT { $DEFAULT_URL = 'http://dict.org' } sub define { site_define( $DEFAULT_URL, @_ ) } sub site_define { my $site = shift; my $word = shift; my $browser = WWW::Mechanize->new; $browser->get( $site ); $browser->set_visible( $word ); $browser->click; $browser->content; } __END__ =pod =head1 NAME dict - a simple client for http://dict.org =head1 SYNOPSIS dict insufflation (define-word "insufflation") C-x d =head1 EMACS BINDING Emacs is a great place to bind all sorts things together and this is no exception. Add this to your .emacs file to create the function DEFINE-WORD. If you don't give it a word then it will attempt to define whatever word is currently under your point. (defun define-word (input-word) "Define a word using http://dict.org." (interactive "MWord to define: ") (let ((buf (generate-new-buffer "*dict*")) (word (if (> (length input-word) 0) input-word (current-word)))) (shell-command (concat "~/bin/dict " word) buf) buf)) The following command binds C-x d to the function. (global-set-key "\C-xd" 'define-word) =end

In reply to Re^2: dict.org cli lookup by diotalevi
in thread dict.org cli lookup by diotalevi

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.