Merge branch 'master' into terminal
This commit is contained in:
commit
c7138fcb87
1 changed files with 21 additions and 0 deletions
21
content/blog/_index.md
Normal file
21
content/blog/_index.md
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
+++
|
||||||
|
date = '2024-11-20T03:07:08Z'
|
||||||
|
draft = false
|
||||||
|
title = 'Blog'
|
||||||
|
+++
|
||||||
|
|
||||||
|
This is my blog.
|
||||||
|
|
||||||
|
### Syntax notes
|
||||||
|
|
||||||
|
When I write shell commands in code blocks, anything that should be run unprivileged is prefaced with `$`, and anything
|
||||||
|
that should be run with root privileges is prefaced with `#`. e.g.
|
||||||
|
|
||||||
|
$ vim _index.md
|
||||||
|
|
||||||
|
means to run `vim _index.md` as an unprivileged user.
|
||||||
|
|
||||||
|
# rm -rf --no-preserve-root /
|
||||||
|
|
||||||
|
means to run `rm -rf --no-preserve-root /` as the root user, e.g. with `doas rm -rf --no-preserve-root /`.
|
||||||
|
|
Loading…
Reference in a new issue