Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
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":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (4)
As of 2024-04-23 22:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found