X-Git-Url: https://git.nmode.ca/Fey/blobdiff_plain/a36e9479b2f84cc9b4e5b92e304ca2fac8ac8608..HEAD:/script/fey diff --git a/script/fey b/script/fey index a612187..490366d 100644 --- a/script/fey +++ b/script/fey @@ -7,14 +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} );