Skip to content

Instantly share code, notes, and snippets.

@earnhardt3rd
Created June 19, 2023 13:56
Show Gist options
  • Select an option

  • Save earnhardt3rd/bdb238c7df5de9a1d9ed31406be09c9f to your computer and use it in GitHub Desktop.

Select an option

Save earnhardt3rd/bdb238c7df5de9a1d9ed31406be09c9f to your computer and use it in GitHub Desktop.
require 'getopts.pl';
Getopts('m:d:t');
my $MODE = uc($opt_m) || "";
my $DEBUG = $opt_d || 0;
if (defined $opt_t) { my %TEST = &ENV_2_HASH();}
1;
sub ENV_2_HASH {
my $env_tag = shift || "PATH";
my $env_sep = shift || "";
my $env_trn = shift || "";
if ($env_sep eq "") {
if (lc($^O) =~ /win/) {
$env_sep=";"
} else {
$env_sep=":";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment