Progress on a perl version

This commit is contained in:
wasabi
2025-05-29 17:02:32 -05:00
parent 393ec31287
commit 457351034b

View File

@@ -0,0 +1,17 @@
#!/usr/bin/env perl
use strict;
use warnings;
use Getopt::Long;
my $steam_prefix = $ENV{'STEAM_PREFIX'};
my $steamtricks_prefix = $ENV{'STEAMTRICKS_PREFIX'};
my $change_install = '';
my $game = '';
my $version = '';
my @games = split(/,/, $ENV{'SIM_MANAGED_GAMES'});
GetOptions ('steam-prefix=s' => \$steam_prefix,
'change-install' => \$change_install,
'version=s' => \$version);