Pick->Select rename. Integration tests changes. (#1725)

Pick->Select rename. Integration tests changes.
This commit is contained in:
Andrés N. Robalino
2020-05-07 06:03:43 -05:00
committed by GitHub
parent c3efdf2689
commit 96e5fc05a3
78 changed files with 380 additions and 411 deletions

View File

@ -18,13 +18,13 @@ Syntax: `save (path) {flags}`
You can save the name of files in a directory like this:
```shell
> ls | where type == File | pick name | save filenames.csv
> ls | where type == File | select name | save filenames.csv
```
Or you can format it in supported formats using one of the `to` commands:
```shell
> ls | where type == File | pick name | to csv | save filenames
> 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.