Use strict; use warnings; use Net::Dict; use vars qw( $DICT $DICT_HOST %DICT_PARAMS ); $DICT_HOST = 'dict.org'; main( @ARGV ); exit; sub main { initialize( @_ ); for my $word ( @_ ) { my $definitions = $DICT->define( $word ); for my $definition ( @$definitions ) { print dictionary_name( $definition->[0] ) . "\n$definition->[1]\n"; } } 1; } sub initialize { $DICT = Net::Dict->new( $DICT_HOST, %DICT_PARAMS ); $| = 1; 1; } { my %dicts; sub dictionary_name { my $dict = shift; $dicts{$dict} ||= $DICT->dbTitle( $dict ); } } __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 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.