Use proper file extension for uniq command docs (#1411)

This commit is contained in:
Shaurya Shubham 2020-02-18 20:07:46 +05:30 committed by GitHub
parent 18d988d4c8
commit bd6556eee1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,18 +19,18 @@ Yehuda,Katz,10/11/2013,A
━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━
# │ first_name │ last_name │ rusty_at │ type
───┼────────────┼───────────┼────────────┼──────
0 │ Andrés │ Robalino │ 10/11/2013 │ A
1 │ Jonathan │ Turner │ 10/12/2013 │ B
2 │ Yehuda │ Katz │ 10/11/2013 │ A
0 │ Andrés │ Robalino │ 10/11/2013 │ A
1 │ Jonathan │ Turner │ 10/12/2013 │ B
2 │ Yehuda │ Katz │ 10/11/2013 │ A
━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━
```
```
> `open test.csv | get type | uniq`
━━━┯━━━━━━━━━
# │ <value>
# │ <value>
───┼─────────
0 │ A
1 │ B
0 │ A
1 │ B
━━━┷━━━━━━━━━
```