App-FzfUtils
view release on metacpan or search on metacpan
script/cs-select-helper view on Meta::CPAN
#!perl
use 5.010;
use strict;
use warnings;
my $prog = "cs-select-helper";
if (@ARGV < 2) {
die "$prog: Usage: $0 <jsonfile> <content>...\n";
}
my $jsonfile = shift @ARGV;
my $content = join " ", @ARGV;
my ($id) = $content =~ /\[id=(\d+)\]/
or die "$prog: Content does not contain id=<number>\n";
my $data;
{
open my $fh, "<", $jsonfile or die "$prog: Cannot open file $jsonfile: $!\n";
local $/;
my $content = <$fh>;
require JSON::PP;
$data = JSON::PP::decode_json($content);
close $fh;
}
ref($data) eq 'HASH' or die "$prog: Data in JSON file '$jsonfile' is not a hash\n";
$data->{$id} or die "$prog: ID '$id' not known in JSON file '$jsonfile'\n";
require Clipboard::Any;
my $res = Clipboard::Any::add_clipboard_content(content => $data->{$id});
$res->[0] == 200 or die "$prog: Cannot add to clipboard: $res->[0] - $res->[1]\n";
1;
# ABSTRACT: cs-select helper script
# PODNAME: cs-select-helper
__END__
=pod
=encoding UTF-8
=head1 NAME
cs-select-helper - cs-select helper script
=head1 VERSION
This document describes version 0.003 of cs-select-helper (from Perl distribution App-FzfUtils), released on 2026-04-09.
=head1 SYNOPSIS
Used by L<cs-select>.
=head1 HOMEPAGE
Please visit the project's homepage at L<https://metacpan.org/release/App-FzfUtils>.
=head1 SOURCE
Source repository is at L<https://github.com/perlancar/perl-App-FzfUtils>.
=head1 SEE ALSO
L<cs-select>.
=head1 AUTHOR
perlancar <perlancar@cpan.org>
=head1 CONTRIBUTING
To contribute, you can send patches by email/via RT, or send pull requests on
GitHub.
Most of the time, you don't need to build the distribution yourself. You can
simply modify the code, then test via:
% prove -l
If you want to build the distribution (e.g. to try to install it locally on your
system), you can install L<Dist::Zilla>,
L<Dist::Zilla::PluginBundle::Author::PERLANCAR>,
L<Pod::Weaver::PluginBundle::Author::PERLANCAR>, and sometimes one or two other
Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required beyond
that are considered a bug and can be reported to me.
=head1 COPYRIGHT AND LICENSE
( run in 1.663 second using v1.01-cache-2.11-cpan-84e82930d8c )