-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
Description
When running GNU kill without a PID, it fails and shows an error message:
$ ~/projects/gnu/src/kill
/home/dho/projects/gnu/src/kill: no process ID specified
Try '/home/dho/projects/gnu/src/kill --help' for more information.
$ echo $?
1
uutils kill, on the other hand, doesn't fail and there is no output:
$ cargo run --features=unix kill
$ echo $?
0