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
2 changes: 1 addition & 1 deletion pages.ko/common/rlwrap.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@

`rlwrap --complete-filenames {{명령}}`

- 색상이 있는 프롬프트 추가, 색상 이름 또는 ASCI 색상 사양 사용. 대문자 색상 이름은 굵게 스타일링:
- 색상이 있는 프롬프트 추가, 색상 이름 또는 ANSI 색상 사양 사용. 대문자 색상 이름은 굵게 스타일링:

`rlwrap --prompt-colour={{black|red|green|yellow|blue|cyan|purple|white|colour_spec}} {{명령}}`
2 changes: 1 addition & 1 deletion pages/common/astyle.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# astyle

> Source code indenter, formatter, and beautifier for the C, C++, C# and Java programming languages.
> Source code indenter, formatter, and beautifier for the C, C++, C#, and Java programming languages.
> Upon running, a copy of the original file is created with an ".orig" appended to the original file name.
> More information: <https://manned.org/astyle>.
Expand Down
2 changes: 1 addition & 1 deletion pages/common/bzgrep.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

`bzgrep "{{search_pattern}}" {{path/to/file}}`

- Use extended `regex` (supports `?`, `+`, `{}`, `()` and `|`), in case-insensitive mode:
- Use extended `regex` (supports `?`, `+`, `{}`, `()`, and `|`), in case-insensitive mode:

`bzgrep {{[-E|--extended-regexp]}} {{[-i|--ignore-case]}} "{{search_pattern}}" {{path/to/file}}`

- Print 3 lines of [C]ontext around, [B]efore, or [A]fter each match:

Check failure on line 14 in pages/common/bzgrep.md

View workflow job for this annotation

GitHub Actions / build

fter ==> after

Check failure on line 14 in pages/common/bzgrep.md

View workflow job for this annotation

GitHub Actions / build

efore ==> before, afore

Check failure on line 14 in pages/common/bzgrep.md

View workflow job for this annotation

GitHub Actions / build

ontext ==> context

`bzgrep --{{context|before-context|after-context}} {{3}} "{{search_pattern}}" {{path/to/file}}`

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

`colima start --kubernetes`

- Customize CPU count, RAM memory and disk space (in GiB):
- Customize CPU count, RAM memory, and disk space (in GiB):

`colima start --cpu {{number}} --memory {{memory}} --disk {{storage_space}}`

Expand Down
2 changes: 1 addition & 1 deletion pages/common/comm.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
> Select or reject lines common to two files. Both files must be sorted.
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/comm-invocation.html>.

- Produce three tab-separated columns: lines only in first file, lines only in second file and common lines:
- Produce three tab-separated columns: lines only in first file, lines only in second file, and common lines:

`comm {{file1}} {{file2}}`

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

> A system scheduler for running jobs or tasks unattended.
> The command to submit, edit or delete entries to `cron` is called `crontab`.
> The command to submit, edit, or delete entries to `cron` is called `crontab`.

- View documentation for managing `cron` entries:

Expand Down
4 changes: 2 additions & 2 deletions pages/common/ebook-convert.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# ebook-convert

> Can be used to convert e-books between common formats, e.g. PDF, EPUB and MOBI.
> Can be used to convert e-books between common formats, e.g. PDF, EPUB, and MOBI.
> Part of the Calibre e-book library tool.
> More information: <https://manual.calibre-ebook.com/generated/en/ebook-convert.html>.

- Convert an e-book into another format:

`ebook-convert {{path/to/input_file}} {{output_file}}`

- Convert Markdown or HTML to e-book with TOC, title and author:
- Convert Markdown or HTML to e-book with TOC, title, and author:

`ebook-convert {{path/to/input_file}} {{output_file}} --level1-toc="//h:h1" --level2-toc="//h:h2" --level3-toc="//h:h3" --title={{title}} --authors={{author}}`
2 changes: 1 addition & 1 deletion pages/common/fselect.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@

`fselect size, path from {{path/to/directory}} limit {{5}} into json`

- Use SQL aggregate functions to calculate minimum, maximum and average size of files in a directory:
- Use SQL aggregate functions to calculate minimum, maximum, and average size of files in a directory:

`fselect "{{MIN(size), MAX(size), AVG(size), SUM(size), COUNT(*)}} from {{path/to/directory}}"`
2 changes: 1 addition & 1 deletion pages/common/gdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@

`gdown {{folder_id|url}} {{[-O|--output]}} {{path/to/output_directory}} --folder`

- Download a tar archive, write it to `stdout` and extract it:
- Download a tar archive, write it to `stdout`, and extract it:

`gdown {{tar_url}} {{[-O|--output]}} - {{[-q|--quiet]}} | tar xvf -`
4 changes: 2 additions & 2 deletions pages/common/gource.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# gource

> Renders an animated tree diagram of Git, SVN, Mercurial and Bazaar repositories.
> It shows files and directories being created, modified or removed over time.
> Renders an animated tree diagram of Git, SVN, Mercurial, and Bazaar repositories.
> It shows files and directories being created, modified, or removed over time.
> More information: <https://manned.org/gource>.

- Run gource in a directory (if it isn't the repository's root directory, the root is sought up from there):
Expand Down
2 changes: 1 addition & 1 deletion pages/common/liquidctl.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@

`liquidctl status`

- Match a string in product name to pick a device and set its fan speed to 0% at 20°C, 50% at 50°C and 100% at 70°C:
- Match a string in product name to pick a device and set its fan speed to 0% at 20°C, 50% at 50°C, and 100% at 70°C:

`liquidctl {{[-m|--match]}} {{string}} set fan speed {{20 0 50 50 70 100}}`
2 changes: 1 addition & 1 deletion pages/common/ncc.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ncc

> Compile a Node.js application into a single file.
> Supports TypeScript, binary addons and dynamic requires.
> Supports TypeScript, binary addons, and dynamic requires.
> More information: <https://github.com/vercel/ncc#usage>.
- Bundle a Node.js application:
Expand Down
2 changes: 1 addition & 1 deletion pages/common/packwiz.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# packwiz

> Create, edit and manage Minecraft modpacks.
> Create, edit, and manage Minecraft modpacks.
> More information: <https://packwiz.infra.link/reference/commands/packwiz/>.

- Interactively create a new modpack in the current directory:
Expand Down
2 changes: 1 addition & 1 deletion pages/common/pamvalidate.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pamvalidate

> Validate PAM, PGM, PBM and PPM files.
> Validate PAM, PGM, PBM, and PPM files.
> See also: `pamfile`, `pamfix`.
> More information: <https://netpbm.sourceforge.net/doc/pamvalidate.html>.

Expand Down
2 changes: 1 addition & 1 deletion pages/common/parquet-tools.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# parquet-tools

> Show, inspect and manipulate Parquet file.
> Show, inspect, and manipulate Parquet file.
> More information: <https://github.com/apache/parquet-mr>.

- Display the content of a Parquet file:
Expand Down
2 changes: 1 addition & 1 deletion pages/common/pdftotext.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@

`pdftotext {{input.pdf}} {{output.txt}}`

- Convert pages 2, 3 and 4 of `input.pdf` to plain text and save them as `output.txt`:
- Convert pages 2, 3, and 4 of `input.pdf` to plain text and save them as `output.txt`:

`pdftotext -f {{2}} -l {{4}} {{input.pdf}} {{output.txt}}`
2 changes: 1 addition & 1 deletion pages/common/php-yii.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

`php yii {{serve}}`

- Generate a controller, views and related files for the CRUD actions on the specified model class:
- Generate a controller, views, and related files for the CRUD actions on the specified model class:

`php yii {{gii/crud}} --modelClass={{ModelName}} --controllerClass={{ControllerName}}`

Expand Down
2 changes: 1 addition & 1 deletion pages/common/pio-org.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@

`pio org list`

- Update the name, email or display name of an organization:
- Update the name, email, or display name of an organization:

`pio org update --orgname {{new_organization_name}} --email {{new_email}} --displayname {{new_display_name}} {{organization_name}}`
4 changes: 2 additions & 2 deletions pages/common/pio-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
> View and modify PlatformIO settings.
> More information: <https://docs.platformio.org/en/latest/core/userguide/cmd_settings.html>.

- Display the names, values and descriptions of all PlatformIO settings:
- Display the names, values, and descriptions of all PlatformIO settings:

`pio settings get`

- Display the name, value and description of a specific PlatformIO setting:
- Display the name, value, and description of a specific PlatformIO setting:

`pio settings get {{setting}}`

Expand Down
2 changes: 1 addition & 1 deletion pages/common/pio-system.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
> Miscellaneous system commands for PlatformIO.
> More information: <https://docs.platformio.org/en/latest/core/userguide/system/>.

- Install shell completion for the current shell (supports Bash, fish, Zsh and PowerShell):
- Install shell completion for the current shell (supports Bash, fish, Zsh, and PowerShell):

`pio system completion install`

Expand Down
6 changes: 3 additions & 3 deletions pages/common/pio-update.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# pio update

> Update installed PlatformIO Core packages, development platforms and global libraries.
> Update installed PlatformIO Core packages, development platforms, and global libraries.
> See also: `pio platform update`, `pio lib update`.
> More information: <https://docs.platformio.org/en/latest/core/userguide/cmd_update.html>.

- Perform a full update of all packages, development platforms and global libraries:
- Perform a full update of all packages, development platforms, and global libraries:

`pio update`

- Update core packages only (skips platforms and libraries):

