Thank you! I'm trying to create a system-wide config area where I'll place a simple config file and the database file, however, I'm getting all kinds of errors (module not installed and etc)

#!/usr/bin/perl use strict; use File::UserConfig; #use File::ShareDir ':ALL'; use File::Read; my $username = getlogin(); print "user: $username\n"; #my $configdir = File::UserConfig->configdir; my $configdir = File::UserConfig->new( dist => 'Map-Energy', dirname => '.map_energy', module => 'Map::Energy', )->configdir; #my $dir = dist_dir('map_energy'); #my $config_file = dist_file( 'map_energy', 'config/data.txt'); #my $db_file = dist_file( 'map_energy', 'db/mapdata.db'); #my $mapsettings = read_file({ as_root => 1, skip_comments => 1, skip_ +blanks => 1 }, $config_file); #print "map settings: $mapsettings\n"; exit;

In reply to Re^2: perl native db by pashanoid
in thread perl native db by pashanoid

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.