mirror of
https://github.com/nushell/nushell
synced 2025-01-12 13:19:01 +00:00
doc: rename edit command to update (#1774)
This commit is contained in:
parent
9700b74407
commit
cb24a9c7ea
1 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
||||||
# edit
|
# update
|
||||||
|
|
||||||
Edits an existing column on a table. First parameter is the column to edit and the second parameter is the value to put.
|
Updates an existing column on a table. First parameter is the column to update and the second parameter is the value to put.
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ Edits an existing column on a table. First parameter is the column to edit and t
|
||||||
3 │ abaracadabra.txt │ File │ │ 401 B │ a day ago │ a day ago
|
3 │ abaracadabra.txt │ File │ │ 401 B │ a day ago │ a day ago
|
||||||
4 │ youshouldeatmorecereal.txt │ File │ │ 768 B │ a day ago │ a day ago
|
4 │ youshouldeatmorecereal.txt │ File │ │ 768 B │ a day ago │ a day ago
|
||||||
━━━┷━━━━━━━━━━━━━━━━━━━━━━━━━━━━┷━━━━━━┷━━━━━━━━━━┷━━━━━━━━┷━━━━━━━━━━━┷━━━━━━━━━━━
|
━━━┷━━━━━━━━━━━━━━━━━━━━━━━━━━━━┷━━━━━━┷━━━━━━━━━━┷━━━━━━━━┷━━━━━━━━━━━┷━━━━━━━━━━━
|
||||||
> ls | edit modified neverrrr
|
> ls | update modified neverrrr
|
||||||
━━━┯━━━━━━━━━━━━━━━━━━━━━━━━━━━━┯━━━━━━┯━━━━━━━━━━┯━━━━━━━━┯━━━━━━━━━━━┯━━━━━━━━━━
|
━━━┯━━━━━━━━━━━━━━━━━━━━━━━━━━━━┯━━━━━━┯━━━━━━━━━━┯━━━━━━━━┯━━━━━━━━━━━┯━━━━━━━━━━
|
||||||
# │ name │ type │ readonly │ size │ accessed │ modified
|
# │ name │ type │ readonly │ size │ accessed │ modified
|
||||||
───┼────────────────────────────┼──────┼──────────┼────────┼───────────┼──────────
|
───┼────────────────────────────┼──────┼──────────┼────────┼───────────┼──────────
|
||||||
|
@ -35,7 +35,7 @@ Edits an existing column on a table. First parameter is the column to edit and t
|
||||||
0 │ X │ filesystem │ /home/username/stuff/expr/stuff
|
0 │ X │ filesystem │ /home/username/stuff/expr/stuff
|
||||||
1 │ │ filesystem │ /
|
1 │ │ filesystem │ /
|
||||||
━━━┷━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
━━━┷━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
> shells | edit " " X | edit path /
|
> shells | update " " X | update path /
|
||||||
━━━┯━━━┯━━━━━━━━━━━━┯━━━━━━
|
━━━┯━━━┯━━━━━━━━━━━━┯━━━━━━
|
||||||
# │ │ name │ path
|
# │ │ name │ path
|
||||||
───┼───┼────────────┼──────
|
───┼───┼────────────┼──────
|
Loading…
Reference in a new issue