mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 08:53:29 +01:00
96e5fc05a3
Pick->Select rename. Integration tests changes.
799 B
799 B
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:
(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:
> ls | where type == File | select name | save filenames.csv
Or you can format it in supported formats using one of the to
commands:
> ls | where type == File | select name | to csv | save filenames
filename.csv
and filenames
are both csv
formatted files. Nu auto-converts the format if a supported file extension is given.