bcbd40d59791e2eb4c1d0aa2e69d6749d04927d7
compute/data-munging.md
| ... | ... | @@ -8,4 +8,7 @@ Add a newline after every two lines: |
| 8 | 8 | `sed '0~2 s/$/\n/'` |
| 9 | 9 | |
| 10 | 10 | Replace newlines with arbitrary text: |
| 11 | -`awk '{ print }' RS='\n' ORS='arbitrary_text'` |
|
| ... | ... | \ No newline at end of file |
| 0 | +`awk '{ print }' RS='\n' ORS='arbitrary_text'` |
|
| 1 | + |
|
| 2 | +Work with human-readable e.g. disk ^2 sizes: |
|
| 3 | +`numfmt --from=iec` and `numfmt --to=iec` |