update.pl 246 B

123456789101112131415
  1. #!/usr/bin/perl -w
  2. use strict;
  3. use FindBin;
  4. use Getopt::Long;
  5. my $python;
  6. GetOptions("python=s" => \$python);
  7. my @command = qw(./planet/planet.py config.ini);
  8. unshift @command, $python if defined($python);
  9. chdir $FindBin::Bin;
  10. exec @command;