Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pages/*: replace dashes with hyphen #15447

Merged
merged 1 commit into from
Jan 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pages.ko/common/lpr.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

`lpr -P {{프린터}} {{경로/대상/파일}}`

- 특정 페이지(예: 2) 또는 페이지 범위(예: 216) 인쇄:
- 특정 페이지(예: 2) 또는 페이지 범위(예: 2-16) 인쇄:

`lpr -o page-ranges={{2|2-16}} {{경로/대상/파일}}`

Expand Down
2 changes: 1 addition & 1 deletion pages.ko/common/sgpt.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

`sgpt --chat {{세션_이름}} "{{내가 좋아하는 숫자를 기억해 주세요: 4}}"`

- `REPL` (Readevalprint loop) 세션 시작:
- `REPL` (Read-eval-print loop) 세션 시작:

`sgpt --repl {{명령}}`

Expand Down
2 changes: 1 addition & 1 deletion pages/common/lpr.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

`lpr -P {{printer}} {{path/to/file}}`

- Print either a single page (e.g. 2) or a range of pages (e.g. 216):
- Print either a single page (e.g. 2) or a range of pages (e.g. 2-16):

`lpr -o page-ranges={{2|2-16}} {{path/to/file}}`

Expand Down
2 changes: 1 addition & 1 deletion pages/common/sgpt.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

`sgpt --chat {{session_name}} "{{please remember my favorite number: 4}}"`

- Start a `REPL` (Readevalprint loop) session:
- Start a `REPL` (Read-eval-print loop) session:

`sgpt --repl {{command}}`

Expand Down
2 changes: 1 addition & 1 deletion pages/linux/audit2allow.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# audit2allow

> Create an SELinux local policy module to allow rules based on denied operations found in logs.
> Note: Use audit2allow with caution—always review the generated policy before applying it, as it may allow excessive access.
> Note: Use audit2allow with caution. Always review the generated policy before applying it, as it may allow excessive access.
> More information: <https://manned.org/audit2allow>.

- Generate a local policy to allow access for all denied services:
Expand All @@ -12,9 +12,9 @@

`sudo grep {{apache2}} /var/log/audit/audit.log | sudo audit2allow -M {{local_policy_name}}`

- Inspect and review the Type Enforcement (.te) file for a local policy:

Check failure on line 15 in pages/linux/audit2allow.md

View workflow job for this annotation

GitHub Actions / build

te ==> the, be, we, to

`vim {{local_policy_name}}.te`

Check failure on line 17 in pages/linux/audit2allow.md

View workflow job for this annotation

GitHub Actions / build

te ==> the, be, we, to

- Install a local policy module:

Expand Down
Loading