You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What I expected to happen: GNU coreutils kill sends the signal 0 to the process and terminates successfully. The -n argument is undocumented, but allowed for compatibility with the bash built-in command kill.
What happens now: uutils kill complains that the -n argument is unexpected:
error: unexpected argument '-n' found
tip: to pass '-n' as a value, use '-- -n'
Usage: ./target/debug/kill [OPTIONS]... PID...
For more information, try '--help'.
Notes: this is causing a failure in the GNU test file tests/misc/kill.sh.
The text was updated successfully, but these errors were encountered:
Environment: Ubuntu 20.04, uutils main branch (git commit 88cdf16), GNU coreutils v9.5.227-28b1
Steps to reproduce:
$$
in bash is the PID of the current shell, according to https://www.gnu.org/software/bash/manual/html_node/Special-Parameters.html.What I expected to happen: GNU coreutils
kill
sends the signal 0 to the process and terminates successfully. The-n
argument is undocumented, but allowed for compatibility with the bash built-in commandkill
.What happens now: uutils
kill
complains that the-n
argument is unexpected:Notes: this is causing a failure in the GNU test file
tests/misc/kill.sh
.The text was updated successfully, but these errors were encountered: