- or download this
do "/path/to/config/file.conf";
- or download this
# Config file for a perl script.
$user = 'BazB'
$pass = 'yaright';
$server = 'foo.bar.com';
- or download this
#! /usr/bin/perl -w
...
do "/home/baz/testconfig.conf";
print $server, "\n", $user, "\n", $pass, "\n";
- or download this
Use of uninitialized value in print at ./readconfig.pl line 8.
- or download this
use strict;
my ($server, $user, $pass);
- or download this
Name "main::user" used only once: possible typo at ./readconfig.pl lin
+e 8.