mirror of
https://github.com/nushell/nushell
synced 2024-12-26 13:03:07 +00:00
Use proper file extension for uniq
command docs (#1411)
This commit is contained in:
parent
18d988d4c8
commit
bd6556eee1
1 changed files with 6 additions and 6 deletions
|
@ -19,18 +19,18 @@ Yehuda,Katz,10/11/2013,A
|
||||||
━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━
|
━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━
|
||||||
# │ first_name │ last_name │ rusty_at │ type
|
# │ first_name │ last_name │ rusty_at │ type
|
||||||
───┼────────────┼───────────┼────────────┼──────
|
───┼────────────┼───────────┼────────────┼──────
|
||||||
0 │ Andrés │ Robalino │ 10/11/2013 │ A
|
0 │ Andrés │ Robalino │ 10/11/2013 │ A
|
||||||
1 │ Jonathan │ Turner │ 10/12/2013 │ B
|
1 │ Jonathan │ Turner │ 10/12/2013 │ B
|
||||||
2 │ Yehuda │ Katz │ 10/11/2013 │ A
|
2 │ Yehuda │ Katz │ 10/11/2013 │ A
|
||||||
━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━
|
━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━
|
||||||
```
|
```
|
||||||
|
|
||||||
```
|
```
|
||||||
> `open test.csv | get type | uniq`
|
> `open test.csv | get type | uniq`
|
||||||
━━━┯━━━━━━━━━
|
━━━┯━━━━━━━━━
|
||||||
# │ <value>
|
# │ <value>
|
||||||
───┼─────────
|
───┼─────────
|
||||||
0 │ A
|
0 │ A
|
||||||
1 │ B
|
1 │ B
|
||||||
━━━┷━━━━━━━━━
|
━━━┷━━━━━━━━━
|
||||||
```
|
```
|
Loading…
Reference in a new issue