fog/Notes.md

46 lines
468 B
Markdown
Raw Normal View History

2018-07-31 10:04:43 +00:00
# Notes
# CLI Commands
2018-08-20 10:12:07 +00:00
* Take piped input.
* `--inplace`
2018-07-31 10:04:43 +00:00
## transform
2018-08-22 15:44:42 +00:00
* Decimals
* Scientific notation resolver
2018-07-31 10:04:43 +00:00
```
transform file column trim,squeeze,upper,lower
--to <new-column-name>
```
## rename
rename + add-headers => xsv?
```
rename file col1,col2 col1,col2
```
## split
2018-08-22 15:44:42 +00:00
Also need the inverse (ex: mat1, mat2, mat3) blank or not
2018-07-31 10:04:43 +00:00
```
split file col
--separator "|"
```
## unique
```
unique file col1,col2
```
## flag
```
flag file col pattern
```