Skip to content

Commit 2b44514

Browse files
author
Max Murphy-Skvorzov
committed
README++
1 parent 945bd6a commit 2b44514

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,17 @@ Then:
2828

2929
Use `--help` or refer to the markdown files:
3030

31+
### Manipulate jlines
3132
* [clean](./bin/clean.md) - keeps only well formed JSON lines
32-
* [csv](./bin/csv.md) - converts to csv
3333
* [filter](./bin/filter.md) - Keeps only the records you choose.
3434
* [parsePath](./bin/parsePath.md) `'abba.cadabba[4].u' -> ['abba','cadabba',4,'u']`
3535
* [sort](./bin/sort.md) - sorts by a given key.
3636
* [select](./bin/select.md) - Selects just a few fields from each record.
37-
* [pretty](./bin/pretty.md) - Pretty prints the JSON.
37+
38+
### Power Tools
39+
* [map](./bin/map.md) - Execute arbitrary code for each record and print the updated record.
3840
* [foreach](./bin/foreach.md) - Execute arbitrary code for each record. Awk for JSON lines.
41+
42+
### Output
43+
* [pretty](./bin/pretty.md) - Pretty prints the JSON.
44+
* [csv](./bin/csv.md) - converts to csv

bin/map.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ To demonstrate we will apply the filter to just one line:
2828

2929
### See also
3030

31-
For a more general and more powerful alternative, see `json-foreach`.
31+
For a more general and more powerful alternative, see [`json-foreach`](foreach.md).
3232

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jline",
3-
"version": "0.0.13",
3+
"version": "0.0.14",
44
"description": "Sort, grep and join files where every line is JSON.",
55
"main": "index.js",
66
"bin": {

0 commit comments

Comments
 (0)