mirror of
https://github.com/xmengnet/the-art-of-command-line.git
synced 2024-12-24 04:26:30 +08:00
One-liner to show colored, normalized JSON diffs.
This commit is contained in:
parent
3d8afef22e
commit
84482aa24d
1 changed files with 5 additions and 0 deletions
|
@ -364,6 +364,11 @@ A few examples of piecing together commands:
|
||||||
sort a b b | uniq -u > c # c is set difference a - b
|
sort a b b | uniq -u > c # c is set difference a - b
|
||||||
```
|
```
|
||||||
|
|
||||||
|
- Pretty-print two JSON files, normalizing their syntax, then coloring and paginating the result:
|
||||||
|
```
|
||||||
|
diff <(jq --sort-keys . < file1.json) <(jq --sort-keys . < file2.json) | colordiff | less -R
|
||||||
|
```
|
||||||
|
|
||||||
- Use `grep . *` to quickly examine the contents of all files in a directory (so each line is paired with the filename), or `head -100 *` (so each file has a heading). This can be useful for directories filled with config settings like those in `/sys`, `/proc`, `/etc`.
|
- Use `grep . *` to quickly examine the contents of all files in a directory (so each line is paired with the filename), or `head -100 *` (so each file has a heading). This can be useful for directories filled with config settings like those in `/sys`, `/proc`, `/etc`.
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue