You are not logged in.
Pages: 1
Not a big deal, but the kill binary and kill manual aren't synchronous.
The only things the kill binary can do is (as far as the man is concerned) :
kill pid
kill -s signal pid
kill -signal pid
kill -l
kill -l signal
And cannot do:
kill -L
kill -V
kill -version
because it will use the characters after `-' for the `kill -signal pid' version and fail with unknown signal.
No one cares. But just thought I'd contribute something ![]()
Offline
If you take a closer look to the manpage, you'll find out there's just "kill" and "/bin/kill":
[jan ~]$ /bin/kill -V
kill (procps version 3.2.7)
[jan ~]$ kill -V
bash: kill: V: invalid signal specification
Offline
What are the differences between the two?
Desktop: AMD Athlon64 3800+ Venice Core, 2GB PC3200, 2x160GB Maxtor DiamondMax 10, 2x320GB WD Caviar RE, Nvidia 6600GT 256MB
Laptop: Intel Pentium M, 512MB PC2700, 60GB IBM TravelStar, Nvidia 5200Go 64MB
Offline
the kill binary is a program... the other is a command built into bash. Like the cd command.
Dusty
Offline
the kill binary is a program... the other is a command built into bash. Like the cd command.
Is there a functional difference, or is that it?
Desktop: AMD Athlon64 3800+ Venice Core, 2GB PC3200, 2x160GB Maxtor DiamondMax 10, 2x320GB WD Caviar RE, Nvidia 6600GT 256MB
Laptop: Intel Pentium M, 512MB PC2700, 60GB IBM TravelStar, Nvidia 5200Go 64MB
Offline
Dusty wrote:the kill binary is a program... the other is a command built into bash. Like the cd command.
Is there a functional difference, or is that it?
As far as I know there isn't a difference; a killed process is a killed process. I think you'd have to check the sources of bash and kill to be sure. (The bash sources are quite well set up, IIRC -- I have never had a reason to look at kill).
Dusty
Offline
As far as I know there isn't a difference; a killed process is a killed process. I think you'd have to check the sources of bash and kill to be sure. (The bash sources are quite well set up, IIRC -- I have never had a reason to look at kill).
Think I'll save that one for a rainy day... ![]()
Cheers.
Desktop: AMD Athlon64 3800+ Venice Core, 2GB PC3200, 2x160GB Maxtor DiamondMax 10, 2x320GB WD Caviar RE, Nvidia 6600GT 256MB
Laptop: Intel Pentium M, 512MB PC2700, 60GB IBM TravelStar, Nvidia 5200Go 64MB
Offline
Dusty wrote:As far as I know there isn't a difference; a killed process is a killed process. I think you'd have to check the sources of bash and kill to be sure. (The bash sources are quite well set up, IIRC -- I have never had a reason to look at kill).
Think I'll save that one for a rainy day...
Cheers.
... when you've got some time to KILL? *harharhar*
1000
Offline
... when you've got some time to KILL? *harharhar*
Hang your head in shame.
Desktop: AMD Athlon64 3800+ Venice Core, 2GB PC3200, 2x160GB Maxtor DiamondMax 10, 2x320GB WD Caviar RE, Nvidia 6600GT 256MB
Laptop: Intel Pentium M, 512MB PC2700, 60GB IBM TravelStar, Nvidia 5200Go 64MB
Offline
Pages: 1