X-Git-Url: https://git.nmode.ca/Fey/blobdiff_plain/5646894a3a7d5c653d400f9e311438761dcf218e..e3c49f42120ae4383e7d34bf58325470288a0ae5:/script/fey diff --git a/script/fey b/script/fey new file mode 100644 index 0000000..bba93c7 --- /dev/null +++ b/script/fey @@ -0,0 +1,19 @@ +#!perl + +use strict; +use warnings; + +use Getopt::Long; +use App::Fey qw(fey); + +my $options = { + fork => 0, + single => 0 +}; + +GetOptions( + 'f|fork' => \$options->{fork}, + 's|single' => \$options->{single} +); + +fey $options, @ARGV;