1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

env: extend help for --null

This commit is contained in:
Reto Habluetzel 2019-04-28 12:53:17 +02:00
parent 2d2042c8fc
commit 905d01623d

2
src/env/env.rs vendored
View file

@ -47,7 +47,7 @@ pub fn uumain(args: Vec<String>) -> i32 {
.optflag( .optflag(
"0", "0",
"null", "null",
"end each output line with a 0 byte rather than newline", "end each output line with a 0 byte rather than newline (only valid when printing the environment)",
) )
.optopt("u", "unset", "remove variable from the environment", "NAME"); .optopt("u", "unset", "remove variable from the environment", "NAME");