]> nmode's Git Repositories - Fey/blobdiff - script/fey
Add Makefile.PL
[Fey] / script / fey
index bba93c7fb37e984e49805328c75fa5676ccb8acc..490366d8d5ad02e465eeb12838b6b5f015902c65 100644 (file)
@@ -7,12 +7,18 @@ use Getopt::Long;
 use App::Fey qw(fey);
 
 my $options = {
+    context => undef,
     fork => 0,
+    group => 0,
+    interactive => 0,
     single => 0
 };
 
 GetOptions(
+    'c|context:s' => \$options->{context},
     'f|fork' => \$options->{fork},
+    'g|group' => \$options->{group},
+    'i|interactive' => \$options->{interactive},
     's|single' => \$options->{single}
 );