Add long options for formats (#10645)

This commit is contained in:
Hofer-Julian
2023-10-08 19:07:09 +02:00
committed by GitHub
parent e427c68731
commit 765b303689
9 changed files with 9 additions and 9 deletions

View File

@ -62,7 +62,7 @@ impl Command for FromOds {
},
Example {
description: "Convert binary .ods data to a table, specifying the tables",
example: "open --raw test.ods | from ods -s [Spreadsheet1]",
example: "open --raw test.ods | from ods --sheets [Spreadsheet1]",
result: None,
},
]

View File

@ -53,7 +53,7 @@ impl Command for FromSsv {
)),
}, Example {
example: r#"'FOO BAR
1 2' | from ssv -n"#,
1 2' | from ssv --noheaders"#,
description: "Converts ssv formatted string to table but not treating the first row as column names",
result: Some(
Value::list(

View File

@ -93,7 +93,7 @@ impl Command for FromTsv {
},
Example {
description: "Create a tsv file without header columns and open it",
example: r#"$'a1(char tab)b1(char tab)c1(char nl)a2(char tab)b2(char tab)c2' | save tsv-data | open tsv-data | from tsv -n"#,
example: r#"$'a1(char tab)b1(char tab)c1(char nl)a2(char tab)b2(char tab)c2' | save tsv-data | open tsv-data | from tsv --noheaders"#,
result: None,
},
Example {

View File

@ -62,7 +62,7 @@ impl Command for FromXlsx {
},
Example {
description: "Convert binary .xlsx data to a table, specifying the tables",
example: "open --raw test.xlsx | from xlsx -s [Spreadsheet1]",
example: "open --raw test.xlsx | from xlsx --sheets [Spreadsheet1]",
result: None,
},
]