Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

NAME
App::grep::url - Print lines having URL(s) (optionally of certain
criteria) in them
VERSION
This document describes version 0.004 of App::grep::url (from Perl
distribution App-grep-url), released on 2021-08-01.
FUNCTIONS
grep_url
Usage:
grep_url(%args) -> [$status_code, $reason, $payload, \%result_meta]
Print lines having URL(s) (optionally of certain criteria) in them.
This is a grep-like utility that greps for URLs of certain criteria.
This function is not exported.
Arguments ('*' denotes required arguments):
* color => *str* (default: "auto")
* count => *true*
Supress normal output, return a count of matching lines.
* files => *array[filename]*
* host_contains => *str*
* host_matches => *re*
* host_not_contains => *str*
* ignore_case => *bool*
* invert_match => *bool*
Invert the sense of matching.
* line_number => *true*
* max_urls => *int* (default: -1)
* min_urls => *uint* (default: 1)
* path_contains => *str*
* path_matches => *re*
* path_not_contains => *str*
* query_param_contains => *hash*
* query_param_matches => *hash*
* query_param_not_contains => *hash*
* quiet => *true*
* scheme_contains => *str*
* scheme_matches => *re*
* scheme_not_contains => *str*
* schemes => *array[str]* (default: ["http","file"])
Returns an enveloped result (an array).
First element ($status_code) is an integer containing HTTP-like status
code (200 means OK, 4xx caller error, 5xx function error). Second
element ($reason) is a string containing error message, or something
like "OK" if status is 200. Third element ($payload) is the actual
result, but usually not present when enveloped result is an error
response ($status_code is not 2xx). Fourth element (%result_meta) is
called result metadata and is optional, a hash that contains extra
information, much like how HTTP response headers provide additional
metadata.
Return value: (any)
HOMEPAGE
Please visit the project's homepage at
SOURCE
Source repository is at
BUGS
Please report any bugs or feature requests on the bugtracker website
When submitting a bug or request, please include a test-file or a patch
to an existing test-file that illustrates the bug or desired feature.
AUTHOR
perlancar <perlancar@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2021 by perlancar@cpan.org.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.