mirror of
https://github.com/nushell/nushell
synced 2024-12-28 14:03:09 +00:00
22 lines
796 B
Markdown
22 lines
796 B
Markdown
|
# to-csv
|
||
|
|
||
|
Converts table data into csv text.
|
||
|
|
||
|
## Example
|
||
|
|
||
|
```shell
|
||
|
> shells
|
||
|
━━━┯━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━━━━━━━━
|
||
|
# │ │ name │ path
|
||
|
───┼───┼────────────┼────────────────────────
|
||
|
0 │ X │ filesystem │ /home/shaurya
|
||
|
1 │ │ filesystem │ /home/shaurya/Pictures
|
||
|
2 │ │ filesystem │ /home/shaurya/Desktop
|
||
|
━━━┷━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━━━━━━━━
|
||
|
> shells | to-csv
|
||
|
,name,path
|
||
|
X,filesystem,/home/shaurya
|
||
|
,filesystem,/home/shaurya/Pictures
|
||
|
,filesystem,/home/shaurya/Desktop
|
||
|
```
|