Skip to content
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
4 changes: 2 additions & 2 deletions pages/common/clementine.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

- Start playing music:

`clementine {{url|path/to/music.ext}}`
`clementine {{URL|path/to/music.ext}}`

- Toggle between pausing and playing:

Expand All @@ -26,7 +26,7 @@

- Create a new playlist with one or more music files or URLs:

`clementine {{[-c|--create]}} {{url1 url2 ...|path/to/music1.ext path/to/music2.ext ...}}`
`clementine {{[-c|--create]}} {{URL1|path/to/music1.ext URL2|path/to/music2.ext ...}}`

- Load a playlist file:

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

- Compile one or more C# files to a CIL executable:

`csc {{path/to/input_file_a.cs}} {{path/to/input_file_b.cs}}`
`csc {{path/to/input_file1.cs path/to/input_file2.cs ...}}`

- Specify the output filename:

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

- Replace a `regex` in case-insensitive mode in specific files or directories:

`fastmod --ignore-case {{regex}} {{replacement}} -- {{path/to/file path/to/directory ...}}`
`fastmod --ignore-case {{regex}} {{replacement}} -- {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}`

- Replace a `regex` in a specific directory in files filtered with a case-insensitive glob pattern:

Expand Down
8 changes: 4 additions & 4 deletions pages/common/mpg321.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@

- Play an audio source exactly `n` times (0 means forever):

`mpg321 {{[-l|--loop]}} {{n}} {{path/to/file_a|URL path/to/file_b|URL ...}}`
`mpg321 {{[-l|--loop]}} {{n}} {{path/to/file1|URL1 path/to/file2|URL2 ...}}`

- Play a directory recursively:

`mpg321 -B {{path/to/directory}}`

- Enable Basic Keys ( `*` or `/` - Increase or decrease volume, `n` - Skip song, `m` - Mute/unmute.) while playing:

`mpg321 -K {{path/to/file_a|URL path/to/file_b|URL ...}}`
`mpg321 -K {{path/to/file1|URL1 path/to/file2|URL2 ...}}`

- Play files randomly until interrupted:

`mpg321 {{[-Z|--random]}} {{path/to/file_a|URL path/to/file_b|URL ...}}`
`mpg321 {{[-Z|--random]}} {{path/to/file1|URL1 path/to/file2|URL2 ...}}`

- Shuffle the files before playing them once:

`mpg321 {{[-z|--shuffle]}} {{path/to/file_a|URL path/to/file_b|URL ...}}`
`mpg321 {{[-z|--shuffle]}} {{path/to/file1|URL1 path/to/file2|URL2 ...}}`

- Play all files in the current directory and subdirectories, randomly (until interrupted), with Basic Keys enabled:

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

- Execute one or more commands in non-interactive mode:

`newsboat {{[-x|--execute]}} {{reload print-unread ...}}`
`newsboat {{[-x|--execute]}} {{reload|print-unread|...}}`

- See keyboard shortcuts (the most relevant are visible in the status line):

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

- Get multiple properties at once:

`npm pkg get {{name version ...}}`
`npm pkg get {{name|version|...}}`

- Get multiple values across all workspaces:

Expand Down
6 changes: 3 additions & 3 deletions pages/common/onionsearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@

- Request search results from specific search engines:

`onionsearch "{{string}}" --engines {{tor66 deeplink phobos ...}}`
`onionsearch "{{string}}" --engines {{tor66|deeplink|phobos|...}}`

- Exclude certain search engines when searching:

`onionsearch "{{string}}" --exclude {{candle ahmia ...}}`
`onionsearch "{{string}}" --exclude {{candle|ahmia|...}}`

- Limit the number of pages to load per engine:

`onionsearch "{{stuxnet}}" --engines {{tor66 deeplink phobos ...}} --limit {{3}}`
`onionsearch "{{stuxnet}}" --engines {{tor66|deeplink|phobos|...}} --limit {{3}}`

- List all supported search engines:

Expand Down
4 changes: 2 additions & 2 deletions pages/common/prowler-aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@

