Hi :)

The app requires the Database at /home/$USER/ (Replace the $USER with username or value of echo $USER)

Hi :) See File::UserConfig, its File::HomeDir + File::ShareDir

see example https://metacpan.org/source/CRZEDPSYC/App-DuckPAN-0.137

So :)

App-Wordzilla/bin/ App-Wordzilla/lib/App/Wordzilla.pm App-Wordzilla/share/Wordzilla.sqlite App-Wordzilla/MANIFEST App-Wordzilla/Makefile.PL App-Wordzilla/README.md

Then to create installable package (a tarball) run perl Makefile.PL && make dist

Then to install (if you upload to cpan)  cpan App::Wordzilla
or cpanm git://github.com/tirkarthi/Wordzilla-Perl
or cpan ./App-Wordzilla-0.01.tar.gz

Other comments,

See dict for a nice interface :) prompting is laborious :) options are always more fun that prompting :) ... The Dynamic Duo --or-- Holy Getopt::Long, Pod::UsageMan!

 my $choice = <STDIN>; ... ..

If you're keen on prompting, see ExtUtils::MakeMaker::prompt

Also bin/wordzilla becomes

#!/usr/bin/perl -- use strict; use warnings; use App::Wordzilla; App::Wordzilla::run( @ARGV ); exit( 0 );

And you've got yourself a "CPAN" style distribution

If you're interested, I offer you ?node_id=3989;HIT=module;re=N;Tu;M,


In reply to Re: Terminal based Offline Dictionary in Perl by Anonymous Monk
in thread Terminal based Offline Dictionary in Perl by xtreak

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.