Fixed typos, titles and spacing

This commit is contained in:
Michele Cereda
2022-04-17 23:11:55 +02:00
parent 8a51f25964
commit af19baf99f
8 changed files with 16 additions and 16 deletions

View File

@@ -9,7 +9,7 @@ brew install sponge # or moreutils
# append file content to the source file
cat path/to/file | sponge -a path/to/other/file
# remove all lines starting with # in a file:
# remove all lines starting with "#" in a file
grep -v '^{{#}}' path/to/file | sponge path/to/other/file
```