From: Naeem Model Date: Wed, 28 May 2025 01:29:48 +0000 (+0000) Subject: Add fey script X-Git-Url: https://git.nmode.ca/Fey/commitdiff_plain/e3c49f42120ae4383e7d34bf58325470288a0ae5 Add fey script --- 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;