--- /dev/null
+#!/usr/bin/env bash
+# This is all required for working with module installation from the shell.
+# And later to run tests and have a test driven application development, setup.
+#
+# If using perlbrew with the test, sometimes this setup is required from the shell:
+# $ export PerlCNF_TESTS_PATH=tests
+# And run test with:
+# $ perlbrew exec perl -Mlocal::lib tests/testAll.pl
+# Instead of:
+# $ perl tests/testAll.pl#
+# As latert Perl v5.36+ version should work fine without the install of local::lib.
+#
+perl -MCPAN -e 'CPAN::install(local::lib)'
+perl -MCPAN -Mlocal::lib -e 'CPAN::install(LWP)'
+perl -MCPAN -Mlocal::lib -e 'CPAN::install(Text::Levenshtein::XS)'
+perl -MCPAN -Mlocal::lib -e 'CPAN::install(Term::Term:)'
+perl -MCPAN -Mlocal::lib -e 'CPAN::install(Term::ReadKey)'
+./install_cpan_modules_required.pl