`pio update --core-packages`

- Check for new versions of packages, platforms and libraries but do not actually update them:
- Check for new versions of packages, platforms, and libraries but do not actually update them:

`pio update --dry-run`
2 changes: 1 addition & 1 deletion pages/common/ppmdither.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
> Reduce the number of colors in an image by applying dithering.
> More information: <https://netpbm.sourceforge.net/doc/ppmdither.html>.

- Read a PPM image, apply dithering and save it to a file:
- Read a PPM image, apply dithering, and save it to a file:

`ppmdither {{path/to/image.ppm}} > {{path/to/file.ppm}}`

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

`ppmlabel -x {{pos_x1}} -y {{pos_y1}} {{[-t|-text]}} {{text1}} -x {{pos_x2}} -y {{pos_y2}} {{[-t|-text]}} {{text2}} {{path/to/input_file.ppm}} > {{path/to/output_file.ppm}}`

- Specify the line color, the background color, the tilt and the size of the added text:
- Specify the line color, the background color, the tilt, and the size of the added text:

`ppmlabel -x {{pos_x}} -y {{pos_y}} {{[-c|-color]}} {{line_color}} {{[-b|-background]}} {{background_color}} {{[-a|-angle]}} {{tilt}} {{[-s|-size]}} {{size}} {{[-t|-text]}} {{text}} {{path/to/input_file.ppm}} > {{path/to/output_file.ppm}}`
2 changes: 1 addition & 1 deletion pages/common/ppmtoeyuv.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
> Convert a PPM image to an Berkeley YUV file.
> More information: <https://netpbm.sourceforge.net/doc/ppmtoeyuv.html>.

- Read a PPM image from the input file, convert it to a Berkeley YUV image and store it in the specified output file:
- Read a PPM image from the input file, convert it to a Berkeley YUV image, and store it in the specified output file:

`ppmtoeyuv {{path/to/input_file.ppm}} > {{path/to/output_file.eyuv}}`
2 changes: 1 addition & 1 deletion pages/common/ppmtoppm.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
> Copy a PPM image.
> More information: <https://netpbm.sourceforge.net/doc/ppmtoppm.html>.

- Copy a PPM image (i.e. a PBM, PGM or PPM image) from `stdin` to `stdout`:
- Copy a PPM image (i.e. a PBM, PGM, or PPM image) from `stdin` to `stdout`:

`ppmtoppm < {{path/to/image.ppm}} > {{path/to/output.ppm}}`

Expand Down
2 changes: 1 addition & 1 deletion pages/common/ppmtoyuv.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
> Convert a PPM image to an Abekas YUV file.
> More information: <https://netpbm.sourceforge.net/doc/ppmtoyuv.html>.

- Read a PPM image from the input file, convert it to an Abekas YUV image and store it in the specified output file:
- Read a PPM image from the input file, convert it to an Abekas YUV image, and store it in the specified output file:

`ppmtoyuv {{path/to/input_file.ppm}} > {{path/to/output_file.yuv}}`
2 changes: 1 addition & 1 deletion pages/common/quarto.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@

`quarto preview {{path/to/destination_directory|path/to/file}}`

- Publish a document or project to Quarto Pub, Github Pages, RStudio Connect or Netlify:
- Publish a document or project to Quarto Pub, Github Pages, RStudio Connect, or Netlify:

`quarto publish {{quarto-pub|gh-pages|connect|netlify}}`
2 changes: 1 addition & 1 deletion pages/common/rage.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# rage

> A simple, secure and modern file encryption tool (and Rust library) with small explicit keys, no configuration options, and UNIX-style composability.
> A simple, secure, and modern file encryption tool (and Rust library) with small explicit keys, no configuration options, and UNIX-style composability.
> Rust implementation of `age`.
> More information: <https://github.com/str4d/rage>.

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

`rails generate model {{Post}} {{title:string}} {{body:text}}`

- Generate a new controller named Posts with actions index, show, new and create:
- Generate a new controller named Posts with actions index, show, new, and create:

`rails generate controller {{Posts}} {{index}} {{show}} {{new}} {{create}}`

Expand Down
1 change: 0 additions & 1 deletion pages/common/rbash.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

> Restricted Bash shell, equivalent to `bash --restricted`.
> Does not permit changing the working directory, redirecting command output, or modifying environment variables, among other things.
> See also: `histexpand` for history expansion.
> More information: <https://www.gnu.org/software/bash/manual/bash.html#The-Restricted-Shell>.

- Start an interactive shell session:
Expand Down
2 changes: 1 addition & 1 deletion pages/common/rclone.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# rclone

> Copy, synchronize or move files and directories to and from many cloud services.
> Copy, synchronize, or move files and directories to and from many cloud services.
> More information: <https://rclone.org/commands/rclone/>.

- Launch an interactive menu to setup rclone:
Expand Down
2 changes: 1 addition & 1 deletion pages/common/rgrep.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

`rgrep {{[-i|--ignore-case]}} "{{search_pattern}}"`

- Recursively search for an extended `regex` pattern (supports `?`, `+`, `{}`, `()` and `|`) in the current working directory:
- Recursively search for an extended `regex` pattern (supports `?`, `+`, `{}`, `()`, and `|`) in the current working directory:

`rgrep {{[-E|--extended-regexp]}} "{{search_pattern}}"`

Expand Down
6 changes: 3 additions & 3 deletions pages/common/rlwrap.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# rlwrap

> Add line editing, persistent history and prompt completion to a REPL command.
> Add line editing, persistent history, and prompt completion to a REPL command.
> More information: <https://manned.org/rlwrap>.

- Run a REPL command with line editing, persistent history and prompt completion:
- Run a REPL command with line editing, persistent history, and prompt completion:

`rlwrap {{command}}`

Expand All @@ -19,6 +19,6 @@

`rlwrap {{[-c|--complete-filenames]}} {{command}}`

- Add coloured prompts, use colour name, or an ASCI-conformant colour specification. Use an uppercase colour name for bold styling:
- Add coloured prompts, use colour name or an ANSI-conformant colour specification. Use an uppercase colour name for bold styling:

`rlwrap {{[-p|--prompt-colour=]}}{{black|red|green|yellow|blue|cyan|purple|white|colour_spec}} {{command}}`
4 changes: 2 additions & 2 deletions pages/common/roll.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

`roll {{3d}}`

- Roll 1 8-sided die, add 3 and sum the results:
- Roll 1 8-sided die, add 3, and sum the results:

`roll {{d8 + 3}}`

- Roll 4 6-sided dice, keep the 3 highest results and sum the results:
- Roll 4 6-sided dice, keep the 3 highest results, and sum the results:

`roll {{4d6h3}}`

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

`rsync {{path/to/source}} {{path/to/destination}}`

- Use archive mode (recursively copy directories, copy symlinks without resolving, and preserve permissions, ownership and modification times):
- Use archive mode (recursively copy directories, copy symlinks without resolving, and preserve permissions, ownership, and modification times):

`rsync {{[-a|--archive]}} {{path/to/source}} {{path/to/destination}}`

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

`rustup set default-host {{host_triple}}`

- Set the default profile (`minimal` includes only `rustc`, `rust-std` and `cargo`, whereas `default` adds `rust-docs`, `rustfmt` and `clippy`):
- Set the default profile (`minimal` includes only `rustc`, `rust-std`, and `cargo`, whereas `default` adds `rust-docs`, `rustfmt`, and `clippy`):

`rustup set profile {{minimal|default}}`

Expand Down
2 changes: 1 addition & 1 deletion pages/common/sfdk-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@

`sfdk --drop {{name}}`

- Run subcommand in specified scope (`global`, `session` or `command`):
- Run subcommand in specified scope (`global`, `session`, or `command`):

`sfdk config --{{scope}} {{subcommand}}`
4 changes: 2 additions & 2 deletions pages/common/sfdk-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
> Deploy build results to a device.
> More information: <https://github.com/sailfishos/sailfish-qtcreator/blob/master/share/qtcreator/sfdk/modules/50-testing-mb2/doc/command.deploy.adoc>.

- Deploy using a specified method (`pkcon`, `rsync`, `sdk`, `zypper`, `zypper-dup` or `manual`):
- Deploy using a specified method (`pkcon`, `rsync`, `sdk`, `zypper`, `zypper-dup`, or `manual`):

`sfdk deploy --{{method}}`

Expand All @@ -19,6 +19,6 @@

`sfdk deploy --{{method}} "-ignore*"`

- Undeploy using a specified method (`pkcon`, `rpm`, `rsync`, `sdk` or `zypper`):
- Undeploy using a specified method (`pkcon`, `rpm`, `rsync`, `sdk`, or `zypper`):

`sfdk undeploy --{{method}}`
2 changes: 1 addition & 1 deletion pages/common/sfdk-undeploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
> Undeploy build results from a device.
> More information: <https://github.com/sailfishos/sailfish-qtcreator/blob/master/share/qtcreator/sfdk/modules/50-testing-mb2/doc/command.undeploy.adoc>.

- Undeploy using a specified method (`pkcon`, `rpm`, `rsync`, `sdk` or `zypper`):
- Undeploy using a specified method (`pkcon`, `rpm`, `rsync`, `sdk`, or `zypper`):

`sfdk undeploy --{{method}}`

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

> Sound eXchange: play, record and convert audio files.
> Sound eXchange: play, record, and convert audio files.
> Audio formats are identified by the extension.
> More information: <https://manned.org/sox>.

Expand Down
Loading
Loading