There are lots of different ways to do this. JSON, YAML, XML, INI (simpler), .properties as mentioned by salva, even Perl (/shameless plug), and many more (see e.g. the Config:: namespace on CPAN). As for locating the files in the filesystem, there's also lots of ways to do this. Hardcoded paths (e.g. in /etc or perhaps /usr/local/etc), paths relative to the script's location via FindBin plus File::Spec or e.g. Path::Class for filename manipulations, having the config in the user's $HOME ($ENV{HOME} in Perl), in Windows via the registry, passing the config filename on the command line or in an environment variable, something as simple as the current working directory, or for example if you're running inside Docker, Docker secrets.

Update: Expanded the lists above a little bit.


In reply to Re: Properties files to read the tokes and passwords outside of the perl scripts. by haukex
in thread Properties files to read the tokes and passwords outside of the perl scripts. by chandantul

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.