in reply to Re^2: For the life of me, i can't figure out this "use strict" variable problem
in thread For the life of me, i can't figure out this "use strict" variable problem
which is a simple: my $config_file = shift || "etc/allweb-backup.conf"; Same results, cleaner code (IMHO).my $config_file = shift; if (!$config_file) { $config_file = "etc/allweb-backup.conf"; }
|
|---|