mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-13 10:02:38 +00:00
always warn if no processes matched
This commit is contained in:
parent
fffad2951a
commit
827bf2db99
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=14015
@ -30,7 +30,7 @@
|
||||
#
|
||||
# killall - kill processes by name
|
||||
#
|
||||
# $Id: killall.pl,v 1.4 1996/02/03 21:49:56 wosch Exp $
|
||||
# $Id: killall.pl,v 1.3 1996/02/03 22:52:27 wosch Exp $
|
||||
#
|
||||
|
||||
$ENV{'PATH'} = '/bin:/usr/bin'; # security
|
||||
@ -102,7 +102,7 @@ foreach (sort{$a <=> $b} grep(/^[0-9]/, readdir(PROCFS))) {
|
||||
closedir PROCFS;
|
||||
|
||||
if ($#kill < 0) { # nothing found
|
||||
print "No matching process.\n" if $debug || $show;
|
||||
warn "No matching processes ``$program''.\n";
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user