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

ls: fix --l option

This commit is contained in:
yt2b 2023-07-08 10:43:20 +09:00
parent 459e4f82ee
commit cf6f7856e4
2 changed files with 4 additions and 1 deletions

View file

@ -1202,6 +1202,7 @@ pub fn uu_app() -> Command {
Arg::new(options::quoting::LITERAL)
.short('N')
.long(options::quoting::LITERAL)
.alias("l")
.help("Use literal quoting style. Equivalent to `--quoting-style=literal`")
.overrides_with_all([
options::QUOTING_STYLE,

View file

@ -22,7 +22,6 @@ use std::time::Duration;
const LONG_ARGS: &[&str] = &[
"-l",
"--long",
"--l",
"--format=long",
"--for=long",
"--format=verbose",
@ -2411,6 +2410,7 @@ fn test_ls_quoting_style() {
("--quoting-style=literal", "one?two"),
("-N", "one?two"),
("--literal", "one?two"),
("--l", "one?two"),
("--quoting-style=c", "\"one\\ntwo\""),
("-Q", "\"one\\ntwo\""),
("--quote-name", "\"one\\ntwo\""),
@ -2435,6 +2435,7 @@ fn test_ls_quoting_style() {
("--quoting-style=literal", "one\ntwo"),
("-N", "one\ntwo"),
("--literal", "one\ntwo"),
("--l", "one\ntwo"),
("--quoting-style=shell", "one\ntwo"), // FIXME: GNU ls quotes this case
("--quoting-style=shell-always", "'one\ntwo'"),
] {
@ -2496,6 +2497,7 @@ fn test_ls_quoting_style() {
("--quoting-style=literal", "one two"),
("-N", "one two"),
("--literal", "one two"),
("--l", "one two"),
("--quoting-style=c", "\"one two\""),
("-Q", "\"one two\""),
("--quote-name", "\"one two\""),