Added sponge notes to the knowledge base

This commit is contained in:
Michele Cereda
2022-04-17 23:04:38 +02:00
parent c6bcd19d0c
commit 8a51f25964

22
knowledge base/sponge.md Normal file
View File

@@ -0,0 +1,22 @@
# Sponge
## TL;DR
```shell
# installation
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:
grep -v '^{{#}}' path/to/file | sponge path/to/other/file
```
## Further readings
- [mankier man page]
- [tldr live demo page]
[mankier man page]: https://www.mankier.com/1/sponge
[tldr live demo page]: https://tldr.ostera.io/sponge