Commit 5cb829fa authored by Tomáš Szaniszlo's avatar Tomáš Szaniszlo
Browse files

Better formatting

parent fdce6bf9
Loading
Loading
Loading
Loading
+4 −7
Original line number Diff line number Diff line
@@ -30,13 +30,10 @@ Source: <https://wiki.debian.org/Keyboard>

**Handling NUL-separated strings**

`grep`: `-z` for input, `-Z` for output

`find`: `-print0` for output

`sort`: `-z` for both input and output

`awk`: `BEGIN { RS="\0" }` for input, `BEGIN { ORS="\0" }` for output
* `grep`: `-z` for input, `-Z` for output
* `find`: `-print0` for output
* `sort`: `-z` for both input and output
* `awk`: `BEGIN { RS="\0" }` for input, `BEGIN { ORS="\0" }` for output

- - -