Diagnostic rewritten in English.

Submitted by: Garrett Wollman <wollman@khavrinen.lcs.mit.edu>
This commit is contained in:
Wolfram Schneider 1998-09-02 10:05:47 +00:00
parent 1134b86422
commit 0f1a6b7b3a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38742

View File

@ -26,7 +26,7 @@
#
# killall - kill processes by name
#
# $Id: killall.pl,v 1.9 1998/01/01 17:24:43 wosch Exp $
# $Id: killall.pl,v 1.10 1998/08/30 16:54:58 wosch Exp $
$ENV{'PATH'} = '/bin:/usr/bin'; # security
@ -112,8 +112,8 @@ closedir PROCFS;
# nothing found
foreach $program (@ARGV) {
if (!$thiskill{"$program"}) {
print STDERR "No matching processes ``$program''";
print STDERR " belonging to you" if $notkillable{"$program"};
print STDERR "No processes matching ``$program''";
print STDERR " belong to you" if $notkillable{"$program"};
print STDERR "\n";
}
}