From e3c49f42120ae4383e7d34bf58325470288a0ae5 Mon Sep 17 00:00:00 2001 From: Naeem Model Date: Wed, 28 May 2025 01:29:48 +0000 Subject: [PATCH] Add fey script --- script/fey | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 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; -- 2.50.1