in reply to Re: Create sort function from a text file
in thread Create sort function from a text file

Thank you for the advice. Seeing as I maintain all instances of the interface, it would be sufficient for me to enable the ability to read the text file within the scripts, but manage the contents of the text files myself. I can then deploy the master version and any updates where needed but keep the custom config files as needed per instance

I really appreciate all the insight here, thank you

  • Comment on Re^2: Create sort function from a text file

Replies are listed 'Best First'.
Re^3: Create sort function from a text file
by LanX (Saint) on Aug 16, 2021 at 12:48 UTC
    the point about

    > > put real Perl code in the "config files"

    is that the maintainer can run static syntax check° on these files to ensure there are no bugs, instead of hoping they don't fail at runtime. Some IDE's even do this automatically for you in the background.

    Putting only broken snippets of code in different files is mostly doomed to fail.

    Cheers Rolf
    (addicted to the Perl Programming Language :)
    Wikisyntax for the Monastery

    °) i.e. perl -c file.pl