mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
Fixed typos, titles and spacing
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
Change font to `NotoSansMono Nerd Font` in Platformio Ide Terminal's settings.
|
||||
See [Why Zsh terminal icons are not getting displayed in Atom Platformio Ide Terminal?]
|
||||
|
||||
## Sources
|
||||
## Further readings
|
||||
|
||||
- [Why Zsh terminal icons are not getting displayed in Atom Platformio Ide Terminal?]
|
||||
|
||||
|
||||
@@ -26,13 +26,10 @@ command 1>/dev/null 2> >(grep -oP "(.*)(?=pattern)")
|
||||
> Do note that **the target command of process substitution runs asynchronously**.
|
||||
> As a consequence, `stderr` lines that get through the grep filter may not appear at the place you would expect in the rest of the output, but even on your next command prompt.
|
||||
|
||||
## See also
|
||||
|
||||
- Knowledge base on [grep]
|
||||
|
||||
## Further readings
|
||||
|
||||
- Answer on [StackExchange] about [how to grep the standard error stream]
|
||||
- Knowledge base on [grep]
|
||||
|
||||
[grep]: grep.md
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
sudo mount -t cifs -o user=my-user //nas.local/shared_folder local_folder
|
||||
```
|
||||
|
||||
## Sources
|
||||
## Further readings
|
||||
|
||||
- [Mounting samba shares from a unix client]
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@ opkg list-changed-conffiles
|
||||
opkg depends dropbear
|
||||
```
|
||||
|
||||
## Sources
|
||||
## Further readings
|
||||
|
||||
- [Opkg package manager]
|
||||
|
||||
|
||||
@@ -22,12 +22,8 @@ SKIP=flake8 git commit -m "foo"
|
||||
|
||||
## Further readings
|
||||
|
||||
- Pre-commit's [website]
|
||||
- List of [supported hooks]
|
||||
|
||||
[supported hooks]: https://pre-commit.com/hooks.html
|
||||
|
||||
## Sources
|
||||
|
||||
- [Website]
|
||||
|
||||
[website]: https://pre-commit.com
|
||||
|
||||
7
knowledge base/rotate a pdf file.md
Normal file
7
knowledge base/rotate a pdf file.md
Normal file
@@ -0,0 +1,7 @@
|
||||
# Rotate a PDF file
|
||||
|
||||
## Further readings
|
||||
|
||||
- [pdftk]
|
||||
|
||||
[pdftk]: pdftk.md#rotate-a-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
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user