git://git.exim.org
/
users
/
heiko
/
exim.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix taint-checking on OpenBSD
[users/heiko/exim.git]
/
src
/
src
/
exigrep.src
diff --git
a/src/src/exigrep.src
b/src/src/exigrep.src
index 1899267be74d048bef2d313f7b8fe9e876582787..afd3538b69b4e55eddbd1f2fc391eaa3be325073 100644
(file)
--- a/
src/src/exigrep.src
+++ b/
src/src/exigrep.src
@@
-5,9
+5,10
@@
use strict;
BEGIN { pop @INC if $INC[-1] eq '.' };
use Pod::Usage;
BEGIN { pop @INC if $INC[-1] eq '.' };
use Pod::Usage;
-use Getopt::Long;
+use Getopt::Long qw(:config no_ignore_case);
+use File::Basename;
-# Copyright (c) 2007-201
5
University of Cambridge.
+# Copyright (c) 2007-201
7
University of Cambridge.
# See the file NOTICE for conditions of use and distribution.
# Except when they appear in comments, the following placeholders in this
# See the file NOTICE for conditions of use and distribution.
# Except when they appear in comments, the following placeholders in this
@@
-229,6
+230,12
@@
GetOptions(
-noperldoc => system('perldoc -V 2>/dev/null >&2')
);
},
-noperldoc => system('perldoc -V 2>/dev/null >&2')
);
},
+ 'version' => sub {
+ print basename($0) . ": $0\n",
+ "build: EXIM_RELEASE_VERSIONEXIM_VARIANT_VERSION\n",
+ "perl(runtime): $]\n";
+ exit 0;
+ },
) and @ARGV or pod2usage;
$pattern = shift @ARGV;
) and @ARGV or pod2usage;
$pattern = shift @ARGV;
@@
-237,7
+244,8
@@
$pattern = quotemeta $pattern if $literal;
# Start a pager if output goes to a terminal
if (-t 1 and $use_pager)
{
# Start a pager if output goes to a terminal
if (-t 1 and $use_pager)
{
- foreach ($ENV{PAGER}//(), 'less', 'more')
+ # for perl >= v5.10.x: foreach ($ENV{PAGER}//(), 'less', 'more')
+ foreach (defined $ENV{PAGER} ? $ENV{PAGER} : (), 'less', 'more')
{
local $ENV{LESS} .= ' --no-init --quit-if-one-screen';
open(my $pager, '|-', $_) or next;
{
local $ENV{LESS} .= ' --no-init --quit-if-one-screen';
open(my $pager, '|-', $_) or next;
@@
-346,7
+354,7
@@
Do not use a pager, even if STDOUT is connected to a terminal.
=item B<-h>|B<--help>
Print a short reference help. For more detailed help try L<exigrep(8)>,
=item B<-h>|B<--help>
Print a short reference help. For more detailed help try L<exigrep(8)>,
-or C<exigrep -
m
>.
+or C<exigrep -
-man
>.
=item B<-m>|B<--man>
=item B<-m>|B<--man>