diff -r 5a51a3757f5e -r 30bd047cd057 bin/dnssec-keytool --- a/bin/dnssec-keytool Tue May 24 09:40:39 2011 +0200 +++ b/bin/dnssec-keytool Tue May 24 11:05:33 2011 +0200 @@ -39,7 +39,10 @@ "m|man" => sub { pod2usage( -exit => 0, - -noperldoc => system("perldoc -V &>/dev/null"), + # "system('perldoc -V &>/dev/null')" appears shorter, but may not + # do what you expect ( it still returns 0 on debian squeeze with + # dash as system shell even if cannot find the command in $PATH) + -noperldoc => system('perldoc -V >/dev/null 2>&1'), -verbose => 2 ); },