1
0
mirror of https://github.com/nushell/nushell.git synced 2025-07-15 13:55:26 +02:00
Hofer-Julian
2023-10-20 18:43:42 +02:00
committed by GitHub
parent 7caf27b665
commit 878f0cf6e1
2 changed files with 3 additions and 3 deletions
crates
nu-command
src
viewers
nu-explore

@ -134,7 +134,7 @@ impl Command for Table {
vec![
Example {
description: "List the files in current directory, with indexes starting from 1.",
example: r#"ls | table -n 1"#,
example: r#"ls | table --start-number 1"#,
result: None,
},
Example {

@ -113,13 +113,13 @@ impl Command for Explore {
},
Example {
description: "Explore a list of Markdown files' contents, with row indexes",
example: r#"glob *.md | each {|| open } | explore -i"#,
example: r#"glob *.md | each {|| open } | explore --index"#,
result: None,
},
Example {
description:
"Explore a JSON file, then save the last visited sub-structure to a file",
example: r#"open file.json | explore -p | to json | save part.json"#,
example: r#"open file.json | explore --peek | to json | save part.json"#,
result: None,
},
]