- Run checks for selected AWS services:

`prowler aws {{[-s|--services]}} {{s3 ec2 ...}}`
`prowler aws {{[-s|--services]}} {{s3|ec2|...}}`

- Run a specific AWS check:

`prowler aws {{[-c|--checks]}} {{s3_bucket_public_access}}`

- Exclude specific checks or services:

`prowler aws {{[-e|--excluded-checks]}} {{s3_bucket_public_access}} --exclude-services {{s3 ec2 ...}}`
`prowler aws {{[-e|--excluded-checks]}} {{s3_bucket_public_access}} --exclude-services {{s3|ec2|...}}`
4 changes: 2 additions & 2 deletions pages/common/prowler-azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@

- Run checks for selected Azure services:

`prowler azure {{[-s|--services]}} {{defender iam ...}}`
`prowler azure {{[-s|--services]}} {{defender|iam|...}}`

- Run a specific Azure check:

`prowler azure {{[-c|--checks]}} {{storage_blob_public_access_level_is_disabled}}`

- Exclude specific checks or services:

`prowler azure {{[-e|--excluded-checks]}} {{storage_blob_public_access_level_is_disabled}} --exclude-services {{defender iam ...}}`
`prowler azure {{[-e|--excluded-checks]}} {{storage_blob_public_access_level_is_disabled}} --exclude-services {{defender|iam|...}}`
4 changes: 2 additions & 2 deletions pages/common/prowler-gcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@

- Run checks for selected GCP services:

`prowler gcp {{[-s|--services]}} {{iam compute ...}}`
`prowler gcp {{[-s|--services]}} {{iam|compute|...}}`

- Run a specific GCP check:

`prowler gcp {{[-c|--checks]}} {{gcp_storage_bucket_logging_enabled}}`

- Exclude specific checks or services:

`prowler gcp {{[-e|--excluded-checks]}} {{gcp_storage_bucket_logging_enabled}} --exclude-services {{iam compute ...}}`
`prowler gcp {{[-e|--excluded-checks]}} {{gcp_storage_bucket_logging_enabled}} --exclude-services {{iam|compute|...}}`
4 changes: 2 additions & 2 deletions pages/common/prowler-kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@

- Run checks for selected Kubernetes services:

`prowler kubernetes {{[-s|--services]}} {{ietcd apiserver ...}}`
`prowler kubernetes {{[-s|--services]}} {{ietcd|apiserver|...}}`

- Run a specific Kubernetes check:

`prowler kubernetes {{[-c|--checks]}} {{etcd_encryption}}`

- Exclude specific checks or services:

`prowler kubernetes {{[-e|--excluded-checks]}} {{etcd_encryption}} --exclude-services {{ietcd apiserver ...}}`
`prowler kubernetes {{[-e|--excluded-checks]}} {{etcd_encryption}} --exclude-services {{ietcd|apiserver|...}}`
4 changes: 2 additions & 2 deletions pages/linux/setsebool.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

`sudo setsebool -P {{container_use_devices}} {{1|true|on|0|false|off}}`

- Set or unset multiple booleans [P]ersistently at once:
- Set or unset multiple booleans at once [P]ersistently:

`sudo setsebool -P {{ftpd_use_fusefs=1 mount_anyfile=0 ...}}`
`sudo setsebool -P {{key1 1 key2 0 ...}}`

- Set or unset a boolean persistently (alternative method using `semanage-boolean`):

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

- Reload multiple services:

`systemctl reload {{networking apache2 ...}}`
`systemctl reload {{unit1 unit2 ...}}`

- Reload a service for the current user:

Expand Down
6 changes: 5 additions & 1 deletion pages/linux/togglesebool.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,8 @@

- Flip the current (non-persistent) values of the specified booleans:

`sudo togglesebool {{virt_use_samba virt_use_usb ...}}`
`sudo togglesebool {{virt_use_samba|virt_use_usb|...}}`

- Flip multiple booleans:

`sudo togglesebool {{key1 key2 ...}}`