nushell/docs/commands/save.md

31 lines
798 B
Markdown
Raw Normal View History

2019-11-29 18:15:51 +01:00
# save
This command saves the contents of the pipeline to a file. Use this in combination with the `to-json`, `to-csv`, ... commands to save the contents in the specified format.
Syntax: `save (path) {flags}`
## Parameters
2019-11-29 18:15:51 +01:00
* `(path)` the path to save contents to
### Flags
--raw
treat values as-is rather than auto-converting based on file extension
## Example
You can save the name of files in a directory like this:
```shell
> ls | where type == File | select name | save filenames.csv
2019-11-29 18:15:51 +01:00
```
Or you can format it in supported formats using one of the `to` commands:
2019-11-29 18:15:51 +01:00
```shell
> ls | where type == File | select name | to csv | save filenames
2019-11-30 21:07:43 +01:00
```
`filename.csv` and `filenames` are both `csv` formatted files. Nu auto-converts the format if a supported file extension is given.