diff --git a/.gitattributes b/.gitattributes index 7876daeab5..1e039d8cbe 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,8 +1,5 @@ -# This ensures that the line endings in any files added or modified are -# normalized before being committed. On Windows they will automatically -# be checked-out as CRLF, and re-converted to LF before check-in. -# See https://git-scm.com/docs/gitattributes for more information. -* text=auto +# https://github.com/tldr-pages/tldr/issues/7097 +* text=auto eol=lf # GitHub linguist ignores markdown files by default, but tldr-pages # is mostly markdown, so we explicitly make the pages detectable diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000000..eca5cac898 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,25 @@ +/pages.de/ @pixelcmtd @marchersimon +/pages.es/ @navarroaxel @kant +/pages.id/ @reinhart1010 +/pages.it/ @mebeim @yutyo @Magrid0 +/pages.nl/ @sebastiaanspeck +/pages.pl/ @acuteenvy +/pages.pt_BR/ @waldyrious @isaacvicente +/pages.pt_PT/ @waldyrious +/pages.ta/ @kbdharun +/pages.tr/ @yutyo +/pages.zh/ @blueskyson @einverne +/pages.zh_TW/ @blueskyson + +/contributing-guides/*.de.md @pixelcmtd @marchersimon +/contributing-guides/*.es.md @navarroaxel @kant +/contributing-guides/*.id.md @reinhart1010 +/contributing-guides/*.it.md @mebeim @yutyo @Magrid0 +/contributing-guides/*.nl.md @sebastiaanspeck +/contributing-guides/*.pl.md @acuteenvy +/contributing-guides/*.pt_BR.md @waldyrious @isaacvicente +/contributing-guides/*.pt_PT.md @waldyrious +/contributing-guides/*.ta.md @kbdharun +/contributing-guides/*.tr.md @yutyo +/contributing-guides/*.zh.md @blueskyson @einverne +/contributing-guides/*.zh_TW.md @blueskyson diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 486d07ad63..ffaf63415b 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,8 +1,5 @@ blank_issues_enabled: true contact_links: - - name: Gitter chat - url: https://gitter.im/tldr-pages/tldr - about: You can ask and answer questions here - - name: Matrix Space + - name: Chat room url: https://matrix.to/#/#tldr-pages:matrix.org - about: Matrix view of our Gitter chat rooms + about: Consider joining the chat room to discuss your issue, question or suggestion with the community before opening an issue. diff --git a/.github/ISSUE_TEMPLATE/page-modification-request.yml b/.github/ISSUE_TEMPLATE/page-modification-request.yml new file mode 100644 index 0000000000..1767f5a0b2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/page-modification-request.yml @@ -0,0 +1,25 @@ +name: 📄 Page modification request +title: "page modification request: " +description: Page modification request template. +labels: page edit, help wanted +body: + - type: textarea + attributes: + label: Command description + description: Describe the command you want the page(s) to be modified. + placeholder: Tell us about the changes in the command! + - type: input + attributes: + label: Command details + description: Describe any details related to a command. + placeholder: e.g. command version + - type: checkboxes + attributes: + label: OS + description: Select which operating system(s) this command works with. + options: + - label: Android + - label: Linux + - label: macOS (osx) + - label: sunOS + - label: Windows diff --git a/.github/ISSUE_TEMPLATE/page-request.yml b/.github/ISSUE_TEMPLATE/page-request.yml index d2b07b92a1..40941294cb 100644 --- a/.github/ISSUE_TEMPLATE/page-request.yml +++ b/.github/ISSUE_TEMPLATE/page-request.yml @@ -20,8 +20,7 @@ body: options: - label: Android - label: Linux - - label: macOS + - label: macOS (osx) - label: sunOS - label: Windows - diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..ed13142a45 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,18 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "monthly" + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "monthly" + - package-ecosystem: "pip" + directory: "/scripts/pdf" + schedule: + interval: "monthly" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe2b55ba45..c6309a4f60 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: name: CI steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: @@ -43,7 +43,7 @@ jobs: - name: Build PDF if: github.repository == 'tldr-pages/tldr' && github.ref == 'refs/heads/main' working-directory: ./scripts/pdf - run: python render.py ../../pages -c solarized-light + run: bash build-pdf.sh - name: Deploy if: github.repository == 'tldr-pages/tldr' && github.ref == 'refs/heads/main' diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 29bb5c74b0..9ffeae4134 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -7,18 +7,18 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v26.1 + uses: tj-actions/changed-files@v39.0.0 with: # Ignore all other languages except English files_ignore: | pages.*/*/* package-lock.json - - uses: codespell-project/actions-codespell@master + - uses: codespell-project/actions-codespell@v2 with: ignore_words_file: .github/codespell-ignore # Exit with 0 regardless of typos. diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml deleted file mode 100644 index 02ad369b20..0000000000 --- a/.github/workflows/mirror.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Main Mirror - -on: - push: - branches: ['main'] - -permissions: {} -jobs: - mirror: - permissions: - contents: write # to update branch - - runs-on: ubuntu-latest - - steps: - - uses: zofrex/mirror-branch@v1 - with: - target-branch: master diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml deleted file mode 100644 index 77979c1371..0000000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: 'Manage stale issues' - -on: - schedule: - - cron: '0 0 * * *' - -permissions: {} -jobs: - stale: - permissions: - issues: write # to close stale issues (actions/stale) - pull-requests: write # to close stale PRs (actions/stale) - - runs-on: ubuntu-latest - - steps: - - - name: Stale Bot - uses: actions/stale@v6 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - - # Number of days of inactivity before an issue or PR is considered stale - days-before-pr-stale: 15 - - days-before-issue-stale: 45 - - - # Number of days of inactivity before a stale issue or PR is closed - days-before-pr-close: 30 - - days-before-issue-close: 90 - - # Issues or PRs with these labels will never be considered stale - exempt-pr-labels: stalebot ignore - - exempt-issue-labels: stalebot ignore,help wanted - - # Label to use when marking an issue or PR as stale - stale-pr-label: waiting - - # Comment to post when marking an issue or PR as stale - stale-pr-message: | - Hi all! This thread has not had any recent activity. - Are there any updates? Thanks! - - # Comment to post when closing a stale issue or PR - close-pr-message: | - Hi everyone. - This thread is being closed as there was no response to the previous prompt. - However, please leave a comment whenever you're ready to resume, so the thread can be reopened. - Thanks again! diff --git a/.gitignore b/.gitignore index 5cc4fe5ce6..3c58aaac63 100644 --- a/.gitignore +++ b/.gitignore @@ -27,4 +27,4 @@ scripts/pdf/tldr-pages.pdf # Python venv for testing the PDF script # Create it with: python3 -m venv scripts/pdf/venv/ -scripts/pdf/venv/ +venv diff --git a/CLIENT-SPECIFICATION.md b/CLIENT-SPECIFICATION.md index 83d8059e3b..2f53aa433e 100644 --- a/CLIENT-SPECIFICATION.md +++ b/CLIENT-SPECIFICATION.md @@ -1,6 +1,6 @@ # tldr-pages client specification -**Current Specification Version:** 1.5 +**Current Specification Version:** 2.0 This document contains the official specification for tldr-pages clients. It is _not_ a specification of the format of the pages themselves - only a specification of how a user should be able to interface with an official client. For a list of previous versions of the specification, see the [changelog section](#Changelog) below. @@ -9,7 +9,7 @@ The keywords "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SH ## Terminology -In order to aid the understanding of this specification document, a number of terms will be defined in this section. +This section defines key terms that are relevant for understanding this specification document. ### Page @@ -20,7 +20,7 @@ tldr-pages consists of multiple _pages_ - each of which describes a specific com Pages are grouped by platform, i.e. operating systems — for example, `windows`, `linux`, `osx`. The special platform `common` contains pages for commands that work identically across more than one platform. -If a page is common across multiple platforms, but slightly differently on a given platform, then the page is still stored in `common`, but a copy tailored for the differing platform is placed in that platform's specific folder. +If a page is common across multiple platforms, but slightly different on a given platform, then the page is still stored in the `common` directory, but a copy tailored for the differing platform is placed in that platform's specific folder. For example, if the command `foo` is common to `mac`, `windows`, and `linux` but functions differently on `windows`, then the main page will be stored in `common`, and a copy will be placed in `windows` that's altered to match the different functionality. @@ -31,23 +31,23 @@ This section describes the standardised command-line interface (CLI) for clients ### Arguments -A number of command-line options MUST be supported (unless otherwise specified) if a CLI is implemented: +The following command-line options MUST be supported (unless otherwise specified) if a CLI is implemented: Option | Required? | Meaning -------------------|-------------|---------- `-v`, `--version` | Yes | Shows the current version of the client, and the version of this specification that it implements. `-p`, `--platform` | Yes | Specifies the platform to be used to perform the action (either listing or searching) as an argument. If this option is specified, the selected platform MUST be checked first instead of the current platform as described below. -`-u`, `--update` | Conditional | Updates the offline cache of pages. MUST be implemented if cache is supported. +`-u`, `--update` | Conditional | Updates the offline cache of pages. MUST be implemented if caching is supported. `-l`, `--list` | No | Lists all the pages in the current platform to the standard output. `-L`, `--language` | No | Specifies the preferred language for the page returned. Overrides other language detection mechanisms. See the [language section](#language) for more information. -Clients MAY choose to only implement the short version of an option, ignoring the long form. +Clients MUST implement both the short and long versions of an option. -Additional decoration MAY be printed if the standard output is a [TTY](http://www.linusakesson.net/programming/tty/index.php). If not, then the output MUST not contain any additional decorations. For example a page list MUST be formatted with 1 page name per line (to enable easy manipulation using standard CLI tools such as `grep` etc.). +Additional decoration MAY be printed if the standard output is a [TTY](http://www.linusakesson.net/programming/tty/index.php). If not, then the output MUST not contain any additional decorations. For example, a page list MUST be formatted with one page name per line (to enable easy manipulation using standard CLI tools such as `grep` etc.). Clients MAY support additional custom arguments and syntax not documented here. -Here are some examples invocations using the above flags: +Here are some examples of invocations using the above flags: ```bash tldr --update @@ -131,14 +131,14 @@ After transparently replacing spaces (` `) with dashes (`-`) and lowercasing the ### Platform Clients MUST default to displaying the page associated with the platform on which the client is running. -For example, a client running on _Windows 10_ will default to displaying pages from the `windows` platform. +For example, a client running on _Windows 11_ will default to displaying pages from the `windows` platform. Clients MAY provide a user-configurable option to override this behaviour, however. -If a page is not available for the host platform, clients MUST fallback to the special `common` platform. +If a page is not available for the host platform, clients MUST fall back to the special `common` platform. If a page is not available for either the host platform or the `common` platform, then clients SHOULD search other platforms and display a page from there - along with a warning message. -For example, a user has a client on windows, and requests the `apt` page. The client consults the platforms in the following order: +For example, a user has a client on Windows and requests the `apt` page. The client consults the platforms in the following order: 1. `windows` - Not available 2. `common` - Not available @@ -157,7 +157,7 @@ If a page cannot be found in _any_ platform, then it is RECOMMENDED that clients https://github.com/tldr-pages/tldr/issues/new?title=page%20request:%20{command_name} ``` -where `{command_name}` is the name of the command that was not found. Clients that have control over their exit code on the command-line (i.e. clients that provide a CLI) MUST exit with a non-zero exit code in addition to showing the above message. +where `{command_name}` is the name of the command that was not found. Clients that have control over their exit code on the command line (i.e. clients that provide a CLI) MUST exit with a non-zero exit code in addition to showing the above message. #### If multiple versions of a page were found @@ -166,11 +166,11 @@ If multiple versions of a page were found for different platforms, then a client ## Language -Pages can be written in multiple languages. If a client has access to environment variables, it MUST use them derive the preferred user language as described in the next paragraphs. If not, then clients MUST make reasonable assumptions based on the information provided by the environment in which they operate (e.g. consulting `navigator.languages` in a browser, etc.). +Pages can be written in multiple languages. If a client has access to environment variables, it MUST use them to derive the preferred user language as described in the next paragraphs. If not, then clients MUST make reasonable assumptions based on the information provided by the environment in which they operate (e.g. consulting `navigator.languages` in a browser, etc.). -The [`LANG` environment variable](https://www.gnu.org/software/gettext/manual/html_node/Locale-Environment-Variables.html) specifies the user preferred locale (in the form `ll[_CC][.encoding]`). The [`LANGUAGE` environment variable](https://www.gnu.org/software/gettext/manual/html_node/The-LANGUAGE-variable.html) specifies a priority list of locales (in the form `l1:l2:...`) that can be used if the locale defined by `LANG` is not available. Both `LANG` and `LANGUAGE` may contain the values `C` or `POSIX`, which should be ignored. +The [`LANG` environment variable](https://www.gnu.org/software/gettext/manual/html_node/Locale-Environment-Variables.html) specifies the user's preferred locale (in the form `ll[_CC][.encoding]`). The [`LANGUAGE` environment variable](https://www.gnu.org/software/gettext/manual/html_node/The-LANGUAGE-variable.html) specifies a priority list of locales (in the form `l1:l2:...`) that can be used if the locale defined by `LANG` is not available. Both `LANG` and `LANGUAGE` may contain the values `C` or `POSIX`, which should be ignored. -In order to determine the display language, a client MUST: +To determine the display language, a client MUST: 1. Check the value of `LANG`. If not set, then skip to step 5. 2. Extract the priority list from `LANGUAGE`. If not set, start with an empty priority list. @@ -188,13 +188,14 @@ Examples: unset |`it:cz` | `en` unset |unset | `en` -Regardless of the language determined through the environment, clients MUST always attempt to fallback to English if the page does not exist in the user preferred language. Clients MAY notify the user when a page in their preferred language cannot be found (optionally including a link to the [translations section of the contributing guide](https://github.com/tldr-pages/tldr/blob/main/CONTRIBUTING.md#translations)). +Regardless of the language determined through the environment, clients MUST always attempt to fall back to English if the page does not exist in the user's preferred language. Clients MAY notify the user when a page in their preferred language cannot be found (optionally including a link to the [translations section of the contributing guide](https://github.com/tldr-pages/tldr/blob/main/CONTRIBUTING.md#translations)). -It is also RECOMMENDED to make the language configurable, as to not only rely on the environment. Clients SHOULD offer options to configure or override the language using configuration files or even command-line options (like `-L, --language` as suggested in the [arguments section](#arguments) above). If such a command-line option is specified, a client must strictly adhere to its value, and MUST NOT show pages in a different language, failing with an appropriate error message instead. +It is also RECOMMENDED to make the language configurable, to not only rely on the environment. Clients SHOULD offer options to configure or override the language using configuration files or even command-line options (like `-L, --language` as suggested in the [arguments section](#arguments) above). If such a command-line option is specified, a client must strictly adhere to its value, and MUST NOT show pages in a different language, failing with an appropriate error message instead. -The [`LC_MESSAGES` environment variable](https://www.gnu.org/software/gettext/manual/html_node/Locale-Environment-Variables.html) MAY be present. If the client itself is localized and this environment variable is present, it MUST use its value in order to determine the language in which interface text is shown (separately from the language used for pages). In absence of `LC_MESSAGES`, then `LANG` and `LANGUAGE` MUST be used for this purpose instead. +The [`LC_MESSAGES` environment variable](https://www.gnu.org/software/gettext/manual/html_node/Locale-Environment-Variables.html) MAY be present. If the client itself is localized and this environment variable is present, it MUST use its value to determine the language in which interface text is shown (separately from the language used for pages). In the absence of `LC_MESSAGES`, then `LANG` and `LANGUAGE` MUST be used for this purpose instead. -**Note that** for page lookup it is highly RECOMMENDED to give precedence to the platform over the language. In other words, look for a platform under each language, before checking the next preferred language. This ensures a meaningful and correct page resolution. +> [!IMPORTANT] +> For page lookup it is highly RECOMMENDED to give precedence to the platform over the language. In other words, look for a platform under each language, before checking the next preferred language. This ensures a meaningful and correct page resolution. Here's an example of how the lookup should be done on `linux` having set `LANG=it` and `LANGUAGE="it:fr:en"`: @@ -207,9 +208,9 @@ Here's an example of how the lookup should be done on `linux` having set `LANG=i ## Caching -If appropriate, it is RECOMMENDED that clients implement a cache of pages. If implemented, clients MUST download the archive either from **[https://tldr.sh/assets/tldr.zip](https://tldr.sh/assets/tldr.zip)** or [https://raw.githubusercontent.com/tldr-pages/tldr-pages.github.io/master/assets/tldr.zip](https://raw.githubusercontent.com/tldr-pages/tldr-pages.github.io/master/assets/tldr.zip) (which is pointed to by the first link). +If appropriate, it is RECOMMENDED that clients implement a cache of pages. If implemented, clients MUST download the entire archive either as a whole from **[https://tldr.sh/assets/tldr.zip](https://tldr.sh/assets/tldr.zip)** (Which redirects to [https://raw.githubusercontent.com/tldr-pages/tldr-pages.github.io/main/assets/tldr.zip](https://raw.githubusercontent.com/tldr-pages/tldr-pages.github.io/main/assets/tldr.zip)) or download language-specific translation archives in the format `https://tldr.sh/assets/tldr-pages.{{language-code}}.zip` (Which redirects to [https://raw.githubusercontent.com/tldr-pages/tldr-pages.github.io/main/assets/tldr-pages.{{language-code}}.zip](https://raw.githubusercontent.com/tldr-pages/tldr-pages.github.io/main/assets)), along with the archive for English from **[https://tldr.sh/assets/tldr-pages.zip](https://tldr.sh/assets/tldr-pages.zip)** (It redirects to [https://raw.githubusercontent.com/tldr-pages/tldr-pages.github.io/main/assets/tldr-pages.zip](https://raw.githubusercontent.com/tldr-pages/tldr-pages.github.io/main/assets/tldr-pages.zip)). -Caching SHOULD be done according to the user's language configuration (if any), as to not waste unneeded space for unused languages. Additionally, clients MAY automatically update the cache on a regular basis. +Caching SHOULD be done according to the user's language configuration (if any), to not waste unneeded space for unused languages. Additionally, clients MAY automatically update the cache regularly. ## Changelog @@ -225,10 +226,14 @@ including the changes. NOTE: tagging of the commit with a new version tag (in the form `vX.Y`) should be done immediately AFTER merging the version bump, as the commit hash changes when merging with squash or rebase. --> - - Unreleased - - Add recommendation to support `macos` alias for `osx` ([#7514](https://github.com/tldr-pages/tldr/pull/7514)) - - Drop the special "all" platform from `--list` flag ([#7561](https://github.com/tldr-pages/tldr/pull/7561)) + + - [v2.0, September 10th 2023](https://github.com/tldr-pages/tldr/blob/v2.0/CLIENT-SPECIFICATION.md) ([#10148](https://github.com/tldr-pages/tldr/pull/10148)) + - Add recommendation to support `macos` alias for `osx` ([#7514](https://github.com/tldr-pages/tldr/pull/7514)) + - Drop the special "all" platform from the `--list` flag ([#7561](https://github.com/tldr-pages/tldr/pull/7561)) + - Drop the `master` branch from the assets link. ([#9668](https://github.com/tldr-pages/tldr/pull/9668)) + - Require support for long options ([#9651](https://github.com/tldr-pages/tldr/pull/9651)) + - Add recommendation to support caching individual translation archives ([#10148](https://github.com/tldr-pages/tldr/pull/10148)) - [v1.5, March 17th 2021](https://github.com/tldr-pages/tldr/blob/v1.5/CLIENT-SPECIFICATION.md) ([#5428](https://github.com/tldr-pages/tldr/pull/5428)) - Add requirement for converting command names to lowercase before running the page resolution algorithm. @@ -239,11 +244,11 @@ the commit hash changes when merging with squash or rebase. - [v1.3, June 11th 2020](https://github.com/tldr-pages/tldr/blob/v1.3/CLIENT-SPECIFICATION.md) ([#4101](https://github.com/tldr-pages/tldr/pull/4101)) - Clarified fallback to English in the language resolution algorithm. - - Update `LANG` and `LANGUAGE` environment variable to conform to the GNU spec. + - Update the `LANG` and `LANGUAGE` environment variables to conform to the GNU spec. - [v1.2, July 3rd 2019](https://github.com/tldr-pages/tldr/blob/v1.2/CLIENT-SPECIFICATION.md) ([#3168](https://github.com/tldr-pages/tldr/pull/3168)) - Addition of a new `-L, --language` recommended command-line option. - - Rewording of the language section also encouraging the use of configuration files for language. + - Rewording of the language section, also encouraging the use of configuration files for language. - Shift from BCP-47 to POSIX style locale tags, with consequent **deprecation of previous versions of the spec**. - Clearer clarification about the recommended caching functionality. - Correction of the usage of the term "arguments" in the homonym section. diff --git a/COMMUNITY-ROLES.md b/COMMUNITY-ROLES.md index 65070cc5c1..4c7f2aa0b0 100644 --- a/COMMUNITY-ROLES.md +++ b/COMMUNITY-ROLES.md @@ -46,8 +46,9 @@ exceptions can always be considered, via open community discussion.) This means they will be able to push commits to all of the organization's repositories, merge PRs, label and close issues, among other things. - _Note_: All members of the tldr-pages organization - must make their membership public. + > [!NOTE] + > All members of the tldr-pages organization + > must make their membership public. - **Organization members who remain active for a while should become organization owners.** Specifically: members of the tldr-pages organization @@ -78,8 +79,9 @@ exceptions can always be considered, via open community discussion.) ## How to change roles -*Note: This section is aimed at owners in the tldr-pages organization -(i.e. the group of people who are able to perform these changes).* +> [!NOTE] +> This section is aimed at owners in the tldr-pages organization +> (i.e. the group of people who are able to perform these changes). If you notice a contributor being particularly active, review their recent contributions to check whether a role transition is due, @@ -126,7 +128,7 @@ using one of the template messages below as a base. According to our [community roles documentation](https://github.com/tldr-pages/tldr/blob/main/COMMUNITY-ROLES.md), you've now met the thresholds to be effectively considered an active maintainer of the project. To publicly acknowledge that fact, we'd like to add you to the tldr-pages organization. - If you accept the invitation, we ask you to make your membership public, and (in case you don't already) start hanging out in our Gitter chat room. + If you accept the invitation, we ask you to make your membership public, and (in case you don't already) start hanging out in our [Matrix chat room](https://matrix.to/#/#tldr-pages:matrix.org). Additionally, consider subscribing to the notifications from the various repositories under the [tldr-pages organization](https://github.com/tldr-pages). As one of the public faces of the tldr-pages project, it's also especially important that you follow and encourage the [project governance principles](https://github.com/tldr-pages/tldr/blob/main/COMMUNITY-ROLES.md). diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 63d6c12786..994f39cc44 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,21 +1,21 @@ # Contributing -[![Gitter chat][gitter-image]][gitter-url] +[![Matrix chat][matrix-image]][matrix-url] [![Merged PRs][prs-merged-image]][prs-merged-url] [![GitHub contributors][contributors-image]][contributors-url] [![CLA assistant][cla-assistant-image]][cla-assistant-url] [![license][license-image]][license-url] -[gitter-url]: https://gitter.im/tldr-pages/tldr -[gitter-image]: https://img.shields.io/badge/chat-on_gitter-deeppink +[matrix-url]: https://matrix.to/#/#tldr-pages:matrix.org +[matrix-image]: https://img.shields.io/matrix/tldr-pages:matrix.org?label=Chat+on+Matrix [prs-merged-url]: https://github.com/tldr-pages/tldr/pulls?q=is:pr+is:merged -[prs-merged-image]: https://img.shields.io/github/issues-pr-closed-raw/tldr-pages/tldr.svg?label=merged+PRs&color=green +[prs-merged-image]: https://img.shields.io/github/issues-pr-closed-raw/tldr-pages/tldr.svg?label=Merged+PRs&color=green [contributors-url]: https://github.com/tldr-pages/tldr/graphs/contributors -[contributors-image]: https://img.shields.io/github/contributors/tldr-pages/tldr.svg +[contributors-image]: https://img.shields.io/github/contributors/tldr-pages/tldr.svg?label=Contributors [cla-assistant-url]: https://cla-assistant.io/tldr-pages/tldr [cla-assistant-image]: https://cla-assistant.io/readme/badge/tldr-pages/tldr [license-url]: https://github.com/tldr-pages/tldr/blob/main/LICENSE.md -[license-image]: https://img.shields.io/badge/license-CC_BY_4.0-blue.svg +[license-image]: https://img.shields.io/badge/license-CC_BY_4.0-blue.svg?label=License Contributions to the tldr-pages project are [most welcome](GOVERNANCE.md)! All `tldr` pages are stored in Markdown right here on GitHub. @@ -23,7 +23,8 @@ Just open an issue or send a pull request and we'll incorporate it as soon as po To get started, please [sign](https://cla-assistant.io/tldr-pages/tldr) the [Contributor License Agreement](https://gist.github.com/waldyrious/e50feec13683e565769fbd58ce503d4e). -*Note*: when submitting a new command, please base your PR against the `main` branch, and check if there's already a pull request in progress for it. +> [!NOTE] +> When submitting a new command, please base your PR against the `main` branch, and check if there's already a pull request in progress for it. ## Guidelines diff --git a/GOVERNANCE.md b/GOVERNANCE.md index 6a4728ee70..a046dd3395 100644 --- a/GOVERNANCE.md +++ b/GOVERNANCE.md @@ -38,7 +38,7 @@ Community members are asked to abide by the following principles: e.g. when setting up services that require passwords, but otherwise all communications that impact the project will either happen in issue and PR discussions, - or in the [Gitter chat room](https://gitter.im/tldr-pages/tldr) + or in the [Matrix chat room](https://matrix.to/#/#tldr-pages:matrix.org) (which is open to all, and publicly logged). 4. **All decisions are made by community consensus**. diff --git a/MAINTAINERS.md b/MAINTAINERS.md index fc49d39544..80b768a674 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -1,8 +1,10 @@ # Maintainers This file contains a list of the maintainers of the tldr-pages project. -Note: only the people marked with **bold** are currently in the indicated role. -The other entries are kept for historical record. + +> [!NOTE] +> Only the people marked with **bold** are currently in the indicated role. +> The other entries are kept for historical record. There are three types of maintainers, as described in [COMMUNITY-ROLES.md](https://github.com/tldr-pages/tldr/blob/main/COMMUNITY-ROLES.md#when-to-change-roles): @@ -39,33 +41,39 @@ If you are an owner of the organization, you can see an automated list - **Sahil Dhiman ([@sahilister](https://github.com/sahilister))**: [27 November 2020](https://github.com/tldr-pages/tldr/issues/4994) - present - **Adam Herst ([@aherst](https://github.com/aherst))**: - [21 April 2021](https://github.com/tldr-pages/tldr/issues/5810) - present + [21 April 2021](https://github.com/tldr-pages/tldr/issues/5810) — present - **Nicolas Kosinski ([@nicokosi](https://github.com/nicokosi))**: [03 May 2021](https://github.com/tldr-pages/tldr/issues/5873) — present - **Patrice Denis ([@patricedenis](https://github.com/patricedenis))**: [10 May 2021](https://github.com/tldr-pages/tldr/issues/5919) — present -- **Lin Cheng Chieh ([@blueskyson](https://github.com/blueskyson))**: - [12 Aug 2021](https://github.com/tldr-pages/tldr/issues/6330) — present -- **Pixel Häußler ([@pixelcmtd](https://github.com/pixelcmtd))**: - [27 Aug 2021](https://github.com/tldr-pages/tldr/issues/6415) — present - **Reinhart Previano Koentjoro ([@reinhart1010](https://github.com/reinhart1010))**: - [23 Nov 2021](https://github.com/tldr-pages/tldr/issues/7404) — present + [23 November 2021](https://github.com/tldr-pages/tldr/issues/7404) — present - **258204 ([@258204](https://github.com/258204))**: [10 December 2021](https://github.com/tldr-pages/tldr/issues/7522) — present - **Nicolas Hansse ([@Nico385412](https://github.com/Nico385412))**: [19 July 2022](https://github.com/tldr-pages/tldr/issues/8224) — present -- **K.B.Dharun Krishna ([@kbdharun](https://github.com/kbdharun))**: - [06 August 2022](https://github.com/tldr-pages/tldr/issues/8309) — present - **Adrien Thebo ([@adrienthebo](https://github.com/adrienthebo))**: [17 August 2022](https://github.com/tldr-pages/tldr/issues/8321) — present - **Cairn ([@CairnThePerson](https://github.com/CairnThePerson))**: [1 September 2022](https://github.com/tldr-pages/tldr/issues/8438) — present +- **Managor ([@Managor](https://github.com/Managor))**: + [4 September 2023](https://github.com/tldr-pages/tldr/issues/10611) — present +- **Lucas Schneider ([@schneiderl](https://github.com/schneiderl))**: + [11 April 2019](https://github.com/tldr-pages/tldr/issues/2898) — [17 January 2020](https://github.com/tldr-pages/tldr/issues/3764), [7 February 2023](https://github.com/tldr-pages/tldr/issues/10674) — present +- **Isaac Vicente ([@isaacvicente](https://github.com/isaacvicente))**: + [20 September 2023](https://github.com/tldr-pages/tldr/issues/10737) — present +- **Darío Hereñú ([@kant](https://github.com/kant))**: + [20 September 2023](https://github.com/tldr-pages/tldr/issues/10738) — present +- **Juri ([@gutjuri](https://github.com/gutjuri))**: + [06 October 2023](https://github.com/tldr-pages/tldr/issues/10874) — present +- **Sebastiaan Speck ([@sebastiaanspeck](https://github.com/sebastiaanspeck))**: + [19 October 2023](https://github.com/tldr-pages/tldr/issues/11075) — present +- **Magrid0 ([@Magrid0](https://github.com/Magrid0))**: + [22 October 2023](https://github.com/tldr-pages/tldr/issues/11159) — present - Owen Voke ([@owenvoke](https://github.com/owenvoke)) [11 January 2018](https://github.com/tldr-pages/tldr/issues/1885) — [26 August 2018](https://github.com/tldr-pages/tldr/issues/2258) - Marco Bonelli ([@mebeim](https://github.com/mebeim)): [28 January 2019](https://github.com/tldr-pages/tldr/issues/2735) — [8 April 2019](https://github.com/tldr-pages/tldr/issues/2874) -- Lucas Schneider ([@schneiderl](https://github.com/schneiderl)): - [11 April 2019](https://github.com/tldr-pages/tldr/issues/2898) — [17 January 2020](https://github.com/tldr-pages/tldr/issues/3764) - Ein Verne ([@einverne](https://github.com/einverne)): [27 October 2019](https://github.com/tldr-pages/tldr/issues/3488) — [6 January 2020](https://github.com/tldr-pages/tldr/issues/3738) - Zlatan Vasović ([@zlatanvasovic](https://github.com/zlatanvasovic)): @@ -90,8 +98,16 @@ If you are an owner of the organization, you can see an automated list [6 September 2018](https://github.com/tldr-pages/tldr/issues/2306) — [21 June 2021](https://github.com/tldr-pages/tldr/issues/6142) - Seth Falco ([@SethFalco](https://github.com/SethFalco)): [19 May 2021](https://github.com/tldr-pages/tldr/issues/5993) - [21 June 2021](https://github.com/tldr-pages/tldr/issues/6149) +- Pixel Häußler ([@pixelcmtd](https://github.com/pixelcmtd)): + [27 August 2021](https://github.com/tldr-pages/tldr/issues/6415) — [16 October 2022](https://github.com/tldr-pages/tldr/pull/9072#issuecomment-1279847932) - Emily Grace Seville ([@EmilySeville7cfg](https://github.com/EmilySeville7cfg)): [19 January 2022](https://github.com/tldr-pages/tldr/issues/1209#issuecomment-285924778) — [24 April 2022](https://github.com/tldr-pages/tldr/issues/8053) +- K.B.Dharun Krishna ([@kbdharun](https://github.com/kbdharun)): + [06 August 2022](https://github.com/tldr-pages/tldr/issues/8309) — [14 December 2022](https://github.com/tldr-pages/tldr/issues/9625) +- Lin Cheng Chieh ([@blueskyson](https://github.com/blueskyson)): + [12 August 2021](https://github.com/tldr-pages/tldr/issues/6330) — [4 January 2023](https://github.com/tldr-pages/tldr/issues/9671) +- Lena ([@acuteenvy](https://github.com/acuteenvy)): + [13 May 2023](https://github.com/tldr-pages/tldr/issues/10187) — [21 June 2023](https://github.com/tldr-pages/tldr/issues/10406) ## Organization members @@ -105,17 +121,15 @@ An automated list can be found [here](https://github.com/orgs/tldr-pages/people) - **Ein Verne ([@einverne](https://github.com/einverne))**: [6 January 2020](https://github.com/tldr-pages/tldr/issues/3738) — present - **Matthew Peveler ([@MasterOdin](https://github.com/MasterOdin))**: - [18 March 2021](https://github.com/tldr-pages/tldr/issues/5473) - present + [18 March 2021](https://github.com/tldr-pages/tldr/issues/5473) — present - **Tan Siret Akıncı ([@yutyo](https://github.com/yutyo))**: - [7 April 2021](https://github.com/tldr-pages/tldr/issues/5702) - present + [7 April 2021](https://github.com/tldr-pages/tldr/issues/5702) — present - **Florian Benscheidt ([@Waples](https://github.com/Waples))**: [19 May 2021](https://github.com/tldr-pages/tldr/issues/5989) — present -- **Muhammad Falak R Wani ([@mfrw](https://github.com/mfrw))**: - [21 June 2021](https://github.com/tldr-pages/tldr/issues/6142) — present - **Seth Falco ([@SethFalco](https://github.com/SethFalco))**: [21 June 2021](https://github.com/tldr-pages/tldr/issues/6149) — present -- **Emily Grace Seville ([@EmilySeville7cfg](https://github.com/EmilySeville7cfg))**: - [25 April 2022](https://github.com/tldr-pages/tldr/issues/8053) — present +- **Lena ([@acuteenvy](https://github.com/acuteenvy))**: + [21 June 2023](https://github.com/tldr-pages/tldr/issues/10406) — present - Owen Voke ([@owenvoke](https://github.com/owenvoke)) [26 August 2018](https://github.com/tldr-pages/tldr/issues/2258) — [8 May 2019](https://github.com/tldr-pages/tldr/issues/2989) - Marco Bonelli ([@mebeim](https://github.com/mebeim)): @@ -127,11 +141,21 @@ An automated list can be found [here](https://github.com/orgs/tldr-pages/people) - Axel Navarro ([@navarroaxel](https://github.com/navarroaxel)): [5 October 2020](https://github.com/tldr-pages/tldr/issues/4504) — [7 April 2021](https://github.com/tldr-pages/tldr/issues/5703) - bl-ue ([@bl-ue](https://github.com/bl-ue)): - [2 February 2021](https://github.com/tldr-pages/tldr/issues/5219) — [25 June 2021](https://gitter.im/tldr-pages/tldr?at=60d615598a40b117282a96d7) + [2 February 2021](https://github.com/tldr-pages/tldr/issues/5219) — [25 June 2021](https://matrix.to/#/!zXiOpjSkFTvtMpsenJ:gitter.im/$qCyBANu8Ub_GKJgwh0zKlVSgWASLYxYJXBn4NDEEQPw) - CleanMachine1 ([@CleanMachine1](https://github.com/CleanMachine1)): [14 June 2021](https://github.com/tldr-pages/tldr/issues/6123) — [14 December 2021](https://github.com/tldr-pages/tldr/issues/7541) - Marcher Simon ([@marchersimon](https://github.com/marchersimon)): [9 April 2021](https://github.com/tldr-pages/tldr/issues/5722) — [9 August 2022](https://github.com/tldr-pages/tldr/issues/7540) +- Emily Grace Seville ([@EmilySeville7cfg](https://github.com/EmilySeville7cfg)): + [25 April 2022](https://github.com/tldr-pages/tldr/issues/8053) — [12 January 2022](https://matrix.to/#/!zXiOpjSkFTvtMpsenJ:gitter.im/$n3Jk7mhIzG6edTVUv6MkAoX_1N5z5MPRj2hclyrfKBI) +- Pixel Häußler ([@pixelcmtd](https://github.com/pixelcmtd)): + [16 October 2022](https://github.com/tldr-pages/tldr/pull/9072#issuecomment-1279847932) — [10 May 2023](https://github.com/tldr-pages/tldr/pull/10056) +- Muhammad Falak R Wani ([@mfrw](https://github.com/mfrw)): + [21 June 2021](https://github.com/tldr-pages/tldr/issues/6142) — [9 June 2023](https://github.com/tldr-pages/tldr/issues/10053) +- K.B.Dharun Krishna ([@kbdharun](https://github.com/kbdharun)): + [14 December 2022](https://github.com/tldr-pages/tldr/issues/9625) — [19 June 2023](https://github.com/tldr-pages/tldr/issues/10057) +- Lin Cheng Chieh ([@blueskyson](https://github.com/blueskyson)): + [4 January 2023](https://github.com/tldr-pages/tldr/issues/9671) — [7 July 2023](https://github.com/tldr-pages/tldr/issues/10054) ## Organization owners @@ -142,21 +166,27 @@ An automated list can be found [here](https://github.com/orgs/tldr-pages/people) - **Romain Prieto ([@rprieto](https://github.com/rprieto))**: created the project on [8 December 2013](https://github.com/tldr-pages/tldr/commit/11264d9b19000734a2d35ecbdbdebc0b0b45aed9) - **Agniva De Sarker ([@agnivade](https://github.com/agnivade))**: - [27 September 2016](https://gitter.im/tldr-pages/tldr?at=57eaedefe4e41c6a4afc2f47) — present + [21 September 2016](https://github.com/tldr-pages/tldr/issues/9899) — present - **Starbeamrainbowlabs ([@sbrl](https://github.com/sbrl))**: - [23 April 2017](https://gitter.im/tldr-pages/tldr?at=58fc6fce3e27cac331b5c397) — present + [19 April 2017](https://github.com/tldr-pages/tldr/issues/9899) — present - **Owen Voke ([@owenvoke](https://github.com/owenvoke))** [8 May 2019](https://github.com/tldr-pages/tldr/issues/2989) — present - **Marco Bonelli ([@mebeim](https://github.com/mebeim))**: [21 December 2019](https://github.com/tldr-pages/tldr/issues/3672) — present -- **Lucas Schneider ([@schneiderl](https://github.com/schneiderl))**: - [3 February 2021](https://github.com/tldr-pages/tldr/issues/5224) — present - **Axel Navarro ([@navarroaxel](https://github.com/navarroaxel))**: - [7 April 2021](https://github.com/tldr-pages/tldr/issues/5703) - present + [7 April 2021](https://github.com/tldr-pages/tldr/issues/5703) — present - **CleanMachine1 ([@CleanMachine1](https://github.com/CleanMachine1))**: - [14 December 2021](https://github.com/tldr-pages/tldr/issues/7541) - present + [14 December 2021](https://github.com/tldr-pages/tldr/issues/7541) — present - **Marcher Simon ([@marchersimon](https://github.com/marchersimon))**: [9 August 2022](https://github.com/tldr-pages/tldr/issues/7540) — present +- **Pixel Häußler ([@pixelcmtd](https://github.com/pixelcmtd))**: + [10 May 2023](https://github.com/tldr-pages/tldr/pull/10056) — present +- **Muhammad Falak R Wani ([@mfrw](https://github.com/mfrw))**: + [9 June 2023](https://github.com/tldr-pages/tldr/pull/10355) — present +- **K.B.Dharun Krishna ([@kbdharun](https://github.com/kbdharun))**: + [19 June 2023](https://github.com/tldr-pages/tldr/issues/10057) — present +- **Lin Cheng Chieh ([@blueskyson](https://github.com/blueskyson))**: + [7 July 2023](https://github.com/tldr-pages/tldr/issues/10054) — present - Igor Shubovych ([@igorshubovych](https://github.com/igorshubovych)): until [18 January 2018](https://github.com/tldr-pages/tldr/issues/1878#issuecomment-358610454) - Ruben Vereecken ([@rubenvereecken](https://github.com/rubenvereecken)): @@ -175,3 +205,5 @@ An automated list can be found [here](https://github.com/orgs/tldr-pages/people) until [26 August 2018](https://github.com/tldr-pages/tldr/issues/2257) - Zlatan Vasović ([@zlatanvasovic](https://github.com/zlatanvasovic)): until [14 December 2021](https://github.com/tldr-pages/tldr/issues/7538) +- Lucas Schneider ([@schneiderl](https://github.com/schneiderl)): + until [7 February 2023](https://github.com/tldr-pages/tldr/issues/10674) diff --git a/README.md b/README.md index 089e8be9d5..53b916e14d 100644 --- a/README.md +++ b/README.md @@ -2,21 +2,21 @@

tldr-pages

[![Build status][github-actions-image]][github-actions-url] -[![Gitter chat][gitter-image]][gitter-url] +[![Matrix chat][matrix-image]][matrix-url] [![Merged PRs][prs-merged-image]][prs-merged-url] [![GitHub contributors][contributors-image]][contributors-url] [![license][license-image]][license-url] [github-actions-url]: https://github.com/tldr-pages/tldr/actions -[github-actions-image]: https://img.shields.io/github/workflow/status/tldr-pages/tldr/CI.svg -[gitter-url]: https://gitter.im/tldr-pages/tldr -[gitter-image]: https://img.shields.io/badge/chat-on_gitter-deeppink +[github-actions-image]: https://img.shields.io/github/actions/workflow/status/tldr-pages/tldr/ci.yml?branch=main&label=Build +[matrix-url]: https://matrix.to/#/#tldr-pages:matrix.org +[matrix-image]: https://img.shields.io/matrix/tldr-pages:matrix.org?label=Chat+on+Matrix [prs-merged-url]: https://github.com/tldr-pages/tldr/pulls?q=is:pr+is:merged -[prs-merged-image]: https://img.shields.io/github/issues-pr-closed-raw/tldr-pages/tldr.svg?label=merged+PRs&color=green +[prs-merged-image]: https://img.shields.io/github/issues-pr-closed-raw/tldr-pages/tldr.svg?label=Merged+PRs&color=green [contributors-url]: https://github.com/tldr-pages/tldr/graphs/contributors -[contributors-image]: https://img.shields.io/github/contributors-anon/tldr-pages/tldr.svg +[contributors-image]: https://img.shields.io/github/contributors-anon/tldr-pages/tldr.svg?label=Contributors [license-url]: https://github.com/tldr-pages/tldr/blob/main/LICENSE.md -[license-image]: https://img.shields.io/badge/license-CC_BY_4.0-blue.svg +[license-image]: https://img.shields.io/badge/license-CC_BY_4.0-blue.svg?label=License ## What is tldr-pages? @@ -27,19 +27,23 @@ to traditional [man pages](https://en.wikipedia.org/wiki/Man_page). Maybe you're new to the command-line world? Perhaps you're just a little rusty or can't always recall the arguments for commands like `lsof`, or `tar`? -It certainly doesn't help that the first option explained in `man tar` is: +It certainly doesn't help that, in the past, the first option explained in `man tar` was: -``` +```console +$ man tar +... -b blocksize Specify the block size, in 512-byte records, for tape drive I/O. As a rule, this argument is only needed when reading from or writing to tape drives, and usually not even then as the default block size of 20 records (10240 bytes) is very common. +... ``` There seems to be room for simpler help pages, focused on practical examples. How about: -![Animated SVG of the tldr client displaying the tar command.](images/tldr.svg) +![Screenshot of the tldr client displaying the tar command in light mode.](images/tldr-light.png#gh-light-mode-only) +![Screenshot of the tldr client displaying the tar command in dark mode.](images/tldr-dark.png#gh-dark-mode-only) This repository is just that: an ever-growing collection of examples for the most common UNIX, Linux, macOS, SunOS, Android and Windows command-line tools. @@ -54,12 +58,18 @@ which is supported by the tldr-pages project maintainers: npm install -g tldr ``` -Alternatively, you can also use the [Python client](https://github.com/tldr-pages/tldr-python-client) which can be installed via `pip3`. +Alternatively, you can also use the [Python client](https://github.com/tldr-pages/tldr-python-client), which can be installed via `pip3`. ```sh pip3 install tldr ``` +Or Mac users can also install our [C Client](https://github.com/tldr-pages/tldr-c-client) using Homebrew. + +```sh +brew install tldr +``` + Then you have direct access to simplified, easy-to-read help for commands, such as `tar`, accessible through typing `tldr tar` instead of the standard `man tar`. @@ -67,7 +77,7 @@ If you want an offline version without installing any software, check out the [PDF version](https://tldr.sh/assets/tldr-book.pdf). For browsing without installing a client to your computer, -see the web client at . +see the web client at (with offline support using PWA). There are also **various other clients** provided by the community, both for the command-line and for other platforms. @@ -96,6 +106,9 @@ to see the overall progress of all translations, and which translations are miss ## Similar projects +- [Command Line Interface Pages](https://github.com/command-line-interface-pages) + allows you to write standardized help pages for CLI, directories and configs. + - [Cheat](https://github.com/cheat/cheat) allows you to create and view interactive cheatsheets on the command-line. It was designed to help remind *nix system administrators of options diff --git a/contributing-guides/git-terminal.md b/contributing-guides/git-terminal.md index 0ebea141b6..ef1cb6c467 100644 --- a/contributing-guides/git-terminal.md +++ b/contributing-guides/git-terminal.md @@ -14,7 +14,8 @@ The overall process should look somewhat like this: 3. Create a feature branch, e.g. named after the command you plan to edit: `git checkout -b {{branch_name}}` - > :warning: It is bad practice to submit a PR from the `main` branch of your forked repository. Please create pull requests from a well named feature branch. + > [!WARNING] + > It is bad practice to submit a PR from the `main` branch of your forked repository. Please create pull requests from a well named feature branch. 4. Make your changes (edit existing files or create new ones) @@ -24,7 +25,8 @@ The overall process should look somewhat like this: 6. Push the commit(s) to your fork: `git push origin {{branch_name}}` - > :warning: Please avoid force-pushing since it makes the review process harder. + > [!WARNING] + > Please avoid force-pushing since it makes the review process harder. 7. Go to the GitHub page for your fork and click the green "Compare & pull request" button. diff --git a/contributing-guides/maintainers-guide.md b/contributing-guides/maintainers-guide.md index 6160fd9a71..10da6a740c 100644 --- a/contributing-guides/maintainers-guide.md +++ b/contributing-guides/maintainers-guide.md @@ -3,14 +3,15 @@ The following guidelines are meant to provide a general basis for the behavior expected of tldr-pages maintainers. -*Note:* This text is a living standard; -that is, it is meant to *describe* the project's maintenance practices, -rather than *prescribe* them. -As a maintainer, you're expected to refer to it for clarifications -about the collaborative workflows of the project, -but also to propose changes to it -that you feel would make it more useful -as a guideline for current and future maintainers. +> [!NOTE] +> This text is a living standard; +> that is, it is meant to *describe* the project's maintenance practices, +> rather than *prescribe* them. +> As a maintainer, you're expected to refer to it for clarification +> about the collaborative workflows of the project, +> but also to propose changes to it +> that you feel would make it more useful +> as a guideline for current and future maintainers. ## I. Responding to contributions @@ -25,8 +26,8 @@ as a guideline for current and future maintainers. You can respond yourself or ask other members to provide their thoughts/opinions. In addition, if possible, try to hang around in the - [Gitter chat room](https://gitter.im/tldr-pages/tldr) - on a regular basis as well, or at least show up every now and then. + [Matrix chat room](https://matrix.to/#/#tldr-pages:matrix.org) + regularly as well, or at least show up every now and then. - **Know when and how to say no**. Sometimes requests or contributions need to be declined, @@ -39,11 +40,11 @@ as a guideline for current and future maintainers. - Always remember to **thank every contribution**, even when it can't be accepted (in fact, especially then). Keep in mind that - [every form of contribution](https://github.com/kentcdodds/all-contributors) + [every form of contribution](https://github.com/all-contributors/all-contributors) (pull request, feature request, bug report, etc.) is a voluntary gift of time offered to the tldr-pages project by someone who cares about it, - so make sure it's clear that that we don't take it for granted. + so make sure it's clear that we don't take it for granted. - Try to **keep the entire contribution process web-based**, if possible, to ensure it is accessible and straightforward. @@ -63,15 +64,15 @@ as a guideline for current and future maintainers. - If a PR fails to get a review from a second maintainer after a few days, the first maintainer should ping others for review. If it still lingers around for **over a week without a second maintainer’s approval**, - the first maintainer can go ahead and merge it. + the first maintainer (if Owner) can go ahead and merge it. Otherwise, a message + can be sent in the chatroom asking other maintainers to review the PR. - If the only issues holding up a merge are **trivial fixes** (typos, syntax errors, etc.), and the author doesn't respond in a day or two, **maintainers can make the necessary changes themselves**, and proceed with the merge process. -- If a PR **stops getting feedback from the submitter** and is marked as stale - by [probot-stale](../.github/workflows/stale.yml), +- If a PR **stops getting feedback from the submitter** for more than a month, any maintainer can choose to take over the PR and make the necessary changes to get the content ready for merging. @@ -85,7 +86,7 @@ as a guideline for current and future maintainers. or if the multiple commits are not semantically independent changes, use the `Squash and merge` method. (Don't forget to clean up the body of the squashed commit message.) - If instead the PR author took the time to craft + If instead, the PR author took the time to craft individual, informative messages for each commit, then use the `Rebase and merge` method, to honor that work and preserve the history of the changes. @@ -93,10 +94,19 @@ as a guideline for current and future maintainers. is that if there are more "dirty" commits than "clean" commits, then prefer squash, else do a rebase. -- Although having push access allows committing directly to the repository, - please **create pull requests for all of your changes**, - except the simplest ones (e.g. typo fixes). +- Although having push access allows committing directly to the repository to all branches (except main), + please **create pull requests for all of your changes**. This ensures that the entire process that regular contributors go through is also exposed to maintainers, who can then identify and address bottlenecks or inconveniences. Similarly, **avoid merging your own PRs** unless approved by other maintainers. + +- At the last week of October, all applicable PRs that wouldn't get merged + in time can be labeled as `hacktoberfest-accepted`. + +## III. Transparency + +- All non-confidential requests/mail made/sent on behalf of the project + should be documented as an issue with the [archive](https://github.com/tldr-pages/tldr/issues?q=label%3Aarchive) label + and must be communicated with other maintainers. +- All repository/organization settings changes must be documented as an issue with the [archive](https://github.com/tldr-pages/tldr/issues?q=label%3Aarchive) label. diff --git a/contributing-guides/style-guide.de.md b/contributing-guides/style-guide.de.md index 945626d5e8..535d803356 100644 --- a/contributing-guides/style-guide.de.md +++ b/contributing-guides/style-guide.de.md @@ -2,11 +2,11 @@ Diese Seite listet alle Regeln für `tldr`-Seiten auf. - ## Layout +## Layout Eine Standard-`tldr`-Seite sollte dem folgenden Format entsprechen: - ``` +```md # befehl > Kurze Beschreibung. @@ -26,21 +26,21 @@ Er wird automatisch bei jeder Pull Request ausgeführt, er kann aber auch manuell installiert werden, um seine Seiten schon vorher zu überprüfen: - ``` +```sh npm install --global tldr-lint tldr-lint {{seite.md}} - ``` +``` Für andere Optionen von `tldr-lint`, wie zum Beispiel das Linten eines ganzen Verzeichnisses: [`tldr tldr-lint`](https://github.com/tldr-pages/tldr/blob/main/pages/common/tldr-lint.md). Alternativ, kann man auch den Alias `tldrl` verwenden. Viele Clients unterstützen die `--render` Flag zum Anzeigen einer Seite: - ``` +```sh tldr --render {{seite.md}} - ``` +``` - ## Token-Syntax +## Token-Syntax Eingaben der Nutzer\*innen sollten die `{{Token}}`-Syntax benutzen, damit `tldr`-Clients sie hervorheben können. @@ -77,15 +77,16 @@ 2. Dateiendungen, wie `.dll`. 3. Befehle, wie `ls`. - ## Serial Comma +## Serial Comma Benutze für eine Liste von 3 oder mehr Elementen ein [serial comma](https://en.wikipedia.org/wiki/Serial_comma), um Mehrdeutigkeiten zu verhindern. > Delete the Git branches, tags and remotes. Das obige Beispiel nutzt kein serial comma und ist somit mehrdeutig: - * Lösche die Git Branches namens `tags` und `remotes`. - * Lösche die Git Branches und die Git Tags und die Git Remotes. + +- Lösche die Git Branches namens `tags` und `remotes`. +- Lösche die Git Branches und die Git Tags und die Git Remotes. Dies kann durch ein Komma vor "and" oder "or" gelöst werden. diff --git a/contributing-guides/style-guide.ko.md b/contributing-guides/style-guide.ko.md index 43a9b03423..8b0dc2dc27 100644 --- a/contributing-guides/style-guide.ko.md +++ b/contributing-guides/style-guide.ko.md @@ -5,6 +5,7 @@ ## 레이아웃 각 페이지의 기본 포맷은 다음 템플릿과 일치해야 하며, 다음과 최대 8개의 명령어 예제를 포함해야 합니다: + ```md # 명령어 이름 @@ -102,6 +103,7 @@ tldr --render path/to/tldr_page.md 토큰을 선택할 때 다음의 가이드라인을 염두에 두십시오: ### Naming + - 짧지만 설명적인 토큰을 사용하세요. - 파일 및 디렉토리 경로에 대한 참조의 경우: `{{path/to/}}`의 포맷을 사용하세요. @@ -125,7 +127,7 @@ tldr --render path/to/tldr_page.md - 만약 명령어가 파일 시스템이나 장치에 돌이킬 수 없는 변경을 수행하는 경우, 모든 예제를 생각 없이 복사하여 붙여넣을 수 없도록 작성하십시오. 예를 들어 `ddrescue --force --no-scrape /dev/sda /dev/sdb` 대신에 `ddrescue --force --no-scrape {{/dev/sdX}} {{/dev/sdY}}`를 사용하고, *block device*에 `/dev/sda1` 대신 `{{/dev/sdXY}}` 자리 표시자를 사용하세요. - 명령어가 많은 수의 명령어를 포함할 수 있는 경우, 다음과 같이 생략하여 표현하세요. - `{{arg1 arg2 ...}}` 여러 옵션 중 하나가 가능한 경우 `{{either|or}}`로 작성합니다. + `{{argument1 argument2 ...}}` 여러 옵션 중 하나가 가능한 경우 `{{either|or}}`로 작성합니다. 일반적으로, 토큰은 가능한 한 직관적이어야 합니다. 명령을 사용하는 방법을 파악하고 값으로 채우십시오. @@ -150,8 +152,9 @@ tldr --render path/to/tldr_page.md > Git brances, tags, remotes를 삭제하세요. 위의 예는 직렬 쉼표를 사용하지 않으므로 다음 두 가지 중 하나를 의미할 수 있습니다. -* `tags`와 `remotes`라는 Git branch들을 삭제하세요. -* Git branches, Git tag, Git remotes를 모두 삭제하세요. + +- `tags`와 `remotes`라는 Git branch들을 삭제하세요. +- Git branches, Git tag, Git remotes를 모두 삭제하세요. 목록의 마지막 요소에서 "and" 또는 "or" 앞에 쉼표를 삽입하면 이 문제를 해결할 수 있습니다. diff --git a/contributing-guides/style-guide.md b/contributing-guides/style-guide.md index 38fad8f48d..c7a1bdbc0e 100644 --- a/contributing-guides/style-guide.md +++ b/contributing-guides/style-guide.md @@ -29,7 +29,7 @@ Example: ```md # krita -> Krita is a sketching and painting program designed for digital artists. +> A sketching and painting program designed for digital artists. > See also: `gimp`. > More information: . @@ -54,7 +54,8 @@ Example: `krita --fullscreen` ``` -> :bulb: The help page can be any documentation/project/tutorial page, not just a man page, +> [!NOTE] +> The help page can be any documentation/project/tutorial page, not just a man page, > but documentation pages are preferred. There is a linter that enforces the format above. @@ -102,24 +103,36 @@ Example: `tldr vim` ``` + - Pre-translated alias page templates can be found [here](https://github.com/tldr-pages/tldr/blob/main/contributing-guides/translation-templates/alias-pages.md). -## Token syntax +## Option syntax -User-provided values should use the `{{token}}` syntax +- Use GNU-style **long options** (like `--help` rather than `-h`) when they are cross-platform compatible (intended to work the same across multiple platforms). +- In other cases, use short options (like `-h`). +- Prefer using a space instead of the equals sign (`=`) to separate options from their arguments (i.e. use `--opt arg` instead of `--opt=arg`), unless the program does not support it. + +## Placeholder syntax + +User-provided values should use the `{{placeholder}}` syntax in order to allow `tldr` clients to highlight them. -Keep the following guidelines in mind when choosing tokens: +Keep the following guidelines in mind when choosing placeholders: ### Naming -- Use short but descriptive tokens, - such as `{{source_file}}` or `{{wallet.txt}}`. -- Use [`snake_case`](https://wikipedia.org/wiki/snake_case) for multi-word tokens. -- Use an actual value rather than a generic placeholder where appropriate. - For example, use `iostat {{2}}` rather than `iostat {{interval_in_secs}}`. + +- Use short but descriptive placeholders, + such as `{{path/to/source_file}}` or `{{path/to/wallet.txt}}`. +- Use [`snake_case`](https://wikipedia.org/wiki/snake_case) for multi-word placeholders. +- Use a generic placeholder rather than an actual value where a generic placeholder is available (but there is an exception to this listed below). For example, use + `iostat {{1..infinity}}` rather than `iostat {{2}}`. + - If there are several consecutive placeholders of the same type + which don't allow adding arbitrary text in them (ranges), then instead of generic placeholders use descriptive ones. For example prefer `input swipe {{x_position}} {{y_position}} {{x_position}} {{y_position}} {{seconds}}` + instead of `input swipe {{-infinity..infinity}} {{-infinity..infinity}} {{-infinity..infinity}} {{-infinity..infinity}} {{1..infinity}}`. ### Paths -- Use `{{filename}}` rather than `{{file_name}}`. + +- Use `{{filename}}` when just file name is expected. - For any reference to paths of files or directories, use the format `{{path/to/}}`, except when the location is implicit. @@ -133,40 +146,84 @@ Keep the following guidelines in mind when choosing tokens: ### Extensions - If a particular extension is expected for the file, append it. - For example, `unrar x {{compressed.rar}}`. + For example, `unrar x {{path/to/compressed.rar}}`. - In case a generic extension is needed, use `{{.ext}}`, but **only** if an extension is required. - For instance, in `find.md`'s example "Find files by extension" (`find {{root_path}} -name '{{*.ext}}'`) + For instance, in `find.md`'s example "Find files by extension" (`find {{path/to/root}} -name '{{*.ext}}'`) using `{{*.ext}}` explains the command without being unnecessarily specific; - while in `wc -l {{file}}` using `{{file}}` (without extension) is sufficient. + while in `wc -l {{path/to/file}}` using `{{path/to/file}}` (without extension) is sufficient. + +### Grouping placeholders + +- If a command can take 0 or more arguments of the same kind, use an ellipsis: `{{placeholder1 placeholder2 ...}}`. + For instance, if multiple paths are expected `{{path/to/directory1 path/to/directory2 ...}}` can be used. +- If a command can take 0 or more arguments of different kinds, use an ellipsis: `{{placeholder1|placeholder2|...}}`. + If there are more than 5 possible values use `|...` after the last item. +- It's impossible to restrict the minimum or (and) maximum placeholder count via `ellipsis`. + +It's up to the program to decide how to handle duplicating values, provided syntax +tells no info about whether items are mutually exclusive or not. ### Special cases + - If a command performs irreversible changes to a file system or devices, - write every example in a way that cannot be thoughtlessly copy-pasted. + write every example in a way that cannot be copy pasted thoughtlessly. For example, instead of `ddrescue --force --no-scrape /dev/sda /dev/sdb` write `ddrescue --force --no-scrape {{/dev/sdX}} {{/dev/sdY}}` and use the `{{/dev/sdXY}}` placeholder for *block devices* instead of `/dev/sda1`. -- If a command can take a variable number of arguments, use an ellipsis: `{{arg1 arg2 ...}}`. - If one of the multiple options is possible, write it as `{{either|or}}`. -In general, tokens should make it as intuitive as possible +In general, placeholders should make it as intuitive as possible to figure out how to use the command and fill it in with values. Technical wording on description lines should use the `backtick` syntax. Use backticks on the following: -- Paths, ex. `package.json`, `/etc/package.json`. -- Extensions, ex. `.dll`. -- Commands, ex. `ls`. +- Paths, e.g. `package.json`, `/etc/package.json`. +- Extensions, e.g. `.dll`. +- Commands, e.g. `ls`. -## Imperative Mood +## Descriptions -Example descriptions have to be phrased in imperative mood. -For example, use `List all files`, instead of `Listing all files` or `File listing`. -This also applies to all translations by default, unless otherwise specified in the language-specific section below. +- Avoid using the page title in the description (e.g. use `A sketching and painting program designed for digital artists` instead of `Krita is a sketching and painting program designed for digital artists`) unless the program name differs from the executable name (e.g. `rg` and Ripgrep). +- Avoid mentioning that the program is used on the command-line (e.g. use `Ripgrep is a recursive line-oriented search tool` instead of `Ripgrep is a recursive line-oriented CLI search tool`). + +### Imperative Mood + +- **All descriptions must be concise and phrased in the imperative mood.** +- This also applies to all translations by default unless otherwise specified in the language-specific section below. +- For example, when writing documentation for `cd`, a tool to check out and work on a specific directory in the Terminal or Command Prompt, **do not** write a lengthy description such as: + +```md +> `cd` is a system tool, available in Windows, macOS, and Linux, to check out a specific directory to get things done in the Command Prompt, Terminal, and PowerShell. +``` + +It should instead be simplified to make it easier for everyone to read: + +```md +> Change the current working directory. +``` + +If you are afraid the commands may differ between platforms or operating systems (e.g. Windows vs macOS), most [tldr pages clients](https://github.com/tldr-pages/tldr/wiki/tldr-pages-clients) will choose the most suitable version of the command. + +In this case, the information of the Windows version of `cd` (stored in `pages/windows/cd.md`) will be displayed by default to Windows users, and a generic/common version (stored in `pages/common/cd.md`) will be displayed for Linux, macOS, and other platforms. + +When writing descriptions for command examples, **check for any grammatical errors**. `Go to the specified directory` is preferred instead of: + +- `Going to the specified directory` (should not be in present participle form) +- `This command will go to the specified directory` (it is clear that this example works for *this* comment) +- `Let's go to the specified directory!` +- `Directory change` (use the active form instead of passive, if possible) + +For instance, instead of `Listing all files:`, `List all files:` can be be used as the example's description below: + +```md +- Listing all files: + + `ls` +``` ## Serial Comma -When declaring a list of 3 or more items, +- When declaring a list of 3 or more items, use a [serial comma](https://en.wikipedia.org/wiki/Serial_comma), also known as the Oxford comma, since omitting it can create ambiguity. @@ -174,8 +231,9 @@ since omitting it can create ambiguity. > Delete the Git branches, tags and remotes. The example above does not use a serial comma, so this could mean one of two things: -* Delete the Git branches named `tags` and `remotes`. -* Delete all of the following: Git branches, Git tags, and Git remotes. + +- Delete the Git branches named `tags` and `remotes`. +- Delete all of the following: Git branches, Git tags, and Git remotes. This can be resolved by inserting a comma before the "and" or "or" in the final element in the list. @@ -185,7 +243,7 @@ This can be resolved by inserting a comma before the "and" or "or" in the final On the `More information` line, prefer linking to the author's provided documentation. -When not available, use as the default fallback. +When not available, use as the default fallback. ## Language-Specific Rules @@ -193,22 +251,33 @@ When not available, use as the default fallback. When Chinese words, Latin words and Arabic numerals are written in the same sentence, more attention must be paid to copywriting. -The following guidelines are applied to Chinese (zh) and traditional Chinese (zh_TW): +The following guidelines are applied to Chinese (`zh`) and traditional Chinese (`zh_TW`) pages: -1. Place one space before/after English words and numbers. - For example, use `列出所有 docker 容器` rather than `列出所有docker容器`. - For example, use `宽度为 50 个字` rather than `宽度为50个字`. -2. Place one space between numbers and units **except** degrees and percentages. - For example, use `容量 50 MB` rather than `容量 50MB`. - For instances of degree and percentage, use `50°C` and `50%` rather than `50 °C` and `50 %`. -3. No additional spaces before/after full-width punctuations. - For example, use `开启 shell,进入交互模式` rather than `开启 shell ,进入交互模式` -4. Use full-width punctuations except for long Latin clauses. - For example, use `嗨,你好。` rather than `嗨, 你好.` -5. Use a half-width punctuation to end a sentence when the last character is half-width. - For example, use `将代码转化为 Python 3.` rather than `将代码转化为 Python 3。` -6. Use precise form for technical terms, and do not use unofficial Chinese abbreviations. - For example, use `Facebook` rather than `facebook`, `fb` or `脸书`. +1. Place one space before/after English words and numbers. + + - For example, use `列出所有 docker 容器` rather than `列出所有docker容器`. + - For example, use `宽度为 50 个字` rather than `宽度为50个字`. + +2. Place one space between numbers and units **except** degrees and percentages. + + - For example, use `容量 50 MB` rather than `容量 50MB`. + - For instances of degree and percentage, use `50°C` and `50%` rather than `50 °C` and `50 %`. + +3. No additional spaces before/after full-width punctuations. + + - For example, use `开启 shell,进入交互模式` rather than `开启 shell ,进入交互模式` + +4. Use full-width punctuations except for long Latin clauses. + + - For example, use `嗨,你好。` rather than `嗨, 你好.` + +5. Use a half-width punctuation to end a sentence when the last character is half-width. + + - For example, use `将代码转化为 Python 3.` rather than `将代码转化为 Python 3。` + +6. Use precise form for technical terms, and do not use unofficial Chinese abbreviations. + + - For example, use `Facebook` rather than `facebook`, `fb` or `脸书`. In order to maintain readability and normalization, please comply with the 6 rules above as much as possible when translating pages into Chinese. diff --git a/contributing-guides/style-guide.zh.md b/contributing-guides/style-guide.zh.md index 3fdddbfcd0..5273b0c876 100644 --- a/contributing-guides/style-guide.zh.md +++ b/contributing-guides/style-guide.zh.md @@ -8,7 +8,7 @@ 首先,你的页面应该看起来像这样: -``` +```md # 命令名称 > 短小精悍的描述。 @@ -28,7 +28,7 @@ 你也可以在提交前在本地测试自己的贡献: -``` +```sh npm install --global tldr-lint tldr-lint {{page.md}} ``` @@ -37,12 +37,11 @@ tldr-lint {{page.md}} 如果你用 tldr-pages 的 Node.js 客户端,你可以在命令后加 `-f` (`--render`) 来在本地预览自己的页面: -``` +```sh tldr --render {{page.md}} ``` - -## 占位符 (token) 语法 +## 占位符(token)语法 当命令涉及用户自己提供的值时,请用 `{{token}}` 语法来使 `tldr` 客户端自动高亮它们: @@ -84,7 +83,7 @@ tldr --render {{page.md}} 以下规则适用于中文(zh)和繁体中文(zh_TW): 1. 在西文单词和数字前后放置一个空格。 - 例如:`列出所有 docker 容器` 而不是 `列出所有docker容器`。 + 例如:`列出所有 docker 容器` 而不是 `列出所有docker容器`。 例如:`宽度为 50 个字` 而不是 `宽度为50个字`。 2. 除了度数和百分比,在数字和单位之间留一个空格。 例如:`容量 50 MB` 而不是 `容量 50MB`。 @@ -101,4 +100,3 @@ tldr --render {{page.md}} 为保持可读性和一致性,将页面翻译成中文时,请尽可能遵守以上 6 条规则。 有关更多中西文混排规则的信息,请参考 [《中文文案排版指北》](https://github.com/sparanoid/chinese-copywriting-guidelines)。 - diff --git a/contributing-guides/translation-templates/alias-pages.md b/contributing-guides/translation-templates/alias-pages.md index 026236af04..59b5a36409 100644 --- a/contributing-guides/translation-templates/alias-pages.md +++ b/contributing-guides/translation-templates/alias-pages.md @@ -11,6 +11,7 @@ The templates can be changed when necessary. [bn](#bn) • [bs](#bs) • [ca](#ca) • +[cs](#cs) • [da](#da) • [de](#de) • [es](#es) • @@ -41,7 +42,9 @@ The templates can be changed when necessary. [uz](#uz) • [zh](#zh) • [zh_TW](#zh_tw) + --- + ### en ```markdown @@ -55,6 +58,7 @@ The templates can be changed when necessary. ``` --- + ### ar ```markdown @@ -68,11 +72,21 @@ The templates can be changed when necessary. ``` --- + ### bn -Not translated yet. +```markdown +# example + +> এই কমান্ড একটি উপনাম `example`. + +- মূল কমান্ডের জন্য ডকুমেন্টেশন দেখুন: + +`tldr example` +``` --- + ### bs ```markdown @@ -86,6 +100,7 @@ Not translated yet. ``` --- + ### ca ```markdown @@ -99,6 +114,21 @@ Not translated yet. ``` --- + +### cs + +```markdown +# example + +> Tento příkaz je aliasem pro `example`. + +- Podívejte se na dokumentaci původního příkazu: + +`tldr example` +``` + +--- + ### da ```markdown @@ -112,6 +142,7 @@ Not translated yet. ``` --- + ### de ```markdown @@ -125,6 +156,7 @@ Not translated yet. ``` --- + ### es ```markdown @@ -138,11 +170,21 @@ Not translated yet. ``` --- + ### fa -Not translated yet. +```markdown +# example + +> این دستور یک نام مستعار از `example` است. + +- مشاهده مستندات دستور اصلی : + +`tldr example` +``` --- + ### fr ```markdown @@ -156,6 +198,7 @@ Not translated yet. ``` --- + ### hi ```markdown @@ -169,6 +212,7 @@ Not translated yet. ``` --- + ### id ```markdown @@ -182,6 +226,7 @@ Not translated yet. ``` --- + ### it ```markdown @@ -195,6 +240,7 @@ Not translated yet. ``` --- + ### ja ```markdown @@ -208,6 +254,7 @@ Not translated yet. ``` --- + ### ko ```markdown @@ -221,6 +268,7 @@ Not translated yet. ``` --- + ### lo ```markdown @@ -234,6 +282,7 @@ Not translated yet. ``` --- + ### ml ```markdown @@ -247,6 +296,7 @@ Not translated yet. ``` --- + ### ne ```markdown @@ -260,6 +310,7 @@ Not translated yet. ``` --- + ### nl ```markdown @@ -273,6 +324,7 @@ Not translated yet. ``` --- + ### no ```markdown @@ -286,6 +338,7 @@ Not translated yet. ``` --- + ### pl ```markdown @@ -293,12 +346,13 @@ Not translated yet. > To polecenie jest aliasem `example`. -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr example` ``` --- + ### pt_BR ```markdown @@ -312,6 +366,7 @@ Not translated yet. ``` --- + ### pt_PT ```markdown @@ -325,11 +380,13 @@ Not translated yet. ``` --- + ### ro Not translated yet. --- + ### ru ```markdown @@ -343,16 +400,27 @@ Not translated yet. ``` --- + ### sh Not translated yet. --- + ### sr -Not translated yet. +```markdown +# example + +> Ова наредба је псеудоним `example`. + +- Погледајте документацију за оригиналну команду: + +`tldr example` +``` --- + ### sv ```markdown @@ -366,6 +434,7 @@ Not translated yet. ``` --- + ### ta ```markdown @@ -379,12 +448,13 @@ Not translated yet. ``` --- + ### th ```markdown # example -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `example`. +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `example` - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: @@ -392,6 +462,7 @@ Not translated yet. ``` --- + ### tr ```markdown @@ -405,6 +476,7 @@ Not translated yet. ``` --- + ### uk ```markdown @@ -418,11 +490,21 @@ Not translated yet. ``` --- + ### uz -Not translated yet. +```markdown +# example + +> Ushbu buyruq taxallus `example`. + +- Asl buyruq uchun hujjatlarni ko'rish: + +`tldr example` +``` --- + ### zh ```markdown @@ -436,6 +518,7 @@ Not translated yet. ``` --- + ### zh_TW ```markdown diff --git a/contributing-guides/translation-templates/common-arguments.md b/contributing-guides/translation-templates/common-arguments.md index ccdbf1a656..cdae611277 100644 --- a/contributing-guides/translation-templates/common-arguments.md +++ b/contributing-guides/translation-templates/common-arguments.md @@ -11,10 +11,11 @@ Only the left-alignment of the header gets lost and has to be re-added again (`| | bn | | | | | | | bs | | | | | | | ca | camí/al/fitxer | camí/al/directori | camí/al/fitxer_o_directori | paquet | nom_usuari | +| cs | cesta/k/souboru | cesta/k/adresari | cesta/k/souboru_ci_adresari | balíček | jmeno_uzivatele | | da | sti/til/fil | sti/til/mappe | sti/til/fil_eller_mappe | pakke | brugernavn | | de | pfad/zu/datei | pfad/zu/verzeichnis | pfad/zu/datei_oder_verzeichnis | paket | benutzername | | es | ruta/al/archivo | ruta/al/directorio | ruta/al/archivo_o_directorio | paquete | nombre_de_usuario | -| fa | | | | | | +| fa | مسیر/به/فایل | مسیر/به/پوشه | مسیر/به/فایل_یا_پوشه | بسته | نام کاربری | | fr | chemin/vers/fichier | chemin/vers/dossier | chemin/vers/fichier_ou_dossier | paquet | nom_d_utilisateur | | hi | फ़ाइल/का/पथ | निर्देशिका/का/पथ | फ़ाइल_या_निर्देशिका/का/पथ | पैकेज | उपयोगकर्ता_नाम | | id | jalan/menuju/file | jalan/menuju/direktori | jalan/menuju/file_atau_direktori | paket | nama_pengguna | @@ -23,11 +24,11 @@ Only the left-alignment of the header gets lost and has to be re-added again (`| | ko | 경로/대상/파일 | 경로/대상/폴더 | 경로/대상/파일_또는_폴더 | 패키지 | 사용자 명 | | ml |ഫയലിലേക്കുള്ള/പാത |ഡയറക്ടറിയിലേക്കുള്ള/പാത |ഫയലിലേക്കോ_ഡയറക്ടറിയിലേക്കോ/ഉള്ള/പാത |പാക്കേജ് |ഉപയോക്തൃനാമം | | ne | फाइल/को/पथ | निर्देशिका/को/पथ | फाइल_वा_निर्देशिका/को/पथ | प्याकेज | प्रयोगकर्ता_नाम | -| nl | pad/naar/bestand | pad/naar/directory | pad/naar/bestand_of_directory | | | +| nl | pad/naar/bestand | pad/naar/map | pad/naar/bestand_of_map | pakket | gebruikersnaam | | no | | | | | | | pl | ścieżka/do/pliku | ścieżka/do/katalogu | ścieżka/do/pliku_lub_katalogu | pakiet | nazwa_użytkownika | | pt_BR | caminho/para/arquivo | caminho/para/diretorio | caminho/para/arquivo_ou_diretorio | pacote | nome_do_usuario | -| pt_PT | | | | | | +| pt_PT | diretório/ficheiro | diretório/ficheiro_ou_diretório | pacote | | | ro | | | | | | | ru | путь/до/файла | путь/до/папки | путь/до/файла_или_папки | пакет | имя_пользователя | | sh | | | | | | diff --git a/contributing-guides/translation-templates/subcommand-mention.md b/contributing-guides/translation-templates/subcommand-mention.md index 1c7225f3d7..df7c020a94 100644 --- a/contributing-guides/translation-templates/subcommand-mention.md +++ b/contributing-guides/translation-templates/subcommand-mention.md @@ -10,6 +10,7 @@ This file contains the translation templates of this notice. [bn](#bn) • [bs](#bs) • [ca](#ca) • +[cs](#cs) • [da](#da) • [de](#de) • [es](#es) • @@ -42,6 +43,7 @@ This file contains the translation templates of this notice. [zh_TW](#zh_tw) --- + ### en ```markdown @@ -49,6 +51,7 @@ Some subcommands such as `example command` have their own usage documentation. ``` --- + ### ar ```markdown @@ -56,16 +59,19 @@ Some subcommands such as `example command` have their own usage documentation. ``` --- + ### bn Not translated yet. --- + ### bs Not translated yet. --- + ### ca ```markdown @@ -73,13 +79,23 @@ Alguns subcomandaments com `example command` tenen la seva pròpia documentació ``` --- -### da + +### cs ```markdown -Visse underkommandoer såsom `example command` har sin egen dokumentation. +Některé dílčí příkazy jako je `example command` mají svou vlastní dokumentaci. ``` --- + +### da + +```markdown +Visse underkommandoer såsom `example command` har sin egen dokumentation. +``` + +--- + ### de ```markdown @@ -87,6 +103,7 @@ Manche Unterbefehle wie `example command` sind separat dokumentiert. ``` --- + ### es ```markdown @@ -94,11 +111,15 @@ Algunos subcomandos, como `example command`, tienen su propia documentación de ``` --- + ### fa -Not translated yet. +```markdown +برخی از دستورات فرعی مانند `example command` سند استفاده خاص خودشون رو دارند. +``` --- + ### fr ```markdown @@ -106,6 +127,7 @@ Certaines sous-commandes comme `example command` ont leur propre documentation. ``` --- + ### hi ```markdown @@ -113,6 +135,7 @@ Certaines sous-commandes comme `example command` ont leur propre documentation. ``` --- + ### id ```markdown @@ -120,6 +143,7 @@ Kami mempunyai dokumentasi terpisah untuk menggunakan subperintah seperti `examp ``` --- + ### it ```markdown @@ -127,6 +151,7 @@ Alcuni comandi aggiuntivi, come `example command`, hanno la propria documentazio ``` --- + ### ja ```markdown @@ -134,21 +159,27 @@ Alcuni comandi aggiuntivi, come `example command`, hanno la propria documentazio ``` --- + ### ko -Not translated yet. +```markdown +`example command`와 같은 일부 하위 명령에는 자체 사용 설명서가 있습니다. +``` --- + ### lo Not translated yet. --- + ### ml Not translated yet. --- + ### ne ```markdown @@ -156,6 +187,7 @@ Not translated yet. ``` --- + ### nl ```markdown @@ -163,16 +195,19 @@ Sommige subcommando's zoals `example command` hebben een eigen documentatie pagi ``` --- + ### no Not translated yet. --- + ### pl Not translated yet. --- + ### pt_BR ```markdown @@ -180,6 +215,7 @@ Alguns subcomandos como `example command` tem sua própia documentação de uso. ``` --- + ### pt_PT ```markdown @@ -187,11 +223,13 @@ Alguns subcomandos, como `example command`, tem a sua própria documentação de ``` --- + ### ro Not translated yet. --- + ### ru ```markdown @@ -199,24 +237,27 @@ Not translated yet. ``` --- + ### sh Not translated yet. --- + ### sr Not translated yet. --- + ### sv ```markdown En del underkommandon som t.ex: `example command` har sin egen användningsdokumentation. ``` - --- + ### ta ```markdown @@ -224,11 +265,13 @@ En del underkommandon som t.ex: `example command` har sin egen användningsdokum ``` --- + ### th Not translated yet. --- + ### tr ```markdown @@ -236,6 +279,7 @@ Not translated yet. ``` --- + ### uk ```markdown @@ -243,11 +287,13 @@ Not translated yet. ``` --- + ### uz Not translated yet. --- + ### zh ```markdown @@ -255,6 +301,7 @@ Not translated yet. ``` --- + ### zh_TW ```markdown diff --git a/images/tldr-dark.png b/images/tldr-dark.png new file mode 100644 index 0000000000..a68ff58034 Binary files /dev/null and b/images/tldr-dark.png differ diff --git a/images/tldr-light.png b/images/tldr-light.png new file mode 100644 index 0000000000..052159deb0 Binary files /dev/null and b/images/tldr-light.png differ diff --git a/images/tldr.svg b/images/tldr.svg deleted file mode 100644 index 671549b4d6..0000000000 --- a/images/tldr.svg +++ /dev/null @@ -1,494 +0,0 @@ - - - - - - - - - ~ - - - - ~ - tldr - - - - ~ - tldr - tar - - - tar - - - Archiving - utility. - - - Often - combined - with - a - compression - method, - such - as - gzip - or - bzip2. - - - More - information: - https://www.gnu.org/software/tar. - - - - - [c]reate - an - archive - from - [f]iles: - - - tar - cf - target.tar - file1 - file2 - file3 - - - - - [c]reate - a - g[z]ipped - archive - from - [f]iles: - - - tar - czf - target.tar.gz - file1 - file2 - file3 - - - - - [c]reate - a - g[z]ipped - archive - from - a - directory - using - relative - paths: - - - tar - czf - target.tar.gz - --directory= - path/to/directory - . - - - - - E[x]tract - a - (compressed) - archive - [f]ile - into - the - current - directory: - - - tar - xf - source.tar[.gz|.bz2|.xz] - - - - - E[x]tract - a - (compressed) - archive - [f]ile - into - the - target - directory: - - - tar - xf - source.tar[.gz|.bz2|.xz] - --directory= - directory - - - - - [c]reate - a - compressed - archive - from - [f]iles, - using - [a]rchive - suffix - to - determine - the - compression - program: - - - tar - caf - target.tar.xz - file1 - file2 - file3 - - - - - Lis[t] - the - contents - of - a - tar - [f]ile - [v]erbosely: - - - tar - tvf - source.tar - - - - - E[x]tract - [f]iles - matching - a - pattern: - - - tar - xf - source.tar - --wildcards - " - *.html - " - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ~ - t - - - - - - ~ - tl - - - - - - ~ - tld - - - - - - - - - - - - - - - - ~ - tldr - t - - - - - - ~ - tldr - ta - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - tar - xf - source.tar[.gz|.bz2|.xz] - --directory= - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/package-lock.json b/package-lock.json index 843664708f..0e0a99c691 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,12 +7,59 @@ "name": "tldr-pages", "license": "SEE LICENSE IN LICENSE.md", "dependencies": { - "glob": "7.2.0", - "markdownlint-cli": "^0.31.1", + "glob": "10.3.10", + "markdownlint-cli": "^0.37.0", "tldr-lint": "^0.0.13" }, "devDependencies": { - "husky": "^7.0.4" + "husky": "^8.0.3" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/argparse": { @@ -26,26 +73,49 @@ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "balanced-match": "^1.0.0" } }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, "node_modules/commander": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.0.0.tgz", - "integrity": "sha512-JJfP2saEKbQqvW+FI93OYUB4ByV5cizMpFMiiJI8xDbBvQvSkIk0VvQdn1CZ8mqAO8Loq2h0gYTYtDFUZUeERw==", + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz", + "integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==", "engines": { - "node": "^12.20.0 || >=14" + "node": ">=16" } }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } }, "node_modules/deep-extend": { "version": "0.6.0", @@ -55,18 +125,41 @@ "node": ">=4.0.0" } }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, "node_modules/entities": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", - "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", + "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==", + "engines": { + "node": ">=0.12" + }, "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, "node_modules/get-stdin": { "version": "9.0.0", @@ -80,67 +173,85 @@ } }, "node_modules/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" }, "engines": { - "node": "*" + "node": ">=16 || 14 >=14.17" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/husky": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/husky/-/husky-7.0.4.tgz", - "integrity": "sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==", + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", + "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", "dev": true, "bin": { "husky": "lib/bin.js" }, "engines": { - "node": ">=12" + "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/typicode" } }, "node_modules/ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", "engines": { "node": ">= 4" } }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "node_modules/ini": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz", + "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/ini": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", - "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "engines": { - "node": ">=10" + "node": ">=8" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" } }, "node_modules/js-yaml": { @@ -155,26 +266,34 @@ } }, "node_modules/jsonc-parser": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", - "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==" + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" }, "node_modules/linkify-it": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz", - "integrity": "sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-4.0.1.tgz", + "integrity": "sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==", "dependencies": { "uc.micro": "^1.0.1" } }, + "node_modules/lru-cache": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.0.tgz", + "integrity": "sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==", + "engines": { + "node": "14 || >=16.14" + } + }, "node_modules/markdown-it": { - "version": "12.3.2", - "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz", - "integrity": "sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==", + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-13.0.1.tgz", + "integrity": "sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==", "dependencies": { "argparse": "^2.0.1", - "entities": "~2.1.0", - "linkify-it": "^3.0.1", + "entities": "~3.0.1", + "linkify-it": "^4.0.1", "mdurl": "^1.0.1", "uc.micro": "^1.0.5" }, @@ -183,106 +302,237 @@ } }, "node_modules/markdownlint": { - "version": "0.25.1", - "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.25.1.tgz", - "integrity": "sha512-AG7UkLzNa1fxiOv5B+owPsPhtM4D6DoODhsJgiaNg1xowXovrYgOnLqAgOOFQpWOlHFVQUzjMY5ypNNTeov92g==", + "version": "0.31.1", + "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.31.1.tgz", + "integrity": "sha512-CKMR2hgcIBrYlIUccDCOvi966PZ0kJExDrUi1R+oF9PvqQmCrTqjOsgIvf2403OmJ+CWomuzDoylr6KbuMyvHA==", "dependencies": { - "markdown-it": "12.3.2" + "markdown-it": "13.0.1", + "markdownlint-micromark": "0.1.7" }, "engines": { - "node": ">=12" + "node": ">=16" } }, "node_modules/markdownlint-cli": { - "version": "0.31.1", - "resolved": "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.31.1.tgz", - "integrity": "sha512-keIOMwQn+Ch7MoBwA+TdkyVMuxAeZFEGmIIlvwgV0Z1TGS5MxPnRr29XCLhkNzCHU+uNKGjU+VEjLX+Z9kli6g==", + "version": "0.37.0", + "resolved": "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.37.0.tgz", + "integrity": "sha512-hNKAc0bWBBuVhJbSWbUhRzavstiB4o1jh3JeSpwC4/dt6eJ54lRfYHRxVdzVp4qGWBKbeE6Pg490PFEfrKjqSg==", "dependencies": { - "commander": "~9.0.0", + "commander": "~11.0.0", "get-stdin": "~9.0.0", - "glob": "~7.2.0", - "ignore": "~5.2.0", + "glob": "~10.3.4", + "ignore": "~5.2.4", "js-yaml": "^4.1.0", - "jsonc-parser": "~3.0.0", - "markdownlint": "~0.25.1", - "markdownlint-rule-helpers": "~0.16.0", - "minimatch": "~3.0.5", - "run-con": "~1.2.10" + "jsonc-parser": "~3.2.0", + "markdownlint": "~0.31.1", + "minimatch": "~9.0.3", + "run-con": "~1.3.2" }, "bin": { "markdownlint": "markdownlint.js" }, "engines": { - "node": ">=12" + "node": ">=16" } }, - "node_modules/markdownlint-cli/node_modules/minimatch": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.7.tgz", - "integrity": "sha512-pYjbG0o9W2Wb3KVBuV6s7R/bzS/iS3HPiHcFcDee5GGiN1M5MErXqgS4jGn8pwVwTZAoy7B8bYb/+AqQU0NhZA==", - "dependencies": { - "brace-expansion": "^1.1.7" - }, + "node_modules/markdownlint-micromark": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/markdownlint-micromark/-/markdownlint-micromark-0.1.7.tgz", + "integrity": "sha512-BbRPTC72fl5vlSKv37v/xIENSRDYL/7X/XoFzZ740FGEbs9vZerLrIkFRY0rv7slQKxDczToYuMmqQFN61fi4Q==", "engines": { - "node": "*" + "node": ">=16" } }, - "node_modules/markdownlint-rule-helpers": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/markdownlint-rule-helpers/-/markdownlint-rule-helpers-0.16.0.tgz", - "integrity": "sha512-oEacRUVeTJ5D5hW1UYd2qExYI0oELdYK72k1TKGvIeYJIbqQWAz476NAc7LNixSySUhcNl++d02DvX0ccDk9/w==" - }, "node_modules/mdurl": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", - "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=" + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==" }, "node_modules/minimatch": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.1.tgz", - "integrity": "sha512-reLxBcKUPNBnc/sVtAbxgRVFSegoGeLaSjmphNhcwcolhYLRgtJscn5mRl6YRZNQv40Y7P6JM2YhSIsbL9OB5A==", + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", "dependencies": { - "brace-expansion": "^1.1.7" + "brace-expansion": "^2.0.1" }, "engines": { - "node": "*" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dependencies": { - "wrappy": "1" + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "node_modules/minipass": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-6.0.2.tgz", + "integrity": "sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w==", "engines": { - "node": ">=0.10.0" + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-scurry": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "dependencies": { + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/run-con": { - "version": "1.2.10", - "resolved": "https://registry.npmjs.org/run-con/-/run-con-1.2.10.tgz", - "integrity": "sha512-n7PZpYmMM26ZO21dd8y3Yw1TRtGABjRtgPSgFS/nhzfvbJMXFtJhJVyEgayMiP+w/23craJjsnfDvx4W4ue/HQ==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/run-con/-/run-con-1.3.2.tgz", + "integrity": "sha512-CcfE+mYiTcKEzg0IqS08+efdnH0oJ3zV0wSUFBNrMHMuxCtXvBCLzCJHatwuXDcu/RlhjTziTo/a1ruQik6/Yg==", "dependencies": { "deep-extend": "^0.6.0", - "ini": "~2.0.0", - "minimist": "^1.2.5", + "ini": "~4.1.0", + "minimist": "^1.2.8", "strip-json-comments": "~3.1.1" }, "bin": { "run-con": "cli.js" } }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", + "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, "node_modules/strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", @@ -319,13 +569,135 @@ "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==" }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } } }, "dependencies": { + "@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "requires": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + } + }, + "@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "optional": true + }, + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" + }, + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" + }, "argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", @@ -337,38 +709,69 @@ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "balanced-match": "^1.0.0" } }, - "commander": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.0.0.tgz", - "integrity": "sha512-JJfP2saEKbQqvW+FI93OYUB4ByV5cizMpFMiiJI8xDbBvQvSkIk0VvQdn1CZ8mqAO8Loq2h0gYTYtDFUZUeERw==" + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "commander": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz", + "integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==" + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } }, "deep-extend": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" }, - "entities": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", - "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==" + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "entities": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", + "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==" + }, + "foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "requires": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + } }, "get-stdin": { "version": "9.0.0", @@ -376,47 +779,51 @@ "integrity": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==" }, "glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" } }, "husky": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/husky/-/husky-7.0.4.tgz", - "integrity": "sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==", + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", + "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", "dev": true }, "ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==" - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==" }, "ini": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz", + "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==" + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + }, + "isexe": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", - "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "requires": { + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" + } }, "js-yaml": { "version": "4.1.0", @@ -427,112 +834,194 @@ } }, "jsonc-parser": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", - "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==" + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" }, "linkify-it": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz", - "integrity": "sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-4.0.1.tgz", + "integrity": "sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==", "requires": { "uc.micro": "^1.0.1" } }, + "lru-cache": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.0.tgz", + "integrity": "sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==" + }, "markdown-it": { - "version": "12.3.2", - "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz", - "integrity": "sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==", + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-13.0.1.tgz", + "integrity": "sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==", "requires": { "argparse": "^2.0.1", - "entities": "~2.1.0", - "linkify-it": "^3.0.1", + "entities": "~3.0.1", + "linkify-it": "^4.0.1", "mdurl": "^1.0.1", "uc.micro": "^1.0.5" } }, "markdownlint": { - "version": "0.25.1", - "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.25.1.tgz", - "integrity": "sha512-AG7UkLzNa1fxiOv5B+owPsPhtM4D6DoODhsJgiaNg1xowXovrYgOnLqAgOOFQpWOlHFVQUzjMY5ypNNTeov92g==", + "version": "0.31.1", + "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.31.1.tgz", + "integrity": "sha512-CKMR2hgcIBrYlIUccDCOvi966PZ0kJExDrUi1R+oF9PvqQmCrTqjOsgIvf2403OmJ+CWomuzDoylr6KbuMyvHA==", "requires": { - "markdown-it": "12.3.2" + "markdown-it": "13.0.1", + "markdownlint-micromark": "0.1.7" } }, "markdownlint-cli": { - "version": "0.31.1", - "resolved": "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.31.1.tgz", - "integrity": "sha512-keIOMwQn+Ch7MoBwA+TdkyVMuxAeZFEGmIIlvwgV0Z1TGS5MxPnRr29XCLhkNzCHU+uNKGjU+VEjLX+Z9kli6g==", + "version": "0.37.0", + "resolved": "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.37.0.tgz", + "integrity": "sha512-hNKAc0bWBBuVhJbSWbUhRzavstiB4o1jh3JeSpwC4/dt6eJ54lRfYHRxVdzVp4qGWBKbeE6Pg490PFEfrKjqSg==", "requires": { - "commander": "~9.0.0", + "commander": "~11.0.0", "get-stdin": "~9.0.0", - "glob": "~7.2.0", - "ignore": "~5.2.0", + "glob": "~10.3.4", + "ignore": "~5.2.4", "js-yaml": "^4.1.0", - "jsonc-parser": "~3.0.0", - "markdownlint": "~0.25.1", - "markdownlint-rule-helpers": "~0.16.0", - "minimatch": "~3.0.5", - "run-con": "~1.2.10" - }, - "dependencies": { - "minimatch": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.7.tgz", - "integrity": "sha512-pYjbG0o9W2Wb3KVBuV6s7R/bzS/iS3HPiHcFcDee5GGiN1M5MErXqgS4jGn8pwVwTZAoy7B8bYb/+AqQU0NhZA==", - "requires": { - "brace-expansion": "^1.1.7" - } - } + "jsonc-parser": "~3.2.0", + "markdownlint": "~0.31.1", + "minimatch": "~9.0.3", + "run-con": "~1.3.2" } }, - "markdownlint-rule-helpers": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/markdownlint-rule-helpers/-/markdownlint-rule-helpers-0.16.0.tgz", - "integrity": "sha512-oEacRUVeTJ5D5hW1UYd2qExYI0oELdYK72k1TKGvIeYJIbqQWAz476NAc7LNixSySUhcNl++d02DvX0ccDk9/w==" + "markdownlint-micromark": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/markdownlint-micromark/-/markdownlint-micromark-0.1.7.tgz", + "integrity": "sha512-BbRPTC72fl5vlSKv37v/xIENSRDYL/7X/XoFzZ740FGEbs9vZerLrIkFRY0rv7slQKxDczToYuMmqQFN61fi4Q==" }, "mdurl": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", - "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=" + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==" }, "minimatch": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.1.tgz", - "integrity": "sha512-reLxBcKUPNBnc/sVtAbxgRVFSegoGeLaSjmphNhcwcolhYLRgtJscn5mRl6YRZNQv40Y7P6JM2YhSIsbL9OB5A==", + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", "requires": { - "brace-expansion": "^1.1.7" + "brace-expansion": "^2.0.1" } }, "minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "minipass": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-6.0.2.tgz", + "integrity": "sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w==" + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + }, + "path-scurry": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", "requires": { - "wrappy": "1" + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" } }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" - }, "run-con": { - "version": "1.2.10", - "resolved": "https://registry.npmjs.org/run-con/-/run-con-1.2.10.tgz", - "integrity": "sha512-n7PZpYmMM26ZO21dd8y3Yw1TRtGABjRtgPSgFS/nhzfvbJMXFtJhJVyEgayMiP+w/23craJjsnfDvx4W4ue/HQ==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/run-con/-/run-con-1.3.2.tgz", + "integrity": "sha512-CcfE+mYiTcKEzg0IqS08+efdnH0oJ3zV0wSUFBNrMHMuxCtXvBCLzCJHatwuXDcu/RlhjTziTo/a1ruQik6/Yg==", "requires": { "deep-extend": "^0.6.0", - "ini": "~2.0.0", - "minimist": "^1.2.5", + "ini": "~4.1.0", + "minimist": "^1.2.8", "strip-json-comments": "~3.1.1" } }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + }, + "signal-exit": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", + "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==" + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "string-width-cjs": { + "version": "npm:string-width@4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "strip-ansi-cjs": { + "version": "npm:strip-ansi@6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + } + } + }, "strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", @@ -558,10 +1047,71 @@ "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==" }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "requires": { + "isexe": "^2.0.0" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + }, + "wrap-ansi-cjs": { + "version": "npm:wrap-ansi@7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + } + } } } } diff --git a/package.json b/package.json index 74853ad53f..873e34090b 100644 --- a/package.json +++ b/package.json @@ -6,12 +6,12 @@ "repository": "tldr-pages/tldr", "homepage": "https://tldr.sh/", "dependencies": { - "glob": "7.2.0", - "markdownlint-cli": "^0.31.1", + "glob": "10.3.10", + "markdownlint-cli": "^0.37.0", "tldr-lint": "^0.0.13" }, "devDependencies": { - "husky": "^7.0.4" + "husky": "^8.0.3" }, "scripts": { "lint-markdown": "markdownlint pages*/**/*.md", diff --git a/pages.ar/common/bundler.md b/pages.ar/common/bundler.md new file mode 100644 index 0000000000..2eccbb7509 --- /dev/null +++ b/pages.ar/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> هذا الأمر هو اسم مستعار لـ `bundle`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr bundle` diff --git a/pages.ar/common/clamav.md b/pages.ar/common/clamav.md new file mode 100644 index 0000000000..6953574f5c --- /dev/null +++ b/pages.ar/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> هذا الأمر هو اسم مستعار لـ `clamdscan`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr clamdscan` diff --git a/pages.ar/common/clang-cpp.md b/pages.ar/common/clang-cpp.md new file mode 100644 index 0000000000..3bd1cb91c9 --- /dev/null +++ b/pages.ar/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> هذا الأمر هو اسم مستعار لـ `clang++`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr clang++` diff --git a/pages.ar/common/clojure.md b/pages.ar/common/clojure.md new file mode 100644 index 0000000000..ea793663db --- /dev/null +++ b/pages.ar/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> هذا الأمر هو اسم مستعار لـ `clj`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr clj` diff --git a/pages.ar/common/cola.md b/pages.ar/common/cola.md new file mode 100644 index 0000000000..84895ac7d7 --- /dev/null +++ b/pages.ar/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> هذا الأمر هو اسم مستعار لـ `git-cola`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr git-cola` diff --git a/pages.ar/common/cron.md b/pages.ar/common/cron.md new file mode 100644 index 0000000000..7b2e2bc2a9 --- /dev/null +++ b/pages.ar/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> هذا الأمر هو اسم مستعار لـ `crontab`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr crontab` diff --git a/pages.ar/common/fossil-ci.md b/pages.ar/common/fossil-ci.md new file mode 100644 index 0000000000..63ddb0e88f --- /dev/null +++ b/pages.ar/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> هذا الأمر هو اسم مستعار لـ `fossil-commit`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr fossil-commit` diff --git a/pages.ar/common/fossil-delete.md b/pages.ar/common/fossil-delete.md new file mode 100644 index 0000000000..00974671c2 --- /dev/null +++ b/pages.ar/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> هذا الأمر هو اسم مستعار لـ `fossil rm`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr fossil rm` diff --git a/pages.ar/common/fossil-forget.md b/pages.ar/common/fossil-forget.md new file mode 100644 index 0000000000..5d034c6bd9 --- /dev/null +++ b/pages.ar/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> هذا الأمر هو اسم مستعار لـ `fossil rm`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr fossil rm` diff --git a/pages.ar/common/fossil-new.md b/pages.ar/common/fossil-new.md new file mode 100644 index 0000000000..6f2d22adb7 --- /dev/null +++ b/pages.ar/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> هذا الأمر هو اسم مستعار لـ `fossil-init`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr fossil-init` diff --git a/pages.ar/common/gh-cs.md b/pages.ar/common/gh-cs.md new file mode 100644 index 0000000000..320a61b029 --- /dev/null +++ b/pages.ar/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> هذا الأمر هو اسم مستعار لـ `gh-codespace`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr gh-codespace` diff --git a/pages.ar/common/gnmic-sub.md b/pages.ar/common/gnmic-sub.md new file mode 100644 index 0000000000..1f6704e1ab --- /dev/null +++ b/pages.ar/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> هذا الأمر هو اسم مستعار لـ `gnmic subscribe`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr gnmic subscribe` diff --git a/pages.ar/common/google-chrome.md b/pages.ar/common/google-chrome.md new file mode 100644 index 0000000000..c84e045196 --- /dev/null +++ b/pages.ar/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> هذا الأمر هو اسم مستعار لـ `chromium`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr chromium` diff --git a/pages.ar/common/hx.md b/pages.ar/common/hx.md new file mode 100644 index 0000000000..b89aea9675 --- /dev/null +++ b/pages.ar/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> هذا الأمر هو اسم مستعار لـ `helix`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr helix` diff --git a/pages.ar/common/kafkacat.md b/pages.ar/common/kafkacat.md new file mode 100644 index 0000000000..32e24ab354 --- /dev/null +++ b/pages.ar/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> هذا الأمر هو اسم مستعار لـ `kcat`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr kcat` diff --git a/pages.ar/common/llvm-ar.md b/pages.ar/common/llvm-ar.md new file mode 100644 index 0000000000..3eddc79fff --- /dev/null +++ b/pages.ar/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> هذا الأمر هو اسم مستعار لـ `ar`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr ar` diff --git a/pages.ar/common/llvm-g++.md b/pages.ar/common/llvm-g++.md new file mode 100644 index 0000000000..8a7da9c444 --- /dev/null +++ b/pages.ar/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> هذا الأمر هو اسم مستعار لـ `clang++`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr clang++` diff --git a/pages.ar/common/llvm-gcc.md b/pages.ar/common/llvm-gcc.md new file mode 100644 index 0000000000..5d0737f3f9 --- /dev/null +++ b/pages.ar/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> هذا الأمر هو اسم مستعار لـ `clang`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr clang` diff --git a/pages.ar/common/llvm-nm.md b/pages.ar/common/llvm-nm.md new file mode 100644 index 0000000000..610aee6f95 --- /dev/null +++ b/pages.ar/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> هذا الأمر هو اسم مستعار لـ `nm`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr nm` diff --git a/pages.ar/common/llvm-objdump.md b/pages.ar/common/llvm-objdump.md new file mode 100644 index 0000000000..e5e95f4e8b --- /dev/null +++ b/pages.ar/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> هذا الأمر هو اسم مستعار لـ `objdump`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr objdump` diff --git a/pages.ar/common/llvm-strings.md b/pages.ar/common/llvm-strings.md new file mode 100644 index 0000000000..0e410e3234 --- /dev/null +++ b/pages.ar/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> هذا الأمر هو اسم مستعار لـ `strings`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr strings` diff --git a/pages.ar/common/lzcat.md b/pages.ar/common/lzcat.md new file mode 100644 index 0000000000..79d4fbb886 --- /dev/null +++ b/pages.ar/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> هذا الأمر هو اسم مستعار لـ `xz`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr xz` diff --git a/pages.ar/common/lzma.md b/pages.ar/common/lzma.md new file mode 100644 index 0000000000..91bc6fb526 --- /dev/null +++ b/pages.ar/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> هذا الأمر هو اسم مستعار لـ `xz`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr xz` diff --git a/pages.ar/common/mscore.md b/pages.ar/common/mscore.md new file mode 100644 index 0000000000..ee04fb3ce2 --- /dev/null +++ b/pages.ar/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> هذا الأمر هو اسم مستعار لـ `musescore`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr musescore` diff --git a/pages.ar/common/nm-classic.md b/pages.ar/common/nm-classic.md new file mode 100644 index 0000000000..71bf53a472 --- /dev/null +++ b/pages.ar/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> هذا الأمر هو اسم مستعار لـ `nm`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr nm` diff --git a/pages.ar/common/ntl.md b/pages.ar/common/ntl.md new file mode 100644 index 0000000000..20bfaa87e2 --- /dev/null +++ b/pages.ar/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> هذا الأمر هو اسم مستعار لـ `netlify`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr netlify` diff --git a/pages.ar/common/pio-init.md b/pages.ar/common/pio-init.md new file mode 100644 index 0000000000..ae38c3b844 --- /dev/null +++ b/pages.ar/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> هذا الأمر هو اسم مستعار لـ `pio project`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr pio project` diff --git a/pages.ar/common/piodebuggdb.md b/pages.ar/common/piodebuggdb.md new file mode 100644 index 0000000000..57399fccd3 --- /dev/null +++ b/pages.ar/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> هذا الأمر هو اسم مستعار لـ `pio debug`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr pio debug` diff --git a/pages.ar/common/platformio.md b/pages.ar/common/platformio.md new file mode 100644 index 0000000000..1c0d26a605 --- /dev/null +++ b/pages.ar/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> هذا الأمر هو اسم مستعار لـ `pio`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr pio` diff --git a/pages.ar/common/ptpython3.md b/pages.ar/common/ptpython3.md new file mode 100644 index 0000000000..f76962549c --- /dev/null +++ b/pages.ar/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> هذا الأمر هو اسم مستعار لـ `ptpython`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr ptpython` diff --git a/pages.ar/common/pwd.md b/pages.ar/common/pwd.md new file mode 100644 index 0000000000..9adf132eef --- /dev/null +++ b/pages.ar/common/pwd.md @@ -0,0 +1,12 @@ +# pwd + +> اطبع اسم الدليل الحالي. +> لمزيد من التفاصيل: . + +- اطبع اسم الدليل الحالي: + +`pwd` + +- اطبع اسم الدليل الحالي و حل جميع الروابط اللينة (وبمعنى آخر إظهار المسارالفعلي) : + +`pwd -P` diff --git a/pages.ar/common/python3.md b/pages.ar/common/python3.md new file mode 100644 index 0000000000..0969d6a82e --- /dev/null +++ b/pages.ar/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> هذا الأمر هو اسم مستعار لـ `python`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr python` diff --git a/pages.ar/common/r2.md b/pages.ar/common/r2.md new file mode 100644 index 0000000000..f1f7a2c1bb --- /dev/null +++ b/pages.ar/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> هذا الأمر هو اسم مستعار لـ `radare2`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr radare2` diff --git a/pages.ar/common/rcat.md b/pages.ar/common/rcat.md new file mode 100644 index 0000000000..d5cd990821 --- /dev/null +++ b/pages.ar/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> هذا الأمر هو اسم مستعار لـ `rc`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr rc` diff --git a/pages.ar/common/ripgrep.md b/pages.ar/common/ripgrep.md new file mode 100644 index 0000000000..0315c1aa57 --- /dev/null +++ b/pages.ar/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> هذا الأمر هو اسم مستعار لـ `rg`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr rg` diff --git a/pages.ar/common/tldrl.md b/pages.ar/common/tldrl.md new file mode 100644 index 0000000000..064f8c8cd7 --- /dev/null +++ b/pages.ar/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> هذا الأمر هو اسم مستعار لـ `tldr-lint`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr tldr-lint` diff --git a/pages.ar/common/tlmgr-arch.md b/pages.ar/common/tlmgr-arch.md new file mode 100644 index 0000000000..abd27803ea --- /dev/null +++ b/pages.ar/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> هذا الأمر هو اسم مستعار لـ `tlmgr platform`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr tlmgr platform` diff --git a/pages.ar/common/todoman.md b/pages.ar/common/todoman.md new file mode 100644 index 0000000000..db48e20c93 --- /dev/null +++ b/pages.ar/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> هذا الأمر هو اسم مستعار لـ `todo`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr todo` diff --git a/pages.ar/common/transmission.md b/pages.ar/common/transmission.md new file mode 100644 index 0000000000..ce17320fe6 --- /dev/null +++ b/pages.ar/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> هذا الأمر هو اسم مستعار لـ `transmission-daemon`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr transmission-daemon` diff --git a/pages.ar/common/unlzma.md b/pages.ar/common/unlzma.md new file mode 100644 index 0000000000..0f95bace6a --- /dev/null +++ b/pages.ar/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> هذا الأمر هو اسم مستعار لـ `xz`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr xz` diff --git a/pages.ar/common/unxz.md b/pages.ar/common/unxz.md new file mode 100644 index 0000000000..29cd0c7aa3 --- /dev/null +++ b/pages.ar/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> هذا الأمر هو اسم مستعار لـ `xz`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr xz` diff --git a/pages.ar/common/vi.md b/pages.ar/common/vi.md new file mode 100644 index 0000000000..bce863cf22 --- /dev/null +++ b/pages.ar/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> هذا الأمر هو اسم مستعار لـ `vim`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr vim` diff --git a/pages.ar/common/xzcat.md b/pages.ar/common/xzcat.md new file mode 100644 index 0000000000..d55f3849e5 --- /dev/null +++ b/pages.ar/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> هذا الأمر هو اسم مستعار لـ `xz`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr xz` diff --git a/pages.ar/linux/alternatives.md b/pages.ar/linux/alternatives.md new file mode 100644 index 0000000000..41b52ccb09 --- /dev/null +++ b/pages.ar/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> هذا الأمر هو اسم مستعار لـ `update-alternatives`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr update-alternatives` diff --git a/pages.ar/linux/batcat.md b/pages.ar/linux/batcat.md new file mode 100644 index 0000000000..f3088c5999 --- /dev/null +++ b/pages.ar/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> هذا الأمر هو اسم مستعار لـ `bat`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr bat` diff --git a/pages.ar/linux/bspwm.md b/pages.ar/linux/bspwm.md new file mode 100644 index 0000000000..20d86b8dc3 --- /dev/null +++ b/pages.ar/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> هذا الأمر هو اسم مستعار لـ `bspc`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr bspc` diff --git a/pages.ar/linux/cc.md b/pages.ar/linux/cc.md new file mode 100644 index 0000000000..0729f8a7a6 --- /dev/null +++ b/pages.ar/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> هذا الأمر هو اسم مستعار لـ `gcc`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr gcc` diff --git a/pages.ar/linux/cgroups.md b/pages.ar/linux/cgroups.md new file mode 100644 index 0000000000..20ce378543 --- /dev/null +++ b/pages.ar/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> هذا الأمر هو اسم مستعار لـ `cgclassify`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr cgclassify` diff --git a/pages.ar/linux/ip-route-list.md b/pages.ar/linux/ip-route-list.md new file mode 100644 index 0000000000..1e8a95ae18 --- /dev/null +++ b/pages.ar/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> هذا الأمر هو اسم مستعار لـ `ip-route-show`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr ip-route-show` diff --git a/pages.ar/linux/megadl.md b/pages.ar/linux/megadl.md new file mode 100644 index 0000000000..d5a20c8f1f --- /dev/null +++ b/pages.ar/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> هذا الأمر هو اسم مستعار لـ `megatools-dl`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr megatools-dl` diff --git a/pages.ar/linux/ncal.md b/pages.ar/linux/ncal.md new file mode 100644 index 0000000000..36dc5d5b07 --- /dev/null +++ b/pages.ar/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> هذا الأمر هو اسم مستعار لـ `cal`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr cal` diff --git a/pages.ar/linux/ubuntu-bug.md b/pages.ar/linux/ubuntu-bug.md new file mode 100644 index 0000000000..af0eb3b4ff --- /dev/null +++ b/pages.ar/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> هذا الأمر هو اسم مستعار لـ `apport-bug`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr apport-bug` diff --git a/pages.ar/osx/aa.md b/pages.ar/osx/aa.md new file mode 100644 index 0000000000..28a57fd3b7 --- /dev/null +++ b/pages.ar/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> هذا الأمر هو اسم مستعار لـ `yaa`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr yaa` diff --git a/pages.ar/osx/g[.md b/pages.ar/osx/g[.md new file mode 100644 index 0000000000..437dafa7aa --- /dev/null +++ b/pages.ar/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> هذا الأمر هو اسم مستعار لـ `-p linux [`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux [` diff --git a/pages.ar/osx/gawk.md b/pages.ar/osx/gawk.md new file mode 100644 index 0000000000..6779a717a5 --- /dev/null +++ b/pages.ar/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> هذا الأمر هو اسم مستعار لـ `-p linux awk`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux awk` diff --git a/pages.ar/osx/gb2sum.md b/pages.ar/osx/gb2sum.md new file mode 100644 index 0000000000..af90ecbb1b --- /dev/null +++ b/pages.ar/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> هذا الأمر هو اسم مستعار لـ `-p linux b2sum`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux b2sum` diff --git a/pages.ar/osx/gbase32.md b/pages.ar/osx/gbase32.md new file mode 100644 index 0000000000..ab8c98f3ae --- /dev/null +++ b/pages.ar/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> هذا الأمر هو اسم مستعار لـ `-p linux base32`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux base32` diff --git a/pages.ar/osx/gbase64.md b/pages.ar/osx/gbase64.md new file mode 100644 index 0000000000..650ac51244 --- /dev/null +++ b/pages.ar/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> هذا الأمر هو اسم مستعار لـ `-p linux base64`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux base64` diff --git a/pages.ar/osx/gbasename.md b/pages.ar/osx/gbasename.md new file mode 100644 index 0000000000..43359c780b --- /dev/null +++ b/pages.ar/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> هذا الأمر هو اسم مستعار لـ `-p linux basename`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux basename` diff --git a/pages.ar/osx/gbasenc.md b/pages.ar/osx/gbasenc.md new file mode 100644 index 0000000000..1036c05fe9 --- /dev/null +++ b/pages.ar/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> هذا الأمر هو اسم مستعار لـ `-p linux basenc`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux basenc` diff --git a/pages.ar/osx/gcat.md b/pages.ar/osx/gcat.md new file mode 100644 index 0000000000..61a30ae3dc --- /dev/null +++ b/pages.ar/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> هذا الأمر هو اسم مستعار لـ `-p linux cat`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux cat` diff --git a/pages.ar/osx/gchcon.md b/pages.ar/osx/gchcon.md new file mode 100644 index 0000000000..bee8b5cafe --- /dev/null +++ b/pages.ar/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> هذا الأمر هو اسم مستعار لـ `-p linux chcon`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux chcon` diff --git a/pages.ar/osx/gchgrp.md b/pages.ar/osx/gchgrp.md new file mode 100644 index 0000000000..78cc876096 --- /dev/null +++ b/pages.ar/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> هذا الأمر هو اسم مستعار لـ `-p linux chgrp`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux chgrp` diff --git a/pages.ar/osx/gchmod.md b/pages.ar/osx/gchmod.md new file mode 100644 index 0000000000..121621daaf --- /dev/null +++ b/pages.ar/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> هذا الأمر هو اسم مستعار لـ `-p linux chmod`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux chmod` diff --git a/pages.ar/osx/gchown.md b/pages.ar/osx/gchown.md new file mode 100644 index 0000000000..9092ab4f12 --- /dev/null +++ b/pages.ar/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> هذا الأمر هو اسم مستعار لـ `-p linux chown`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux chown` diff --git a/pages.ar/osx/gchroot.md b/pages.ar/osx/gchroot.md new file mode 100644 index 0000000000..3d38a593f6 --- /dev/null +++ b/pages.ar/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> هذا الأمر هو اسم مستعار لـ `-p linux chroot`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux chroot` diff --git a/pages.ar/osx/gcksum.md b/pages.ar/osx/gcksum.md new file mode 100644 index 0000000000..87a623c5fc --- /dev/null +++ b/pages.ar/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> هذا الأمر هو اسم مستعار لـ `-p linux cksum`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux cksum` diff --git a/pages.ar/osx/gcomm.md b/pages.ar/osx/gcomm.md new file mode 100644 index 0000000000..a9615e2714 --- /dev/null +++ b/pages.ar/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> هذا الأمر هو اسم مستعار لـ `-p linux comm`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux comm` diff --git a/pages.ar/osx/gcp.md b/pages.ar/osx/gcp.md new file mode 100644 index 0000000000..df0b1539c3 --- /dev/null +++ b/pages.ar/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> هذا الأمر هو اسم مستعار لـ `-p linux cp`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux cp` diff --git a/pages.ar/osx/gcsplit.md b/pages.ar/osx/gcsplit.md new file mode 100644 index 0000000000..44c6cb0bad --- /dev/null +++ b/pages.ar/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> هذا الأمر هو اسم مستعار لـ `-p linux csplit`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux csplit` diff --git a/pages.ar/osx/gcut.md b/pages.ar/osx/gcut.md new file mode 100644 index 0000000000..13988a5c16 --- /dev/null +++ b/pages.ar/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> هذا الأمر هو اسم مستعار لـ `-p linux cut`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux cut` diff --git a/pages.ar/osx/gdate.md b/pages.ar/osx/gdate.md new file mode 100644 index 0000000000..216aada115 --- /dev/null +++ b/pages.ar/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> هذا الأمر هو اسم مستعار لـ `-p linux date`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux date` diff --git a/pages.ar/osx/gdd.md b/pages.ar/osx/gdd.md new file mode 100644 index 0000000000..55075594b2 --- /dev/null +++ b/pages.ar/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> هذا الأمر هو اسم مستعار لـ `-p linux dd`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux dd` diff --git a/pages.ar/osx/gdf.md b/pages.ar/osx/gdf.md new file mode 100644 index 0000000000..0c58018fae --- /dev/null +++ b/pages.ar/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> هذا الأمر هو اسم مستعار لـ `-p linux df`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux df` diff --git a/pages.ar/osx/gdir.md b/pages.ar/osx/gdir.md new file mode 100644 index 0000000000..f857b150b1 --- /dev/null +++ b/pages.ar/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> هذا الأمر هو اسم مستعار لـ `-p linux dir`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux dir` diff --git a/pages.ar/osx/gdircolors.md b/pages.ar/osx/gdircolors.md new file mode 100644 index 0000000000..a07be24e2f --- /dev/null +++ b/pages.ar/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> هذا الأمر هو اسم مستعار لـ `-p linux dircolors`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux dircolors` diff --git a/pages.ar/osx/gdirname.md b/pages.ar/osx/gdirname.md new file mode 100644 index 0000000000..4bada346f0 --- /dev/null +++ b/pages.ar/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> هذا الأمر هو اسم مستعار لـ `-p linux dirname`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux dirname` diff --git a/pages.ar/osx/gdnsdomainname.md b/pages.ar/osx/gdnsdomainname.md new file mode 100644 index 0000000000..792279cacd --- /dev/null +++ b/pages.ar/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> هذا الأمر هو اسم مستعار لـ `-p linux dnsdomainname`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux dnsdomainname` diff --git a/pages.ar/osx/gecho.md b/pages.ar/osx/gecho.md new file mode 100644 index 0000000000..1374e36b50 --- /dev/null +++ b/pages.ar/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> هذا الأمر هو اسم مستعار لـ `-p linux echo`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux echo` diff --git a/pages.ar/osx/ged.md b/pages.ar/osx/ged.md new file mode 100644 index 0000000000..2a587b26da --- /dev/null +++ b/pages.ar/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> هذا الأمر هو اسم مستعار لـ `-p linux ed`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux ed` diff --git a/pages.ar/osx/gegrep.md b/pages.ar/osx/gegrep.md new file mode 100644 index 0000000000..cc14fe9f59 --- /dev/null +++ b/pages.ar/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> هذا الأمر هو اسم مستعار لـ `-p linux egrep`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux egrep` diff --git a/pages.ar/osx/genv.md b/pages.ar/osx/genv.md new file mode 100644 index 0000000000..c6b344ba18 --- /dev/null +++ b/pages.ar/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> هذا الأمر هو اسم مستعار لـ `-p linux env`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux env` diff --git a/pages.ar/osx/gexpand.md b/pages.ar/osx/gexpand.md new file mode 100644 index 0000000000..ca903f1fca --- /dev/null +++ b/pages.ar/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> هذا الأمر هو اسم مستعار لـ `-p linux expand`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux expand` diff --git a/pages.ar/osx/gexpr.md b/pages.ar/osx/gexpr.md new file mode 100644 index 0000000000..e64c267476 --- /dev/null +++ b/pages.ar/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> هذا الأمر هو اسم مستعار لـ `-p linux expr`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux expr` diff --git a/pages.ar/osx/gfactor.md b/pages.ar/osx/gfactor.md new file mode 100644 index 0000000000..3620a7d37b --- /dev/null +++ b/pages.ar/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> هذا الأمر هو اسم مستعار لـ `-p linux factor`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux factor` diff --git a/pages.ar/osx/gfalse.md b/pages.ar/osx/gfalse.md new file mode 100644 index 0000000000..260ab280ae --- /dev/null +++ b/pages.ar/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> هذا الأمر هو اسم مستعار لـ `-p linux false`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux false` diff --git a/pages.ar/osx/gfgrep.md b/pages.ar/osx/gfgrep.md new file mode 100644 index 0000000000..2ca2b7a2dc --- /dev/null +++ b/pages.ar/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> هذا الأمر هو اسم مستعار لـ `-p linux fgrep`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux fgrep` diff --git a/pages.ar/osx/gfind.md b/pages.ar/osx/gfind.md new file mode 100644 index 0000000000..59511e36e4 --- /dev/null +++ b/pages.ar/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> هذا الأمر هو اسم مستعار لـ `-p linux find`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux find` diff --git a/pages.ar/osx/gfmt.md b/pages.ar/osx/gfmt.md new file mode 100644 index 0000000000..12046e3d2b --- /dev/null +++ b/pages.ar/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> هذا الأمر هو اسم مستعار لـ `-p linux fmt`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux fmt` diff --git a/pages.ar/osx/gfold.md b/pages.ar/osx/gfold.md new file mode 100644 index 0000000000..861fd3d115 --- /dev/null +++ b/pages.ar/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> هذا الأمر هو اسم مستعار لـ `-p linux fold`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux fold` diff --git a/pages.ar/osx/gftp.md b/pages.ar/osx/gftp.md new file mode 100644 index 0000000000..934de14b8e --- /dev/null +++ b/pages.ar/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> هذا الأمر هو اسم مستعار لـ `-p linux ftp`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux ftp` diff --git a/pages.ar/osx/ggrep.md b/pages.ar/osx/ggrep.md new file mode 100644 index 0000000000..63e54d368e --- /dev/null +++ b/pages.ar/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> هذا الأمر هو اسم مستعار لـ `-p linux grep`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux grep` diff --git a/pages.ar/osx/ggroups.md b/pages.ar/osx/ggroups.md new file mode 100644 index 0000000000..b00397639c --- /dev/null +++ b/pages.ar/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> هذا الأمر هو اسم مستعار لـ `-p linux groups`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux groups` diff --git a/pages.ar/osx/ghead.md b/pages.ar/osx/ghead.md new file mode 100644 index 0000000000..60b77f9e14 --- /dev/null +++ b/pages.ar/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> هذا الأمر هو اسم مستعار لـ `-p linux head`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux head` diff --git a/pages.ar/osx/ghostid.md b/pages.ar/osx/ghostid.md new file mode 100644 index 0000000000..cb59db5fbe --- /dev/null +++ b/pages.ar/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> هذا الأمر هو اسم مستعار لـ `-p linux hostid`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux hostid` diff --git a/pages.ar/osx/ghostname.md b/pages.ar/osx/ghostname.md new file mode 100644 index 0000000000..9fe474d8d5 --- /dev/null +++ b/pages.ar/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> هذا الأمر هو اسم مستعار لـ `-p linux hostname`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux hostname` diff --git a/pages.ar/osx/gid.md b/pages.ar/osx/gid.md new file mode 100644 index 0000000000..d9e8931307 --- /dev/null +++ b/pages.ar/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> هذا الأمر هو اسم مستعار لـ `-p linux id`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux id` diff --git a/pages.ar/osx/gifconfig.md b/pages.ar/osx/gifconfig.md new file mode 100644 index 0000000000..17d193a3df --- /dev/null +++ b/pages.ar/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> هذا الأمر هو اسم مستعار لـ `-p linux ifconfig`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux ifconfig` diff --git a/pages.ar/osx/gindent.md b/pages.ar/osx/gindent.md new file mode 100644 index 0000000000..dafecd977d --- /dev/null +++ b/pages.ar/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> هذا الأمر هو اسم مستعار لـ `-p linux indent`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux indent` diff --git a/pages.ar/osx/ginstall.md b/pages.ar/osx/ginstall.md new file mode 100644 index 0000000000..9c7f11998b --- /dev/null +++ b/pages.ar/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> هذا الأمر هو اسم مستعار لـ `-p linux install`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux install` diff --git a/pages.ar/osx/gjoin.md b/pages.ar/osx/gjoin.md new file mode 100644 index 0000000000..2c50cd4934 --- /dev/null +++ b/pages.ar/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> هذا الأمر هو اسم مستعار لـ `-p linux join`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux join` diff --git a/pages.ar/osx/gkill.md b/pages.ar/osx/gkill.md new file mode 100644 index 0000000000..7d732dd644 --- /dev/null +++ b/pages.ar/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> هذا الأمر هو اسم مستعار لـ `-p linux kill`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux kill` diff --git a/pages.ar/osx/glibtool.md b/pages.ar/osx/glibtool.md new file mode 100644 index 0000000000..25fd4c1c90 --- /dev/null +++ b/pages.ar/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> هذا الأمر هو اسم مستعار لـ `-p linux libtool`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux libtool` diff --git a/pages.ar/osx/glibtoolize.md b/pages.ar/osx/glibtoolize.md new file mode 100644 index 0000000000..3c450c7b3f --- /dev/null +++ b/pages.ar/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> هذا الأمر هو اسم مستعار لـ `-p linux libtoolize`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux libtoolize` diff --git a/pages.ar/osx/glink.md b/pages.ar/osx/glink.md new file mode 100644 index 0000000000..3f25bdfbcb --- /dev/null +++ b/pages.ar/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> هذا الأمر هو اسم مستعار لـ `-p linux link`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux link` diff --git a/pages.ar/osx/gln.md b/pages.ar/osx/gln.md new file mode 100644 index 0000000000..3dc72c229b --- /dev/null +++ b/pages.ar/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> هذا الأمر هو اسم مستعار لـ `-p linux ln`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux ln` diff --git a/pages.ar/osx/glocate.md b/pages.ar/osx/glocate.md new file mode 100644 index 0000000000..b3fe401a21 --- /dev/null +++ b/pages.ar/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> هذا الأمر هو اسم مستعار لـ `-p linux locate`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux locate` diff --git a/pages.ar/osx/glogger.md b/pages.ar/osx/glogger.md new file mode 100644 index 0000000000..b3c389a4da --- /dev/null +++ b/pages.ar/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> هذا الأمر هو اسم مستعار لـ `-p linux logger`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux logger` diff --git a/pages.ar/osx/glogname.md b/pages.ar/osx/glogname.md new file mode 100644 index 0000000000..b2ae9f174c --- /dev/null +++ b/pages.ar/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> هذا الأمر هو اسم مستعار لـ `-p linux logname`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux logname` diff --git a/pages.ar/osx/gls.md b/pages.ar/osx/gls.md new file mode 100644 index 0000000000..89bfe68422 --- /dev/null +++ b/pages.ar/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> هذا الأمر هو اسم مستعار لـ `-p linux ls`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux ls` diff --git a/pages.ar/osx/gmake.md b/pages.ar/osx/gmake.md new file mode 100644 index 0000000000..602311228e --- /dev/null +++ b/pages.ar/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> هذا الأمر هو اسم مستعار لـ `-p linux make`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux make` diff --git a/pages.ar/osx/gmd5sum.md b/pages.ar/osx/gmd5sum.md new file mode 100644 index 0000000000..8366a684ff --- /dev/null +++ b/pages.ar/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> هذا الأمر هو اسم مستعار لـ `-p linux md5sum`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux md5sum` diff --git a/pages.ar/osx/gmkdir.md b/pages.ar/osx/gmkdir.md new file mode 100644 index 0000000000..fbd07005ce --- /dev/null +++ b/pages.ar/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> هذا الأمر هو اسم مستعار لـ `-p linux mkdir`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux mkdir` diff --git a/pages.ar/osx/gmkfifo.md b/pages.ar/osx/gmkfifo.md new file mode 100644 index 0000000000..fdcc21a970 --- /dev/null +++ b/pages.ar/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> هذا الأمر هو اسم مستعار لـ `-p linux mkfifo`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux mkfifo` diff --git a/pages.ar/osx/gmknod.md b/pages.ar/osx/gmknod.md new file mode 100644 index 0000000000..45bbe2ccc7 --- /dev/null +++ b/pages.ar/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> هذا الأمر هو اسم مستعار لـ `-p linux mknod`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux mknod` diff --git a/pages.ar/osx/gmktemp.md b/pages.ar/osx/gmktemp.md new file mode 100644 index 0000000000..2796b64f23 --- /dev/null +++ b/pages.ar/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> هذا الأمر هو اسم مستعار لـ `-p linux mktemp`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux mktemp` diff --git a/pages.ar/osx/gmv.md b/pages.ar/osx/gmv.md new file mode 100644 index 0000000000..9ae12bb504 --- /dev/null +++ b/pages.ar/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> هذا الأمر هو اسم مستعار لـ `-p linux mv`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux mv` diff --git a/pages.ar/osx/gnice.md b/pages.ar/osx/gnice.md new file mode 100644 index 0000000000..4c6a36d097 --- /dev/null +++ b/pages.ar/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> هذا الأمر هو اسم مستعار لـ `-p linux nice`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux nice` diff --git a/pages.ar/osx/gnl.md b/pages.ar/osx/gnl.md new file mode 100644 index 0000000000..63048a9d31 --- /dev/null +++ b/pages.ar/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> هذا الأمر هو اسم مستعار لـ `-p linux nl`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux nl` diff --git a/pages.ar/osx/gnohup.md b/pages.ar/osx/gnohup.md new file mode 100644 index 0000000000..6e8c553014 --- /dev/null +++ b/pages.ar/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> هذا الأمر هو اسم مستعار لـ `-p linux nohup`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux nohup` diff --git a/pages.ar/osx/gnproc.md b/pages.ar/osx/gnproc.md new file mode 100644 index 0000000000..8a40123d03 --- /dev/null +++ b/pages.ar/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> هذا الأمر هو اسم مستعار لـ `-p linux nproc`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux nproc` diff --git a/pages.ar/osx/gnumfmt.md b/pages.ar/osx/gnumfmt.md new file mode 100644 index 0000000000..da95b02eef --- /dev/null +++ b/pages.ar/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> هذا الأمر هو اسم مستعار لـ `-p linux numfmt`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux numfmt` diff --git a/pages.ar/osx/god.md b/pages.ar/osx/god.md new file mode 100644 index 0000000000..add485404e --- /dev/null +++ b/pages.ar/osx/god.md @@ -0,0 +1,7 @@ +# god + +> هذا الأمر هو اسم مستعار لـ `-p linux od`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux od` diff --git a/pages.ar/osx/gpaste.md b/pages.ar/osx/gpaste.md new file mode 100644 index 0000000000..ee08a8b24f --- /dev/null +++ b/pages.ar/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> هذا الأمر هو اسم مستعار لـ `-p linux paste`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux paste` diff --git a/pages.ar/osx/gpathchk.md b/pages.ar/osx/gpathchk.md new file mode 100644 index 0000000000..899c902708 --- /dev/null +++ b/pages.ar/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> هذا الأمر هو اسم مستعار لـ `-p linux pathchk`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux pathchk` diff --git a/pages.ar/osx/gping.md b/pages.ar/osx/gping.md new file mode 100644 index 0000000000..4f6cff28fb --- /dev/null +++ b/pages.ar/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> هذا الأمر هو اسم مستعار لـ `-p linux ping`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux ping` diff --git a/pages.ar/osx/gping6.md b/pages.ar/osx/gping6.md new file mode 100644 index 0000000000..e8b2a9857c --- /dev/null +++ b/pages.ar/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> هذا الأمر هو اسم مستعار لـ `-p linux ping6`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux ping6` diff --git a/pages.ar/osx/gpinky.md b/pages.ar/osx/gpinky.md new file mode 100644 index 0000000000..8be1c253d8 --- /dev/null +++ b/pages.ar/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> هذا الأمر هو اسم مستعار لـ `-p linux pinky`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux pinky` diff --git a/pages.ar/osx/gpr.md b/pages.ar/osx/gpr.md new file mode 100644 index 0000000000..caa8c407fb --- /dev/null +++ b/pages.ar/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> هذا الأمر هو اسم مستعار لـ `-p linux pr`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux pr` diff --git a/pages.ar/osx/gprintenv.md b/pages.ar/osx/gprintenv.md new file mode 100644 index 0000000000..bd3dd873e3 --- /dev/null +++ b/pages.ar/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> هذا الأمر هو اسم مستعار لـ `-p linux printenv`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux printenv` diff --git a/pages.ar/osx/gprintf.md b/pages.ar/osx/gprintf.md new file mode 100644 index 0000000000..9c331251f7 --- /dev/null +++ b/pages.ar/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> هذا الأمر هو اسم مستعار لـ `-p linux printf`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux printf` diff --git a/pages.ar/osx/gptx.md b/pages.ar/osx/gptx.md new file mode 100644 index 0000000000..6f6210079e --- /dev/null +++ b/pages.ar/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> هذا الأمر هو اسم مستعار لـ `-p linux ptx`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux ptx` diff --git a/pages.ar/osx/gpwd.md b/pages.ar/osx/gpwd.md new file mode 100644 index 0000000000..74a7dbc0e1 --- /dev/null +++ b/pages.ar/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> هذا الأمر هو اسم مستعار لـ `-p linux pwd`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux pwd` diff --git a/pages.ar/osx/grcp.md b/pages.ar/osx/grcp.md new file mode 100644 index 0000000000..2f9c87377c --- /dev/null +++ b/pages.ar/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> هذا الأمر هو اسم مستعار لـ `-p linux rcp`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux rcp` diff --git a/pages.ar/osx/greadlink.md b/pages.ar/osx/greadlink.md new file mode 100644 index 0000000000..fe92afeba1 --- /dev/null +++ b/pages.ar/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> هذا الأمر هو اسم مستعار لـ `-p linux readlink`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux readlink` diff --git a/pages.ar/osx/grealpath.md b/pages.ar/osx/grealpath.md new file mode 100644 index 0000000000..489dc2d550 --- /dev/null +++ b/pages.ar/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> هذا الأمر هو اسم مستعار لـ `-p linux realpath`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux realpath` diff --git a/pages.ar/osx/grexec.md b/pages.ar/osx/grexec.md new file mode 100644 index 0000000000..98ef2b8627 --- /dev/null +++ b/pages.ar/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> هذا الأمر هو اسم مستعار لـ `-p linux rexec`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux rexec` diff --git a/pages.ar/osx/grlogin.md b/pages.ar/osx/grlogin.md new file mode 100644 index 0000000000..dffe0da2e1 --- /dev/null +++ b/pages.ar/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> هذا الأمر هو اسم مستعار لـ `-p linux rlogin`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux rlogin` diff --git a/pages.ar/osx/grm.md b/pages.ar/osx/grm.md new file mode 100644 index 0000000000..c81e068425 --- /dev/null +++ b/pages.ar/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> هذا الأمر هو اسم مستعار لـ `-p linux rm`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux rm` diff --git a/pages.ar/osx/grmdir.md b/pages.ar/osx/grmdir.md new file mode 100644 index 0000000000..12851638aa --- /dev/null +++ b/pages.ar/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> هذا الأمر هو اسم مستعار لـ `-p linux rmdir`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux rmdir` diff --git a/pages.ar/osx/grsh.md b/pages.ar/osx/grsh.md new file mode 100644 index 0000000000..05dcaaece2 --- /dev/null +++ b/pages.ar/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> هذا الأمر هو اسم مستعار لـ `-p linux rsh`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux rsh` diff --git a/pages.ar/osx/gruncon.md b/pages.ar/osx/gruncon.md new file mode 100644 index 0000000000..e105e39049 --- /dev/null +++ b/pages.ar/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> هذا الأمر هو اسم مستعار لـ `-p linux runcon`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux runcon` diff --git a/pages.ar/osx/gsed.md b/pages.ar/osx/gsed.md new file mode 100644 index 0000000000..90ae5a6ac7 --- /dev/null +++ b/pages.ar/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> هذا الأمر هو اسم مستعار لـ `-p linux sed`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux sed` diff --git a/pages.ar/osx/gseq.md b/pages.ar/osx/gseq.md new file mode 100644 index 0000000000..e27443461c --- /dev/null +++ b/pages.ar/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> هذا الأمر هو اسم مستعار لـ `-p linux seq`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux seq` diff --git a/pages.ar/osx/gsha1sum.md b/pages.ar/osx/gsha1sum.md new file mode 100644 index 0000000000..6328aad987 --- /dev/null +++ b/pages.ar/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> هذا الأمر هو اسم مستعار لـ `-p linux sha1sum`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux sha1sum` diff --git a/pages.ar/osx/gsha224sum.md b/pages.ar/osx/gsha224sum.md new file mode 100644 index 0000000000..93ccc386ac --- /dev/null +++ b/pages.ar/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> هذا الأمر هو اسم مستعار لـ `-p linux sha224sum`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux sha224sum` diff --git a/pages.ar/osx/gsha256sum.md b/pages.ar/osx/gsha256sum.md new file mode 100644 index 0000000000..caa141e0f5 --- /dev/null +++ b/pages.ar/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> هذا الأمر هو اسم مستعار لـ `-p linux sha256sum`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux sha256sum` diff --git a/pages.ar/osx/gsha384sum.md b/pages.ar/osx/gsha384sum.md new file mode 100644 index 0000000000..5d919da87f --- /dev/null +++ b/pages.ar/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> هذا الأمر هو اسم مستعار لـ `-p linux sha384sum`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux sha384sum` diff --git a/pages.ar/osx/gsha512sum.md b/pages.ar/osx/gsha512sum.md new file mode 100644 index 0000000000..62c3e42570 --- /dev/null +++ b/pages.ar/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> هذا الأمر هو اسم مستعار لـ `-p linux sha512sum`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux sha512sum` diff --git a/pages.ar/osx/gshred.md b/pages.ar/osx/gshred.md new file mode 100644 index 0000000000..2564c057b4 --- /dev/null +++ b/pages.ar/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> هذا الأمر هو اسم مستعار لـ `-p linux shred`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux shred` diff --git a/pages.ar/osx/gshuf.md b/pages.ar/osx/gshuf.md new file mode 100644 index 0000000000..f12c0ff28c --- /dev/null +++ b/pages.ar/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> هذا الأمر هو اسم مستعار لـ `-p linux shuf`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux shuf` diff --git a/pages.ar/osx/gsleep.md b/pages.ar/osx/gsleep.md new file mode 100644 index 0000000000..afde382c56 --- /dev/null +++ b/pages.ar/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> هذا الأمر هو اسم مستعار لـ `-p linux sleep`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux sleep` diff --git a/pages.ar/osx/gsort.md b/pages.ar/osx/gsort.md new file mode 100644 index 0000000000..769eb536b4 --- /dev/null +++ b/pages.ar/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> هذا الأمر هو اسم مستعار لـ `-p linux sort`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux sort` diff --git a/pages.ar/osx/gsplit.md b/pages.ar/osx/gsplit.md new file mode 100644 index 0000000000..92699eaac0 --- /dev/null +++ b/pages.ar/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> هذا الأمر هو اسم مستعار لـ `-p linux split`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux split` diff --git a/pages.ar/osx/gstat.md b/pages.ar/osx/gstat.md new file mode 100644 index 0000000000..ded8057c71 --- /dev/null +++ b/pages.ar/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> هذا الأمر هو اسم مستعار لـ `-p linux stat`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux stat` diff --git a/pages.ar/osx/gstdbuf.md b/pages.ar/osx/gstdbuf.md new file mode 100644 index 0000000000..64a69a25ae --- /dev/null +++ b/pages.ar/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> هذا الأمر هو اسم مستعار لـ `-p linux stdbuf`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux stdbuf` diff --git a/pages.ar/osx/gstty.md b/pages.ar/osx/gstty.md new file mode 100644 index 0000000000..f5dd8ed3b9 --- /dev/null +++ b/pages.ar/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> هذا الأمر هو اسم مستعار لـ `-p linux stty`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux stty` diff --git a/pages.ar/osx/gsum.md b/pages.ar/osx/gsum.md new file mode 100644 index 0000000000..6ce0fc7e99 --- /dev/null +++ b/pages.ar/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> هذا الأمر هو اسم مستعار لـ `-p linux sum`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux sum` diff --git a/pages.ar/osx/gsync.md b/pages.ar/osx/gsync.md new file mode 100644 index 0000000000..ba7cfb6d11 --- /dev/null +++ b/pages.ar/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> هذا الأمر هو اسم مستعار لـ `-p linux sync`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux sync` diff --git a/pages.ar/osx/gtac.md b/pages.ar/osx/gtac.md new file mode 100644 index 0000000000..ec94252a84 --- /dev/null +++ b/pages.ar/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> هذا الأمر هو اسم مستعار لـ `-p linux tac`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux tac` diff --git a/pages.ar/osx/gtail.md b/pages.ar/osx/gtail.md new file mode 100644 index 0000000000..c2495766ec --- /dev/null +++ b/pages.ar/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> هذا الأمر هو اسم مستعار لـ `-p linux tail`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux tail` diff --git a/pages.ar/osx/gtalk.md b/pages.ar/osx/gtalk.md new file mode 100644 index 0000000000..870b356b29 --- /dev/null +++ b/pages.ar/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> هذا الأمر هو اسم مستعار لـ `-p linux talk`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux talk` diff --git a/pages.ar/osx/gtar.md b/pages.ar/osx/gtar.md new file mode 100644 index 0000000000..7d1cf08ab8 --- /dev/null +++ b/pages.ar/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> هذا الأمر هو اسم مستعار لـ `-p linux tar`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux tar` diff --git a/pages.ar/osx/gtee.md b/pages.ar/osx/gtee.md new file mode 100644 index 0000000000..f1ecd7e6fc --- /dev/null +++ b/pages.ar/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> هذا الأمر هو اسم مستعار لـ `-p linux tee`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux tee` diff --git a/pages.ar/osx/gtelnet.md b/pages.ar/osx/gtelnet.md new file mode 100644 index 0000000000..27fa8d2dc6 --- /dev/null +++ b/pages.ar/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> هذا الأمر هو اسم مستعار لـ `-p linux telnet`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux telnet` diff --git a/pages.ar/osx/gtest.md b/pages.ar/osx/gtest.md new file mode 100644 index 0000000000..6c7d04079e --- /dev/null +++ b/pages.ar/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> هذا الأمر هو اسم مستعار لـ `-p linux test`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux test` diff --git a/pages.ar/osx/gtftp.md b/pages.ar/osx/gtftp.md new file mode 100644 index 0000000000..bba9b4a03b --- /dev/null +++ b/pages.ar/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> هذا الأمر هو اسم مستعار لـ `-p linux tftp`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux tftp` diff --git a/pages.ar/osx/gtime.md b/pages.ar/osx/gtime.md new file mode 100644 index 0000000000..040cd8a76b --- /dev/null +++ b/pages.ar/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> هذا الأمر هو اسم مستعار لـ `-p linux time`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux time` diff --git a/pages.ar/osx/gtimeout.md b/pages.ar/osx/gtimeout.md new file mode 100644 index 0000000000..2cbbb7045d --- /dev/null +++ b/pages.ar/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> هذا الأمر هو اسم مستعار لـ `-p linux timeout`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux timeout` diff --git a/pages.ar/osx/gtouch.md b/pages.ar/osx/gtouch.md new file mode 100644 index 0000000000..5e7f6745a2 --- /dev/null +++ b/pages.ar/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> هذا الأمر هو اسم مستعار لـ `-p linux touch`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux touch` diff --git a/pages.ar/osx/gtr.md b/pages.ar/osx/gtr.md new file mode 100644 index 0000000000..767956dc8b --- /dev/null +++ b/pages.ar/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> هذا الأمر هو اسم مستعار لـ `-p linux tr`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux tr` diff --git a/pages.ar/osx/gtraceroute.md b/pages.ar/osx/gtraceroute.md new file mode 100644 index 0000000000..782d243b7a --- /dev/null +++ b/pages.ar/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> هذا الأمر هو اسم مستعار لـ `-p linux traceroute`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux traceroute` diff --git a/pages.ar/osx/gtrue.md b/pages.ar/osx/gtrue.md new file mode 100644 index 0000000000..35f9ebca01 --- /dev/null +++ b/pages.ar/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> هذا الأمر هو اسم مستعار لـ `-p linux true`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux true` diff --git a/pages.ar/osx/gtruncate.md b/pages.ar/osx/gtruncate.md new file mode 100644 index 0000000000..1cdb14fe8e --- /dev/null +++ b/pages.ar/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> هذا الأمر هو اسم مستعار لـ `-p linux truncate`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux truncate` diff --git a/pages.ar/osx/gtsort.md b/pages.ar/osx/gtsort.md new file mode 100644 index 0000000000..9884f6d90a --- /dev/null +++ b/pages.ar/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> هذا الأمر هو اسم مستعار لـ `-p linux tsort`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux tsort` diff --git a/pages.ar/osx/gtty.md b/pages.ar/osx/gtty.md new file mode 100644 index 0000000000..63ba50b681 --- /dev/null +++ b/pages.ar/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> هذا الأمر هو اسم مستعار لـ `-p linux tty`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux tty` diff --git a/pages.ar/osx/guname.md b/pages.ar/osx/guname.md new file mode 100644 index 0000000000..412cacec0e --- /dev/null +++ b/pages.ar/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> هذا الأمر هو اسم مستعار لـ `-p linux uname`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux uname` diff --git a/pages.ar/osx/gunexpand.md b/pages.ar/osx/gunexpand.md new file mode 100644 index 0000000000..f88dbecad3 --- /dev/null +++ b/pages.ar/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> هذا الأمر هو اسم مستعار لـ `-p linux unexpand`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux unexpand` diff --git a/pages.ar/osx/guniq.md b/pages.ar/osx/guniq.md new file mode 100644 index 0000000000..181ae0a56f --- /dev/null +++ b/pages.ar/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> هذا الأمر هو اسم مستعار لـ `-p linux uniq`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux uniq` diff --git a/pages.ar/osx/gunits.md b/pages.ar/osx/gunits.md new file mode 100644 index 0000000000..fcb9d1a0fb --- /dev/null +++ b/pages.ar/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> هذا الأمر هو اسم مستعار لـ `-p linux units`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux units` diff --git a/pages.ar/osx/gunlink.md b/pages.ar/osx/gunlink.md new file mode 100644 index 0000000000..ea67a4bbac --- /dev/null +++ b/pages.ar/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> هذا الأمر هو اسم مستعار لـ `-p linux unlink`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux unlink` diff --git a/pages.ar/osx/gupdatedb.md b/pages.ar/osx/gupdatedb.md new file mode 100644 index 0000000000..f2ea7ec53f --- /dev/null +++ b/pages.ar/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> هذا الأمر هو اسم مستعار لـ `-p linux updatedb`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux updatedb` diff --git a/pages.ar/osx/guptime.md b/pages.ar/osx/guptime.md new file mode 100644 index 0000000000..9a625a97a3 --- /dev/null +++ b/pages.ar/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> هذا الأمر هو اسم مستعار لـ `-p linux uptime`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux uptime` diff --git a/pages.ar/osx/gusers.md b/pages.ar/osx/gusers.md new file mode 100644 index 0000000000..37b41fd923 --- /dev/null +++ b/pages.ar/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> هذا الأمر هو اسم مستعار لـ `-p linux users`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux users` diff --git a/pages.ar/osx/gvdir.md b/pages.ar/osx/gvdir.md new file mode 100644 index 0000000000..ecd6abd10f --- /dev/null +++ b/pages.ar/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> هذا الأمر هو اسم مستعار لـ `-p linux vdir`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux vdir` diff --git a/pages.ar/osx/gwc.md b/pages.ar/osx/gwc.md new file mode 100644 index 0000000000..1be0494878 --- /dev/null +++ b/pages.ar/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> هذا الأمر هو اسم مستعار لـ `-p linux wc`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux wc` diff --git a/pages.ar/osx/gwhich.md b/pages.ar/osx/gwhich.md new file mode 100644 index 0000000000..0ec1e7f698 --- /dev/null +++ b/pages.ar/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> هذا الأمر هو اسم مستعار لـ `-p linux which`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux which` diff --git a/pages.ar/osx/gwho.md b/pages.ar/osx/gwho.md new file mode 100644 index 0000000000..45ca03df30 --- /dev/null +++ b/pages.ar/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> هذا الأمر هو اسم مستعار لـ `-p linux who`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux who` diff --git a/pages.ar/osx/gwhoami.md b/pages.ar/osx/gwhoami.md new file mode 100644 index 0000000000..1c4e3f6b22 --- /dev/null +++ b/pages.ar/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> هذا الأمر هو اسم مستعار لـ `-p linux whoami`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux whoami` diff --git a/pages.ar/osx/gwhois.md b/pages.ar/osx/gwhois.md new file mode 100644 index 0000000000..9a4fd68fdc --- /dev/null +++ b/pages.ar/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> هذا الأمر هو اسم مستعار لـ `-p linux whois`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux whois` diff --git a/pages.ar/osx/gxargs.md b/pages.ar/osx/gxargs.md new file mode 100644 index 0000000000..5856300294 --- /dev/null +++ b/pages.ar/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> هذا الأمر هو اسم مستعار لـ `-p linux xargs`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux xargs` diff --git a/pages.ar/osx/gyes.md b/pages.ar/osx/gyes.md new file mode 100644 index 0000000000..018a147d22 --- /dev/null +++ b/pages.ar/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> هذا الأمر هو اسم مستعار لـ `-p linux yes`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr -p linux yes` diff --git a/pages.ar/osx/launchd.md b/pages.ar/osx/launchd.md new file mode 100644 index 0000000000..99c60e3268 --- /dev/null +++ b/pages.ar/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> هذا الأمر هو اسم مستعار لـ `launchctl`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr launchctl` diff --git a/pages.ar/windows/chrome.md b/pages.ar/windows/chrome.md new file mode 100644 index 0000000000..44ffb045ea --- /dev/null +++ b/pages.ar/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> هذا الأمر هو اسم مستعار لـ `chromium`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr chromium` diff --git a/pages.ar/windows/cinst.md b/pages.ar/windows/cinst.md new file mode 100644 index 0000000000..a851885863 --- /dev/null +++ b/pages.ar/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> هذا الأمر هو اسم مستعار لـ `choco install`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr choco install` diff --git a/pages.ar/windows/clist.md b/pages.ar/windows/clist.md new file mode 100644 index 0000000000..081c5e54b3 --- /dev/null +++ b/pages.ar/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> هذا الأمر هو اسم مستعار لـ `choco list`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr choco list` diff --git a/pages.ar/windows/cpush.md b/pages.ar/windows/cpush.md new file mode 100644 index 0000000000..5b0559bd26 --- /dev/null +++ b/pages.ar/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> هذا الأمر هو اسم مستعار لـ `choco-push`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr choco-push` diff --git a/pages.ar/windows/cuninst.md b/pages.ar/windows/cuninst.md new file mode 100644 index 0000000000..4030f66bd5 --- /dev/null +++ b/pages.ar/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> هذا الأمر هو اسم مستعار لـ `choco uninstall`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr choco uninstall` diff --git a/pages.ar/windows/curl.md b/pages.ar/windows/curl.md new file mode 100644 index 0000000000..4cde90da88 --- /dev/null +++ b/pages.ar/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> هذا الأمر هو اسم مستعار لـ `curl -p common`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr curl -p common` diff --git a/pages.ar/windows/iwr.md b/pages.ar/windows/iwr.md new file mode 100644 index 0000000000..ea304a61fd --- /dev/null +++ b/pages.ar/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> هذا الأمر هو اسم مستعار لـ `invoke-webrequest`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr invoke-webrequest` diff --git a/pages.ar/windows/pwsh-where.md b/pages.ar/windows/pwsh-where.md new file mode 100644 index 0000000000..3ee5049dd3 --- /dev/null +++ b/pages.ar/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> هذا الأمر هو اسم مستعار لـ `Where-Object`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr Where-Object` diff --git a/pages.ar/windows/rd.md b/pages.ar/windows/rd.md new file mode 100644 index 0000000000..458a575453 --- /dev/null +++ b/pages.ar/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> هذا الأمر هو اسم مستعار لـ `rmdir`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr rmdir` diff --git a/pages.ar/windows/sls.md b/pages.ar/windows/sls.md new file mode 100644 index 0000000000..65c15560ce --- /dev/null +++ b/pages.ar/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> هذا الأمر هو اسم مستعار لـ `where-object`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr where-object` diff --git a/pages.ar/windows/wget.md b/pages.ar/windows/wget.md new file mode 100644 index 0000000000..181bbcc369 --- /dev/null +++ b/pages.ar/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> هذا الأمر هو اسم مستعار لـ `wget -p common`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr wget -p common` diff --git a/pages.bn/android/am.md b/pages.bn/android/am.md new file mode 100644 index 0000000000..ddc9110380 --- /dev/null +++ b/pages.bn/android/am.md @@ -0,0 +1,20 @@ +# am + +> অ্যান্ড্রয়েড অ্যাক্টিভিটি ম্যানেজার। +> আরও তথ্য পাবেন: . + +- একটি নির্দিষ্ট কার্যকলাপ শুরু করুন: + +`am start -n {{com.android.settings/.Settings}}` + +- একটি কার্যকলাপ শুরু করুন এবং এতে ডেটা পাঠান: + +`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}` + +- একটি নির্দিষ্ট কর্ম এবং বিভাগের সাথে মেলে এমন একটি কার্যকলাপ শুরু করুন: + +`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}` + +- একটি উদ্দেশ্যকে একটি URI-তে রূপান্তর করুন: + +`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}` diff --git a/pages.bn/android/bugreport.md b/pages.bn/android/bugreport.md new file mode 100644 index 0000000000..a457164e24 --- /dev/null +++ b/pages.bn/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> একটি অ্যান্ড্রয়েড বাগ রিপোর্ট দেখান। +> এই কমান্ডটি শুধুমাত্র `adb shell` এর মাধ্যমে ব্যবহার করা যেতে পারে। +> আরও তথ্য পাবেন: . + +- একটি অ্যান্ড্রয়েড ডিভাইসের একটি সম্পূর্ণ বাগ রিপোর্ট দেখান: + +`bugreport` diff --git a/pages.bn/android/bugreportz.md b/pages.bn/android/bugreportz.md new file mode 100644 index 0000000000..0ef46b5ef1 --- /dev/null +++ b/pages.bn/android/bugreportz.md @@ -0,0 +1,21 @@ +# bugreportz + +> একটি জিপ করা অ্যান্ড্রয়েড বাগ রিপোর্ট তৈরি করুন। +> এই কমান্ডটি শুধুমাত্র `adb shell` এর মাধ্যমে ব্যবহার করা যেতে পারে। +> আরও তথ্য পাবেন: . + +- একটি অ্যান্ড্রয়েড ডিভাইসের একটি সম্পূর্ণ জিপ করা বাগ রিপোর্ট তৈরি করুন: + +`bugreportz` + +- চলমান অপারেশনের অগ্রগতি দেখুন: + +`bugreportz -p` + +- সংস্করণ দেখুন: + +`bugreportz -v` + +- সাহায্য প্রদর্শন: + +`bugreportz -h` diff --git a/pages.bn/android/cmd.md b/pages.bn/android/cmd.md index 248ec6c3ce..60424d38cc 100644 --- a/pages.bn/android/cmd.md +++ b/pages.bn/android/cmd.md @@ -1,7 +1,7 @@ # cmd > অ্যান্ড্রয়েড সার্ভিস ম্যানেজার। -> আরও তথ্য পাবেন: . +> আরও তথ্য পাবেন: . - প্রতিটি চলমান পরিষেবা তালিকা করুন: diff --git a/pages.bn/android/dalvikvm.md b/pages.bn/android/dalvikvm.md new file mode 100644 index 0000000000..fb40b9b581 --- /dev/null +++ b/pages.bn/android/dalvikvm.md @@ -0,0 +1,8 @@ +# dalvikvm + +> অ্যান্ড্রয়েড জাভা ভার্চুয়াল মেশিন। +> আরও তথ্য পাবেন: . + +- একটি নির্দিষ্ট জাভা প্রোগ্রাম শুরু করুন: + +`dalvikvm -classpath {{ফাইল.jar/এর/পথ}} {{ক্লাসের নাম}}` diff --git a/pages.bn/android/dumpsys.md b/pages.bn/android/dumpsys.md new file mode 100644 index 0000000000..f04bb5a984 --- /dev/null +++ b/pages.bn/android/dumpsys.md @@ -0,0 +1,29 @@ +# dumpsys + +> অ্যান্ড্রয়েড সিস্টেম পরিষেবা সম্পর্কে তথ্য প্রদান করে। +> এই কমান্ডটি শুধুমাত্র `adb shell` এর মাধ্যমে ব্যবহার করা যেতে পারে। +> আরও তথ্য পাবেন: . + +- সমস্ত সিস্টেম পরিষেবার জন্য ডায়াগনস্টিক আউটপুট পান: + +`dumpsys` + +- একটি নির্দিষ্ট সিস্টেম পরিষেবার জন্য ডায়গনিস্টিক আউটপুট পান: + +`dumpsys {{পরিষেবা}}` + +- 'ডাম্পসিস' যে সমস্ত পরিষেবা সম্পর্কে তথ্য দিতে পারে তাদের তালিকা করুন: + +`dumpsys -l` + +- একটি পরিষেবার জন্য পরিষেবা-নির্দিষ্ট আর্গুমেন্ট তালিকা করুন: + +`dumpsys {{পরিষেবা}} -h` + +- ডায়গনিস্টিক আউটপুট থেকে একটি নির্দিষ্ট পরিষেবা বাদ দিন: + +`dumpsys -- skip {{পরিষেবা}}` + +- সেকেন্ডে একটি সময়সীমা নির্দিষ্ট করুন (ডিফল্ট 10 সেকেন্ড): + +`dumpsys -t {{1..অসীম}}` diff --git a/pages.bn/android/getprop.md b/pages.bn/android/getprop.md new file mode 100644 index 0000000000..9a46627c16 --- /dev/null +++ b/pages.bn/android/getprop.md @@ -0,0 +1,32 @@ +# getprop + +> অ্যান্ড্রয়েড সিস্টেম বৈশিষ্ট্য সম্পর্কে তথ্য দেখান। +> আরও তথ্য পাবেন: . + +- অ্যান্ড্রয়েড সিস্টেম বৈশিষ্ট্য সম্পর্কে তথ্য প্রদর্শন করুন: + +`getprop` + +- একটি নির্দিষ্ট সম্পত্তি সম্পর্কে তথ্য প্রদর্শন করুন: + +`getprop {{সম্পত্তি}}` + +- SDK API স্তর প্রদর্শন করুন: + +`getprop {{ro.build.version.sdk}}` + +- অ্যান্ড্রয়েড সংস্করণ প্রদর্শন করুন: + +`getprop {{ro.build.version.release}}` + +- অ্যান্ড্রয়েড ডিভাইস মডেল প্রদর্শন করুন: + +`getprop {{ro.vendor.product.model}}` + +- OEM আনলক স্থিতি প্রদর্শন করুন: + +`getprop {{ro.oem_unlock_supported}}` + +- Android এর Wi-Fi কার্ডের MAC ঠিকানা প্রদর্শন করুন: + +`getprop {{ro.boot.wifimacaddr}}` diff --git a/pages.bn/android/input.md b/pages.bn/android/input.md new file mode 100644 index 0000000000..1cc24f1ca5 --- /dev/null +++ b/pages.bn/android/input.md @@ -0,0 +1,25 @@ +# input + +> একটি Android ডিভাইসে ইভেন্ট কোড বা টাচস্ক্রিন অঙ্গভঙ্গি পাঠান। +> এই কমান্ডটি শুধুমাত্র `adb shell` এর মাধ্যমে ব্যবহার করা যেতে পারে। +> আরও তথ্য পাবেন: . + +- একটি Android ডিভাইসে একটি একক অক্ষরের জন্য একটি ইভেন্ট কোড পাঠান: + +`input keyevent {{ইভেন্ট_কোড}}` + +- একটি অ্যান্ড্রয়েড ডিভাইসে একটি পাঠ্য পাঠান (`%s` স্পেস প্রতিনিধিত্ব করে): + +`input text "{{স্ট্রিং}}"` + +- একটি Android ডিভাইসে একটি একক ট্যাপ পাঠান: + +`input tap {{x_অবস্থান}} {{y_অবস্থান}}` + +- একটি Android ডিভাইসে একটি সোয়াইপ অঙ্গভঙ্গি পাঠান: + +`input swipe {{x_শুরু}} {{y_শুরু}} {{x_শেষ}} {{y_শেষ}} {{1..অসীম}}` + +- একটি সোয়াইপ অঙ্গভঙ্গি ব্যবহার করে একটি Android ডিভাইসে একটি দীর্ঘ প্রেস পাঠান: + +`input swipe {{x_অবস্থান}} {{y_অবস্থান}} {{x_অবস্থান}} {{y_অবস্থান}} {{1..অসীম}}` diff --git a/pages.bn/android/logcat.md b/pages.bn/android/logcat.md new file mode 100644 index 0000000000..425a890000 --- /dev/null +++ b/pages.bn/android/logcat.md @@ -0,0 +1,16 @@ +# logcat + +> সিস্টেম বার্তার একটি লগ ডাম্প করুন, যখন একটি ত্রুটি ঘটেছে স্ট্যাক ট্রেস সহ, এবং অ্যাপ্লিকেশন দ্বারা লগ করা তথ্য বার্তা। +> আরও তথ্য পাবেন: . + +- সিস্টেম লগগুলি প্রদর্শন করুন: + +`logcat` + +- একটি ফাইলে সিস্টেম লগ লিখুন: + +`logcat -f {{ফাইলের/পথ}}` + +- রেগুলার এক্সপ্রেশনের সাথে মেলে এমন লাইনগুলি প্রদর্শন করুন: + +`logcat --regex {{সাধারণ_অভিব্যক্তি}}` diff --git a/pages.bn/android/pkg.md b/pages.bn/android/pkg.md new file mode 100644 index 0000000000..9d7c275747 --- /dev/null +++ b/pages.bn/android/pkg.md @@ -0,0 +1,24 @@ +# pkg + +> Termux এর জন্য একটি প্যাকেজ ব্যবস্থাপনা ইউটিলিটি। +> আরও তথ্য পাবেন: . + +- সমস্ত ইনস্টল করা প্যাকেজ আপগ্রেড করুন: + +`pkg upgrade` + +- একটি নির্দিষ্ট প্যাকেজ ইনস্টল করুন: + +`pkg install {{প্যাকেজ}}` + +- একটি নির্দিষ্ট প্যাকেজ আনইনস্টল করুন: + +`pkg uninstall {{প্যাকেজ}}` + +- একটি নির্দিষ্ট প্যাকেজ পুনরায় ইনস্টল করুন: + +`pkg reinstall {{প্যাকেজ}}` + +- একটি নির্দিষ্ট প্যাকেজ অনুসন্ধান করুন: + +`pkg search {{প্যাকেজ}}` diff --git a/pages.bn/android/pm.md b/pages.bn/android/pm.md new file mode 100644 index 0000000000..e8d04bf784 --- /dev/null +++ b/pages.bn/android/pm.md @@ -0,0 +1,24 @@ +# pm + +> একটি Android ডিভাইসে অ্যাপ্লিকেশন সম্পর্কে তথ্য দেখান। +> আরও তথ্য পাবেন: . + +- সমস্ত ইনস্টল করা অ্যাপের একটি তালিকা প্রিন্ট করুন: + +`pm list packages` + +- সমস্ত ইনস্টল করা সিস্টেম অ্যাপের একটি তালিকা প্রিন্ট করুন: + +`pm list packages -s` + +- সমস্ত ইনস্টল করা থার্ড-পার্টি অ্যাপের একটি তালিকা প্রিন্ট করুন: + +`pm list packages -3` + +- নির্দিষ্ট কীওয়ার্ডের সাথে মিলে যাওয়া অ্যাপগুলির একটি তালিকা প্রিন্ট করুন: + +`pm list packages {{কীওয়ার্ড১ কীওয়ার্ড২...}}` + +- একটি নির্দিষ্ট অ্যাপের APK এর পথ প্রিন্ট করুন: + +`pm path {{অ্যাপ}}` diff --git a/pages.bn/android/screencap.md b/pages.bn/android/screencap.md new file mode 100644 index 0000000000..b9369124f4 --- /dev/null +++ b/pages.bn/android/screencap.md @@ -0,0 +1,9 @@ +# screencap + +> একটি মোবাইল ডিসপ্লের স্ক্রিনশট নিন। +> এই কমান্ডটি শুধুমাত্র `adb shell` এর মাধ্যমে ব্যবহার করা যেতে পারে। +> আরও তথ্য পাবেন: . + +- একটি স্ক্রিনশট নিন: + +`screencap {{ফাইলের/পথ}}` diff --git a/pages.bn/android/settings.md b/pages.bn/android/settings.md new file mode 100644 index 0000000000..ebc3f2e5fa --- /dev/null +++ b/pages.bn/android/settings.md @@ -0,0 +1,20 @@ +# settings + +> Android OS সম্পর্কে তথ্য পান। +> আরও তথ্য পাবেন: . + +- `global` নামস্থানে সেটিংসের একটি তালিকা প্রদর্শন করুন: + +`settings list {{গ্লোবাল}}` + +- একটি নির্দিষ্ট সেটিং এর মান পান: + +`settings get {{global}} {{airplane_mode_on}}` + +- একটি সেটিং এর একটি নির্দিষ্ট মান সেট করুন: + +`settings put {{system}} {{screen_brightness}} {{1..100}}` + +- একটি নির্দিষ্ট সেটিং মুছুন: + +`settings delete {{secure}} {{screensaver_enabled}}` diff --git a/pages.bn/android/wm.md b/pages.bn/android/wm.md new file mode 100644 index 0000000000..51a76d3300 --- /dev/null +++ b/pages.bn/android/wm.md @@ -0,0 +1,13 @@ +# wm + +> একটি অ্যান্ড্রয়েড ডিভাইসের স্ক্রীন সম্পর্কে তথ্য দেখান। +> এই কমান্ডটি শুধুমাত্র `adb shell` এর মাধ্যমে ব্যবহার করা যেতে পারে। +> আরও তথ্য পাবেন: . + +- একটি অ্যান্ড্রয়েড ডিভাইসের স্ক্রিনের শারীরিক আকার প্রদর্শন করুন: + +`wm {{আকার}}` + +- একটি অ্যান্ড্রয়েড ডিভাইসের স্ক্রিনের শারীরিক ঘনত্ব প্রদর্শন করুন: + +`wm {{ঘনত্ব}}` diff --git a/pages.bn/windows/scoop.md b/pages.bn/windows/scoop.md new file mode 100644 index 0000000000..1fef011eb8 --- /dev/null +++ b/pages.bn/windows/scoop.md @@ -0,0 +1,32 @@ +# scoop + +> স্কুপ প্যাকেজ ম্যানেজার। +> আরও তথ্যের জন্য: . + +- একটি প্যাকেজ ইনস্টল করুন: + +`scoop install {{প্যাকেজ}}` + +- একটি প্যাকেজ আনইনস্টল করুন: + +`scoop uninstall {{প্যাকেজ}}` + +- সব ইনস্টল প্যাকেজ আপডেট করুন: + +`scoop update --all` + +- ইনস্টল প্যাকেজের তালিকা তৈরি করুন: + +`scoop list` + +- কোনও প্যাকেজ সম্পর্কে তথ্য দেখান: + +`scoop info {{প্যাকেজ}}` + +- একটি প্যাকেজ সন্ধান করুন: + +`scoop search {{প্যাকেজ}}` + +- সব প্রাচীন সংস্করণ সরানো এবং ডাউনলোড ক্যাশ পরিষ্কার করুন: + +`scoop cleanup --cache --all` diff --git a/pages.bs/common/bundler.md b/pages.bs/common/bundler.md new file mode 100644 index 0000000000..185e22b3ca --- /dev/null +++ b/pages.bs/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> Ova komanda je pseudonim za `bundle`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr bundle` diff --git a/pages.bs/common/clamav.md b/pages.bs/common/clamav.md new file mode 100644 index 0000000000..0a2e8e1408 --- /dev/null +++ b/pages.bs/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> Ova komanda je pseudonim za `clamdscan`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr clamdscan` diff --git a/pages.bs/common/cron.md b/pages.bs/common/cron.md new file mode 100644 index 0000000000..2b2914711f --- /dev/null +++ b/pages.bs/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> Ova komanda je pseudonim za `crontab`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr crontab` diff --git a/pages.bs/common/fossil-ci.md b/pages.bs/common/fossil-ci.md new file mode 100644 index 0000000000..0e98601087 --- /dev/null +++ b/pages.bs/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> Ova komanda je pseudonim za `fossil-commit`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr fossil-commit` diff --git a/pages.bs/common/fossil-delete.md b/pages.bs/common/fossil-delete.md new file mode 100644 index 0000000000..e02011f952 --- /dev/null +++ b/pages.bs/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> Ova komanda je pseudonim za `fossil rm`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr fossil rm` diff --git a/pages.bs/common/fossil-forget.md b/pages.bs/common/fossil-forget.md new file mode 100644 index 0000000000..fb18dad993 --- /dev/null +++ b/pages.bs/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> Ova komanda je pseudonim za `fossil rm`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr fossil rm` diff --git a/pages.bs/common/fossil-new.md b/pages.bs/common/fossil-new.md new file mode 100644 index 0000000000..fc0f954189 --- /dev/null +++ b/pages.bs/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> Ova komanda je pseudonim za `fossil-init`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr fossil-init` diff --git a/pages.bs/common/gh-cs.md b/pages.bs/common/gh-cs.md new file mode 100644 index 0000000000..9983ba1e6f --- /dev/null +++ b/pages.bs/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> Ova komanda je pseudonim za `gh-codespace`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr gh-codespace` diff --git a/pages.bs/common/gnmic-sub.md b/pages.bs/common/gnmic-sub.md new file mode 100644 index 0000000000..b0dc115126 --- /dev/null +++ b/pages.bs/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> Ova komanda je pseudonim za `gnmic subscribe`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr gnmic subscribe` diff --git a/pages.bs/common/google-chrome.md b/pages.bs/common/google-chrome.md new file mode 100644 index 0000000000..d8e667643f --- /dev/null +++ b/pages.bs/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> Ova komanda je pseudonim za `chromium`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr chromium` diff --git a/pages.bs/common/hx.md b/pages.bs/common/hx.md new file mode 100644 index 0000000000..78ea74cc04 --- /dev/null +++ b/pages.bs/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> Ova komanda je pseudonim za `helix`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr helix` diff --git a/pages.bs/common/kafkacat.md b/pages.bs/common/kafkacat.md new file mode 100644 index 0000000000..25371d816c --- /dev/null +++ b/pages.bs/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> Ova komanda je pseudonim za `kcat`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr kcat` diff --git a/pages.bs/common/lzcat.md b/pages.bs/common/lzcat.md new file mode 100644 index 0000000000..04045ee8bb --- /dev/null +++ b/pages.bs/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> Ova komanda je pseudonim za `xz`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr xz` diff --git a/pages.bs/common/lzma.md b/pages.bs/common/lzma.md new file mode 100644 index 0000000000..c44bd5f963 --- /dev/null +++ b/pages.bs/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> Ova komanda je pseudonim za `xz`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr xz` diff --git a/pages.bs/common/nm-classic.md b/pages.bs/common/nm-classic.md new file mode 100644 index 0000000000..91396ef6ee --- /dev/null +++ b/pages.bs/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> Ova komanda je pseudonim za `nm`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr nm` diff --git a/pages.bs/common/ntl.md b/pages.bs/common/ntl.md new file mode 100644 index 0000000000..22030c0200 --- /dev/null +++ b/pages.bs/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> Ova komanda je pseudonim za `netlify`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr netlify` diff --git a/pages.bs/common/ptpython3.md b/pages.bs/common/ptpython3.md new file mode 100644 index 0000000000..f85b7dd957 --- /dev/null +++ b/pages.bs/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> Ova komanda je pseudonim za `ptpython`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr ptpython` diff --git a/pages.bs/common/python3.md b/pages.bs/common/python3.md new file mode 100644 index 0000000000..dab642cef7 --- /dev/null +++ b/pages.bs/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> Ova komanda je pseudonim za `python`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr python` diff --git a/pages.bs/common/rcat.md b/pages.bs/common/rcat.md new file mode 100644 index 0000000000..3ce6d09dd7 --- /dev/null +++ b/pages.bs/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> Ova komanda je pseudonim za `rc`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr rc` diff --git a/pages.bs/common/ripgrep.md b/pages.bs/common/ripgrep.md new file mode 100644 index 0000000000..3172ff97f8 --- /dev/null +++ b/pages.bs/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> Ova komanda je pseudonim za `rg`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr rg` diff --git a/pages.bs/common/todoman.md b/pages.bs/common/todoman.md new file mode 100644 index 0000000000..754e4bb01d --- /dev/null +++ b/pages.bs/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> Ova komanda je pseudonim za `todo`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr todo` diff --git a/pages.bs/common/transmission.md b/pages.bs/common/transmission.md new file mode 100644 index 0000000000..d03e685ab8 --- /dev/null +++ b/pages.bs/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> Ova komanda je pseudonim za `transmission-daemon`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr transmission-daemon` diff --git a/pages.bs/common/unlzma.md b/pages.bs/common/unlzma.md new file mode 100644 index 0000000000..abecd58ee3 --- /dev/null +++ b/pages.bs/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> Ova komanda je pseudonim za `xz`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr xz` diff --git a/pages.bs/common/unxz.md b/pages.bs/common/unxz.md new file mode 100644 index 0000000000..fb54e88f9e --- /dev/null +++ b/pages.bs/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> Ova komanda je pseudonim za `xz`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr xz` diff --git a/pages.bs/common/xzcat.md b/pages.bs/common/xzcat.md new file mode 100644 index 0000000000..6e51b6462e --- /dev/null +++ b/pages.bs/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> Ova komanda je pseudonim za `xz`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr xz` diff --git a/pages.bs/linux/alternatives.md b/pages.bs/linux/alternatives.md new file mode 100644 index 0000000000..85e6a08f5b --- /dev/null +++ b/pages.bs/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> Ova komanda je pseudonim za `update-alternatives`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr update-alternatives` diff --git a/pages.bs/linux/batcat.md b/pages.bs/linux/batcat.md new file mode 100644 index 0000000000..939ff4209c --- /dev/null +++ b/pages.bs/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> Ova komanda je pseudonim za `bat`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr bat` diff --git a/pages.bs/linux/bspwm.md b/pages.bs/linux/bspwm.md new file mode 100644 index 0000000000..4b18aeb3c0 --- /dev/null +++ b/pages.bs/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> Ova komanda je pseudonim za `bspc`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr bspc` diff --git a/pages.bs/linux/cc.md b/pages.bs/linux/cc.md new file mode 100644 index 0000000000..f2e369c0d0 --- /dev/null +++ b/pages.bs/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> Ova komanda je pseudonim za `gcc`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr gcc` diff --git a/pages.bs/linux/cgroups.md b/pages.bs/linux/cgroups.md new file mode 100644 index 0000000000..bc4995482e --- /dev/null +++ b/pages.bs/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> Ova komanda je pseudonim za `cgclassify`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr cgclassify` diff --git a/pages.bs/linux/ip-route-list.md b/pages.bs/linux/ip-route-list.md new file mode 100644 index 0000000000..e86e52d170 --- /dev/null +++ b/pages.bs/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> Ova komanda je pseudonim za `ip-route-show`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr ip-route-show` diff --git a/pages.bs/linux/megadl.md b/pages.bs/linux/megadl.md new file mode 100644 index 0000000000..cdd987552d --- /dev/null +++ b/pages.bs/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> Ova komanda je pseudonim za `megatools-dl`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr megatools-dl` diff --git a/pages.bs/linux/ubuntu-bug.md b/pages.bs/linux/ubuntu-bug.md new file mode 100644 index 0000000000..1361cf2112 --- /dev/null +++ b/pages.bs/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> Ova komanda je pseudonim za `apport-bug`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr apport-bug` diff --git a/pages.bs/osx/aa.md b/pages.bs/osx/aa.md new file mode 100644 index 0000000000..77e506f6df --- /dev/null +++ b/pages.bs/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> Ova komanda je pseudonim za `yaa`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr yaa` diff --git a/pages.bs/osx/g[.md b/pages.bs/osx/g[.md new file mode 100644 index 0000000000..ec69bdbcf0 --- /dev/null +++ b/pages.bs/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> Ova komanda je pseudonim za `-p linux [`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux [` diff --git a/pages.bs/osx/gawk.md b/pages.bs/osx/gawk.md new file mode 100644 index 0000000000..ea7de8a039 --- /dev/null +++ b/pages.bs/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> Ova komanda je pseudonim za `-p linux awk`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux awk` diff --git a/pages.bs/osx/gb2sum.md b/pages.bs/osx/gb2sum.md new file mode 100644 index 0000000000..824ad67107 --- /dev/null +++ b/pages.bs/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> Ova komanda je pseudonim za `-p linux b2sum`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux b2sum` diff --git a/pages.bs/osx/gbase32.md b/pages.bs/osx/gbase32.md new file mode 100644 index 0000000000..fae1655501 --- /dev/null +++ b/pages.bs/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> Ova komanda je pseudonim za `-p linux base32`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux base32` diff --git a/pages.bs/osx/gbase64.md b/pages.bs/osx/gbase64.md new file mode 100644 index 0000000000..2397530d49 --- /dev/null +++ b/pages.bs/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> Ova komanda je pseudonim za `-p linux base64`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux base64` diff --git a/pages.bs/osx/gbasename.md b/pages.bs/osx/gbasename.md new file mode 100644 index 0000000000..a554651490 --- /dev/null +++ b/pages.bs/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> Ova komanda je pseudonim za `-p linux basename`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux basename` diff --git a/pages.bs/osx/gbasenc.md b/pages.bs/osx/gbasenc.md new file mode 100644 index 0000000000..79cb6422a9 --- /dev/null +++ b/pages.bs/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> Ova komanda je pseudonim za `-p linux basenc`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux basenc` diff --git a/pages.bs/osx/gcat.md b/pages.bs/osx/gcat.md new file mode 100644 index 0000000000..469ba29e1f --- /dev/null +++ b/pages.bs/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> Ova komanda je pseudonim za `-p linux cat`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux cat` diff --git a/pages.bs/osx/gchcon.md b/pages.bs/osx/gchcon.md new file mode 100644 index 0000000000..32049783a1 --- /dev/null +++ b/pages.bs/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> Ova komanda je pseudonim za `-p linux chcon`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux chcon` diff --git a/pages.bs/osx/gchgrp.md b/pages.bs/osx/gchgrp.md new file mode 100644 index 0000000000..a42970143a --- /dev/null +++ b/pages.bs/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> Ova komanda je pseudonim za `-p linux chgrp`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux chgrp` diff --git a/pages.bs/osx/gchmod.md b/pages.bs/osx/gchmod.md new file mode 100644 index 0000000000..4bf7a7a7c8 --- /dev/null +++ b/pages.bs/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> Ova komanda je pseudonim za `-p linux chmod`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux chmod` diff --git a/pages.bs/osx/gchown.md b/pages.bs/osx/gchown.md new file mode 100644 index 0000000000..1620561000 --- /dev/null +++ b/pages.bs/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> Ova komanda je pseudonim za `-p linux chown`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux chown` diff --git a/pages.bs/osx/gchroot.md b/pages.bs/osx/gchroot.md new file mode 100644 index 0000000000..6ce5d8fd56 --- /dev/null +++ b/pages.bs/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> Ova komanda je pseudonim za `-p linux chroot`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux chroot` diff --git a/pages.bs/osx/gcksum.md b/pages.bs/osx/gcksum.md new file mode 100644 index 0000000000..f3aa2b7f53 --- /dev/null +++ b/pages.bs/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> Ova komanda je pseudonim za `-p linux cksum`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux cksum` diff --git a/pages.bs/osx/gcomm.md b/pages.bs/osx/gcomm.md new file mode 100644 index 0000000000..afe22bef5f --- /dev/null +++ b/pages.bs/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> Ova komanda je pseudonim za `-p linux comm`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux comm` diff --git a/pages.bs/osx/gcp.md b/pages.bs/osx/gcp.md new file mode 100644 index 0000000000..9ce70be0c4 --- /dev/null +++ b/pages.bs/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> Ova komanda je pseudonim za `-p linux cp`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux cp` diff --git a/pages.bs/osx/gcsplit.md b/pages.bs/osx/gcsplit.md new file mode 100644 index 0000000000..c988c1d452 --- /dev/null +++ b/pages.bs/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> Ova komanda je pseudonim za `-p linux csplit`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux csplit` diff --git a/pages.bs/osx/gcut.md b/pages.bs/osx/gcut.md new file mode 100644 index 0000000000..8ab40d0f0b --- /dev/null +++ b/pages.bs/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> Ova komanda je pseudonim za `-p linux cut`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux cut` diff --git a/pages.bs/osx/gdate.md b/pages.bs/osx/gdate.md new file mode 100644 index 0000000000..760b59f896 --- /dev/null +++ b/pages.bs/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> Ova komanda je pseudonim za `-p linux date`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux date` diff --git a/pages.bs/osx/gdd.md b/pages.bs/osx/gdd.md new file mode 100644 index 0000000000..01b1f15790 --- /dev/null +++ b/pages.bs/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> Ova komanda je pseudonim za `-p linux dd`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux dd` diff --git a/pages.bs/osx/gdf.md b/pages.bs/osx/gdf.md new file mode 100644 index 0000000000..0aba674664 --- /dev/null +++ b/pages.bs/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> Ova komanda je pseudonim za `-p linux df`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux df` diff --git a/pages.bs/osx/gdir.md b/pages.bs/osx/gdir.md new file mode 100644 index 0000000000..400f0dde98 --- /dev/null +++ b/pages.bs/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> Ova komanda je pseudonim za `-p linux dir`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux dir` diff --git a/pages.bs/osx/gdircolors.md b/pages.bs/osx/gdircolors.md new file mode 100644 index 0000000000..d484542fac --- /dev/null +++ b/pages.bs/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> Ova komanda je pseudonim za `-p linux dircolors`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux dircolors` diff --git a/pages.bs/osx/gdirname.md b/pages.bs/osx/gdirname.md new file mode 100644 index 0000000000..968555fbe8 --- /dev/null +++ b/pages.bs/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> Ova komanda je pseudonim za `-p linux dirname`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux dirname` diff --git a/pages.bs/osx/gdnsdomainname.md b/pages.bs/osx/gdnsdomainname.md new file mode 100644 index 0000000000..1d2dae8311 --- /dev/null +++ b/pages.bs/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> Ova komanda je pseudonim za `-p linux dnsdomainname`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux dnsdomainname` diff --git a/pages.bs/osx/gecho.md b/pages.bs/osx/gecho.md new file mode 100644 index 0000000000..8ab7c67484 --- /dev/null +++ b/pages.bs/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> Ova komanda je pseudonim za `-p linux echo`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux echo` diff --git a/pages.bs/osx/ged.md b/pages.bs/osx/ged.md new file mode 100644 index 0000000000..2ceca5f835 --- /dev/null +++ b/pages.bs/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> Ova komanda je pseudonim za `-p linux ed`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux ed` diff --git a/pages.bs/osx/gegrep.md b/pages.bs/osx/gegrep.md new file mode 100644 index 0000000000..3980d61352 --- /dev/null +++ b/pages.bs/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> Ova komanda je pseudonim za `-p linux egrep`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux egrep` diff --git a/pages.bs/osx/genv.md b/pages.bs/osx/genv.md new file mode 100644 index 0000000000..6e95ef6cfc --- /dev/null +++ b/pages.bs/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> Ova komanda je pseudonim za `-p linux env`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux env` diff --git a/pages.bs/osx/gexpand.md b/pages.bs/osx/gexpand.md new file mode 100644 index 0000000000..ae6afed28b --- /dev/null +++ b/pages.bs/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> Ova komanda je pseudonim za `-p linux expand`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux expand` diff --git a/pages.bs/osx/gexpr.md b/pages.bs/osx/gexpr.md new file mode 100644 index 0000000000..73404e9e83 --- /dev/null +++ b/pages.bs/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> Ova komanda je pseudonim za `-p linux expr`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux expr` diff --git a/pages.bs/osx/gfactor.md b/pages.bs/osx/gfactor.md new file mode 100644 index 0000000000..e20a6b5951 --- /dev/null +++ b/pages.bs/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> Ova komanda je pseudonim za `-p linux factor`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux factor` diff --git a/pages.bs/osx/gfalse.md b/pages.bs/osx/gfalse.md new file mode 100644 index 0000000000..f90fc2ffdf --- /dev/null +++ b/pages.bs/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> Ova komanda je pseudonim za `-p linux false`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux false` diff --git a/pages.bs/osx/gfgrep.md b/pages.bs/osx/gfgrep.md new file mode 100644 index 0000000000..1543bb8fc5 --- /dev/null +++ b/pages.bs/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> Ova komanda je pseudonim za `-p linux fgrep`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux fgrep` diff --git a/pages.bs/osx/gfind.md b/pages.bs/osx/gfind.md new file mode 100644 index 0000000000..7b43756e8b --- /dev/null +++ b/pages.bs/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> Ova komanda je pseudonim za `-p linux find`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux find` diff --git a/pages.bs/osx/gfmt.md b/pages.bs/osx/gfmt.md new file mode 100644 index 0000000000..0c5c7a1b0d --- /dev/null +++ b/pages.bs/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> Ova komanda je pseudonim za `-p linux fmt`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux fmt` diff --git a/pages.bs/osx/gfold.md b/pages.bs/osx/gfold.md new file mode 100644 index 0000000000..68a50a2dff --- /dev/null +++ b/pages.bs/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> Ova komanda je pseudonim za `-p linux fold`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux fold` diff --git a/pages.bs/osx/gftp.md b/pages.bs/osx/gftp.md new file mode 100644 index 0000000000..d3fe380d10 --- /dev/null +++ b/pages.bs/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> Ova komanda je pseudonim za `-p linux ftp`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux ftp` diff --git a/pages.bs/osx/ggrep.md b/pages.bs/osx/ggrep.md new file mode 100644 index 0000000000..5106e7107c --- /dev/null +++ b/pages.bs/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> Ova komanda je pseudonim za `-p linux grep`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux grep` diff --git a/pages.bs/osx/ggroups.md b/pages.bs/osx/ggroups.md new file mode 100644 index 0000000000..f9a344c518 --- /dev/null +++ b/pages.bs/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> Ova komanda je pseudonim za `-p linux groups`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux groups` diff --git a/pages.bs/osx/ghead.md b/pages.bs/osx/ghead.md new file mode 100644 index 0000000000..afaf026e1d --- /dev/null +++ b/pages.bs/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> Ova komanda je pseudonim za `-p linux head`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux head` diff --git a/pages.bs/osx/ghostid.md b/pages.bs/osx/ghostid.md new file mode 100644 index 0000000000..9fe356b82a --- /dev/null +++ b/pages.bs/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> Ova komanda je pseudonim za `-p linux hostid`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux hostid` diff --git a/pages.bs/osx/ghostname.md b/pages.bs/osx/ghostname.md new file mode 100644 index 0000000000..3fb96eb82f --- /dev/null +++ b/pages.bs/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> Ova komanda je pseudonim za `-p linux hostname`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux hostname` diff --git a/pages.bs/osx/gid.md b/pages.bs/osx/gid.md new file mode 100644 index 0000000000..1bd40e32f6 --- /dev/null +++ b/pages.bs/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> Ova komanda je pseudonim za `-p linux id`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux id` diff --git a/pages.bs/osx/gifconfig.md b/pages.bs/osx/gifconfig.md new file mode 100644 index 0000000000..b78ba0b8da --- /dev/null +++ b/pages.bs/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> Ova komanda je pseudonim za `-p linux ifconfig`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux ifconfig` diff --git a/pages.bs/osx/gindent.md b/pages.bs/osx/gindent.md new file mode 100644 index 0000000000..4df828e79f --- /dev/null +++ b/pages.bs/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> Ova komanda je pseudonim za `-p linux indent`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux indent` diff --git a/pages.bs/osx/ginstall.md b/pages.bs/osx/ginstall.md new file mode 100644 index 0000000000..0d8fcc5355 --- /dev/null +++ b/pages.bs/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> Ova komanda je pseudonim za `-p linux install`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux install` diff --git a/pages.bs/osx/gjoin.md b/pages.bs/osx/gjoin.md new file mode 100644 index 0000000000..886fc38330 --- /dev/null +++ b/pages.bs/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> Ova komanda je pseudonim za `-p linux join`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux join` diff --git a/pages.bs/osx/gkill.md b/pages.bs/osx/gkill.md new file mode 100644 index 0000000000..40b7fcdf11 --- /dev/null +++ b/pages.bs/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> Ova komanda je pseudonim za `-p linux kill`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux kill` diff --git a/pages.bs/osx/glibtool.md b/pages.bs/osx/glibtool.md new file mode 100644 index 0000000000..7ec1e82a4b --- /dev/null +++ b/pages.bs/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> Ova komanda je pseudonim za `-p linux libtool`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux libtool` diff --git a/pages.bs/osx/glibtoolize.md b/pages.bs/osx/glibtoolize.md new file mode 100644 index 0000000000..89fa861784 --- /dev/null +++ b/pages.bs/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> Ova komanda je pseudonim za `-p linux libtoolize`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux libtoolize` diff --git a/pages.bs/osx/glink.md b/pages.bs/osx/glink.md new file mode 100644 index 0000000000..e3847c6d8b --- /dev/null +++ b/pages.bs/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> Ova komanda je pseudonim za `-p linux link`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux link` diff --git a/pages.bs/osx/gln.md b/pages.bs/osx/gln.md new file mode 100644 index 0000000000..75e0be54a1 --- /dev/null +++ b/pages.bs/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> Ova komanda je pseudonim za `-p linux ln`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux ln` diff --git a/pages.bs/osx/glocate.md b/pages.bs/osx/glocate.md new file mode 100644 index 0000000000..d1d9f66bab --- /dev/null +++ b/pages.bs/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> Ova komanda je pseudonim za `-p linux locate`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux locate` diff --git a/pages.bs/osx/glogger.md b/pages.bs/osx/glogger.md new file mode 100644 index 0000000000..42322caa79 --- /dev/null +++ b/pages.bs/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> Ova komanda je pseudonim za `-p linux logger`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux logger` diff --git a/pages.bs/osx/glogname.md b/pages.bs/osx/glogname.md new file mode 100644 index 0000000000..be6ae10a4c --- /dev/null +++ b/pages.bs/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> Ova komanda je pseudonim za `-p linux logname`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux logname` diff --git a/pages.bs/osx/gls.md b/pages.bs/osx/gls.md new file mode 100644 index 0000000000..5f704a0292 --- /dev/null +++ b/pages.bs/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> Ova komanda je pseudonim za `-p linux ls`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux ls` diff --git a/pages.bs/osx/gmake.md b/pages.bs/osx/gmake.md new file mode 100644 index 0000000000..fd64dfa13d --- /dev/null +++ b/pages.bs/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> Ova komanda je pseudonim za `-p linux make`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux make` diff --git a/pages.bs/osx/gmd5sum.md b/pages.bs/osx/gmd5sum.md new file mode 100644 index 0000000000..087ee2f733 --- /dev/null +++ b/pages.bs/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> Ova komanda je pseudonim za `-p linux md5sum`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux md5sum` diff --git a/pages.bs/osx/gmkdir.md b/pages.bs/osx/gmkdir.md new file mode 100644 index 0000000000..271e277cf0 --- /dev/null +++ b/pages.bs/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> Ova komanda je pseudonim za `-p linux mkdir`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux mkdir` diff --git a/pages.bs/osx/gmkfifo.md b/pages.bs/osx/gmkfifo.md new file mode 100644 index 0000000000..6bb42819ec --- /dev/null +++ b/pages.bs/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> Ova komanda je pseudonim za `-p linux mkfifo`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux mkfifo` diff --git a/pages.bs/osx/gmknod.md b/pages.bs/osx/gmknod.md new file mode 100644 index 0000000000..2786608a9a --- /dev/null +++ b/pages.bs/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> Ova komanda je pseudonim za `-p linux mknod`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux mknod` diff --git a/pages.bs/osx/gmktemp.md b/pages.bs/osx/gmktemp.md new file mode 100644 index 0000000000..d31425a587 --- /dev/null +++ b/pages.bs/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> Ova komanda je pseudonim za `-p linux mktemp`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux mktemp` diff --git a/pages.bs/osx/gmv.md b/pages.bs/osx/gmv.md new file mode 100644 index 0000000000..00d96b2747 --- /dev/null +++ b/pages.bs/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> Ova komanda je pseudonim za `-p linux mv`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux mv` diff --git a/pages.bs/osx/gnice.md b/pages.bs/osx/gnice.md new file mode 100644 index 0000000000..e5e4f94f9f --- /dev/null +++ b/pages.bs/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> Ova komanda je pseudonim za `-p linux nice`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux nice` diff --git a/pages.bs/osx/gnl.md b/pages.bs/osx/gnl.md new file mode 100644 index 0000000000..293b634c5a --- /dev/null +++ b/pages.bs/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> Ova komanda je pseudonim za `-p linux nl`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux nl` diff --git a/pages.bs/osx/gnohup.md b/pages.bs/osx/gnohup.md new file mode 100644 index 0000000000..abe14061cb --- /dev/null +++ b/pages.bs/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> Ova komanda je pseudonim za `-p linux nohup`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux nohup` diff --git a/pages.bs/osx/gnproc.md b/pages.bs/osx/gnproc.md new file mode 100644 index 0000000000..5b1ee6b6f0 --- /dev/null +++ b/pages.bs/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> Ova komanda je pseudonim za `-p linux nproc`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux nproc` diff --git a/pages.bs/osx/gnumfmt.md b/pages.bs/osx/gnumfmt.md new file mode 100644 index 0000000000..1601ae7cc9 --- /dev/null +++ b/pages.bs/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> Ova komanda je pseudonim za `-p linux numfmt`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux numfmt` diff --git a/pages.bs/osx/god.md b/pages.bs/osx/god.md new file mode 100644 index 0000000000..95605a1dd0 --- /dev/null +++ b/pages.bs/osx/god.md @@ -0,0 +1,7 @@ +# god + +> Ova komanda je pseudonim za `-p linux od`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux od` diff --git a/pages.bs/osx/gpaste.md b/pages.bs/osx/gpaste.md new file mode 100644 index 0000000000..9541ab0993 --- /dev/null +++ b/pages.bs/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> Ova komanda je pseudonim za `-p linux paste`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux paste` diff --git a/pages.bs/osx/gpathchk.md b/pages.bs/osx/gpathchk.md new file mode 100644 index 0000000000..158f466e4e --- /dev/null +++ b/pages.bs/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> Ova komanda je pseudonim za `-p linux pathchk`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux pathchk` diff --git a/pages.bs/osx/gping.md b/pages.bs/osx/gping.md new file mode 100644 index 0000000000..27ca9c4d81 --- /dev/null +++ b/pages.bs/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> Ova komanda je pseudonim za `-p linux ping`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux ping` diff --git a/pages.bs/osx/gping6.md b/pages.bs/osx/gping6.md new file mode 100644 index 0000000000..f2daf79ab9 --- /dev/null +++ b/pages.bs/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> Ova komanda je pseudonim za `-p linux ping6`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux ping6` diff --git a/pages.bs/osx/gpinky.md b/pages.bs/osx/gpinky.md new file mode 100644 index 0000000000..9eb35f852b --- /dev/null +++ b/pages.bs/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> Ova komanda je pseudonim za `-p linux pinky`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux pinky` diff --git a/pages.bs/osx/gpr.md b/pages.bs/osx/gpr.md new file mode 100644 index 0000000000..85d0205c01 --- /dev/null +++ b/pages.bs/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> Ova komanda je pseudonim za `-p linux pr`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux pr` diff --git a/pages.bs/osx/gprintenv.md b/pages.bs/osx/gprintenv.md new file mode 100644 index 0000000000..d39f1920de --- /dev/null +++ b/pages.bs/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> Ova komanda je pseudonim za `-p linux printenv`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux printenv` diff --git a/pages.bs/osx/gprintf.md b/pages.bs/osx/gprintf.md new file mode 100644 index 0000000000..00a32f0527 --- /dev/null +++ b/pages.bs/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> Ova komanda je pseudonim za `-p linux printf`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux printf` diff --git a/pages.bs/osx/gptx.md b/pages.bs/osx/gptx.md new file mode 100644 index 0000000000..4e515bd4d4 --- /dev/null +++ b/pages.bs/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> Ova komanda je pseudonim za `-p linux ptx`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux ptx` diff --git a/pages.bs/osx/gpwd.md b/pages.bs/osx/gpwd.md new file mode 100644 index 0000000000..98ee572e7c --- /dev/null +++ b/pages.bs/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> Ova komanda je pseudonim za `-p linux pwd`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux pwd` diff --git a/pages.bs/osx/grcp.md b/pages.bs/osx/grcp.md new file mode 100644 index 0000000000..04cdb073a2 --- /dev/null +++ b/pages.bs/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> Ova komanda je pseudonim za `-p linux rcp`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux rcp` diff --git a/pages.bs/osx/greadlink.md b/pages.bs/osx/greadlink.md new file mode 100644 index 0000000000..99559149ba --- /dev/null +++ b/pages.bs/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> Ova komanda je pseudonim za `-p linux readlink`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux readlink` diff --git a/pages.bs/osx/grealpath.md b/pages.bs/osx/grealpath.md new file mode 100644 index 0000000000..ac8696591b --- /dev/null +++ b/pages.bs/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> Ova komanda je pseudonim za `-p linux realpath`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux realpath` diff --git a/pages.bs/osx/grexec.md b/pages.bs/osx/grexec.md new file mode 100644 index 0000000000..3f466ee898 --- /dev/null +++ b/pages.bs/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> Ova komanda je pseudonim za `-p linux rexec`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux rexec` diff --git a/pages.bs/osx/grlogin.md b/pages.bs/osx/grlogin.md new file mode 100644 index 0000000000..52c960e2c2 --- /dev/null +++ b/pages.bs/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> Ova komanda je pseudonim za `-p linux rlogin`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux rlogin` diff --git a/pages.bs/osx/grm.md b/pages.bs/osx/grm.md new file mode 100644 index 0000000000..b4288233b6 --- /dev/null +++ b/pages.bs/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> Ova komanda je pseudonim za `-p linux rm`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux rm` diff --git a/pages.bs/osx/grmdir.md b/pages.bs/osx/grmdir.md new file mode 100644 index 0000000000..6b08705619 --- /dev/null +++ b/pages.bs/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> Ova komanda je pseudonim za `-p linux rmdir`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux rmdir` diff --git a/pages.bs/osx/grsh.md b/pages.bs/osx/grsh.md new file mode 100644 index 0000000000..d9e59828e2 --- /dev/null +++ b/pages.bs/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> Ova komanda je pseudonim za `-p linux rsh`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux rsh` diff --git a/pages.bs/osx/gruncon.md b/pages.bs/osx/gruncon.md new file mode 100644 index 0000000000..e5bc9a2a9b --- /dev/null +++ b/pages.bs/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> Ova komanda je pseudonim za `-p linux runcon`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux runcon` diff --git a/pages.bs/osx/gsed.md b/pages.bs/osx/gsed.md new file mode 100644 index 0000000000..061916bc89 --- /dev/null +++ b/pages.bs/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> Ova komanda je pseudonim za `-p linux sed`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux sed` diff --git a/pages.bs/osx/gseq.md b/pages.bs/osx/gseq.md new file mode 100644 index 0000000000..595545ea51 --- /dev/null +++ b/pages.bs/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> Ova komanda je pseudonim za `-p linux seq`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux seq` diff --git a/pages.bs/osx/gsha1sum.md b/pages.bs/osx/gsha1sum.md new file mode 100644 index 0000000000..eb9eb3a0c4 --- /dev/null +++ b/pages.bs/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> Ova komanda je pseudonim za `-p linux sha1sum`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux sha1sum` diff --git a/pages.bs/osx/gsha224sum.md b/pages.bs/osx/gsha224sum.md new file mode 100644 index 0000000000..7e6d819c61 --- /dev/null +++ b/pages.bs/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> Ova komanda je pseudonim za `-p linux sha224sum`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux sha224sum` diff --git a/pages.bs/osx/gsha256sum.md b/pages.bs/osx/gsha256sum.md new file mode 100644 index 0000000000..c432810ab7 --- /dev/null +++ b/pages.bs/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> Ova komanda je pseudonim za `-p linux sha256sum`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux sha256sum` diff --git a/pages.bs/osx/gsha384sum.md b/pages.bs/osx/gsha384sum.md new file mode 100644 index 0000000000..ce49b1fbdc --- /dev/null +++ b/pages.bs/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> Ova komanda je pseudonim za `-p linux sha384sum`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux sha384sum` diff --git a/pages.bs/osx/gsha512sum.md b/pages.bs/osx/gsha512sum.md new file mode 100644 index 0000000000..481a1b23e7 --- /dev/null +++ b/pages.bs/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> Ova komanda je pseudonim za `-p linux sha512sum`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux sha512sum` diff --git a/pages.bs/osx/gshred.md b/pages.bs/osx/gshred.md new file mode 100644 index 0000000000..d06aa3f801 --- /dev/null +++ b/pages.bs/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> Ova komanda je pseudonim za `-p linux shred`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux shred` diff --git a/pages.bs/osx/gshuf.md b/pages.bs/osx/gshuf.md new file mode 100644 index 0000000000..6b15193e91 --- /dev/null +++ b/pages.bs/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> Ova komanda je pseudonim za `-p linux shuf`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux shuf` diff --git a/pages.bs/osx/gsleep.md b/pages.bs/osx/gsleep.md new file mode 100644 index 0000000000..eaeb4aca97 --- /dev/null +++ b/pages.bs/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> Ova komanda je pseudonim za `-p linux sleep`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux sleep` diff --git a/pages.bs/osx/gsort.md b/pages.bs/osx/gsort.md new file mode 100644 index 0000000000..46b29f6b60 --- /dev/null +++ b/pages.bs/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> Ova komanda je pseudonim za `-p linux sort`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux sort` diff --git a/pages.bs/osx/gsplit.md b/pages.bs/osx/gsplit.md new file mode 100644 index 0000000000..1fb7ef73e6 --- /dev/null +++ b/pages.bs/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> Ova komanda je pseudonim za `-p linux split`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux split` diff --git a/pages.bs/osx/gstat.md b/pages.bs/osx/gstat.md new file mode 100644 index 0000000000..3b8b731298 --- /dev/null +++ b/pages.bs/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> Ova komanda je pseudonim za `-p linux stat`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux stat` diff --git a/pages.bs/osx/gstdbuf.md b/pages.bs/osx/gstdbuf.md new file mode 100644 index 0000000000..f01cab4dd6 --- /dev/null +++ b/pages.bs/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> Ova komanda je pseudonim za `-p linux stdbuf`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux stdbuf` diff --git a/pages.bs/osx/gstty.md b/pages.bs/osx/gstty.md new file mode 100644 index 0000000000..3837588584 --- /dev/null +++ b/pages.bs/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> Ova komanda je pseudonim za `-p linux stty`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux stty` diff --git a/pages.bs/osx/gsum.md b/pages.bs/osx/gsum.md new file mode 100644 index 0000000000..13a3083e3f --- /dev/null +++ b/pages.bs/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> Ova komanda je pseudonim za `-p linux sum`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux sum` diff --git a/pages.bs/osx/gsync.md b/pages.bs/osx/gsync.md new file mode 100644 index 0000000000..46020f97c7 --- /dev/null +++ b/pages.bs/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> Ova komanda je pseudonim za `-p linux sync`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux sync` diff --git a/pages.bs/osx/gtac.md b/pages.bs/osx/gtac.md new file mode 100644 index 0000000000..76d97b5d00 --- /dev/null +++ b/pages.bs/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> Ova komanda je pseudonim za `-p linux tac`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux tac` diff --git a/pages.bs/osx/gtail.md b/pages.bs/osx/gtail.md new file mode 100644 index 0000000000..a250587a5d --- /dev/null +++ b/pages.bs/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> Ova komanda je pseudonim za `-p linux tail`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux tail` diff --git a/pages.bs/osx/gtalk.md b/pages.bs/osx/gtalk.md new file mode 100644 index 0000000000..85936f69fa --- /dev/null +++ b/pages.bs/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> Ova komanda je pseudonim za `-p linux talk`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux talk` diff --git a/pages.bs/osx/gtar.md b/pages.bs/osx/gtar.md new file mode 100644 index 0000000000..5f05ff2b6d --- /dev/null +++ b/pages.bs/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> Ova komanda je pseudonim za `-p linux tar`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux tar` diff --git a/pages.bs/osx/gtee.md b/pages.bs/osx/gtee.md new file mode 100644 index 0000000000..627555605e --- /dev/null +++ b/pages.bs/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> Ova komanda je pseudonim za `-p linux tee`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux tee` diff --git a/pages.bs/osx/gtelnet.md b/pages.bs/osx/gtelnet.md new file mode 100644 index 0000000000..823045ae4c --- /dev/null +++ b/pages.bs/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> Ova komanda je pseudonim za `-p linux telnet`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux telnet` diff --git a/pages.bs/osx/gtest.md b/pages.bs/osx/gtest.md new file mode 100644 index 0000000000..4a2bffe703 --- /dev/null +++ b/pages.bs/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> Ova komanda je pseudonim za `-p linux test`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux test` diff --git a/pages.bs/osx/gtftp.md b/pages.bs/osx/gtftp.md new file mode 100644 index 0000000000..2aa9691e19 --- /dev/null +++ b/pages.bs/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> Ova komanda je pseudonim za `-p linux tftp`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux tftp` diff --git a/pages.bs/osx/gtime.md b/pages.bs/osx/gtime.md new file mode 100644 index 0000000000..2d60ebd66b --- /dev/null +++ b/pages.bs/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> Ova komanda je pseudonim za `-p linux time`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux time` diff --git a/pages.bs/osx/gtimeout.md b/pages.bs/osx/gtimeout.md new file mode 100644 index 0000000000..3f21c57334 --- /dev/null +++ b/pages.bs/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> Ova komanda je pseudonim za `-p linux timeout`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux timeout` diff --git a/pages.bs/osx/gtouch.md b/pages.bs/osx/gtouch.md new file mode 100644 index 0000000000..54d07ad958 --- /dev/null +++ b/pages.bs/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> Ova komanda je pseudonim za `-p linux touch`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux touch` diff --git a/pages.bs/osx/gtr.md b/pages.bs/osx/gtr.md new file mode 100644 index 0000000000..ff4877ad99 --- /dev/null +++ b/pages.bs/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> Ova komanda je pseudonim za `-p linux tr`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux tr` diff --git a/pages.bs/osx/gtraceroute.md b/pages.bs/osx/gtraceroute.md new file mode 100644 index 0000000000..227d71d1a7 --- /dev/null +++ b/pages.bs/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> Ova komanda je pseudonim za `-p linux traceroute`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux traceroute` diff --git a/pages.bs/osx/gtrue.md b/pages.bs/osx/gtrue.md new file mode 100644 index 0000000000..9dc597c595 --- /dev/null +++ b/pages.bs/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> Ova komanda je pseudonim za `-p linux true`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux true` diff --git a/pages.bs/osx/gtruncate.md b/pages.bs/osx/gtruncate.md new file mode 100644 index 0000000000..4ca28cc13d --- /dev/null +++ b/pages.bs/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> Ova komanda je pseudonim za `-p linux truncate`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux truncate` diff --git a/pages.bs/osx/gtsort.md b/pages.bs/osx/gtsort.md new file mode 100644 index 0000000000..a78a93bc2a --- /dev/null +++ b/pages.bs/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> Ova komanda je pseudonim za `-p linux tsort`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux tsort` diff --git a/pages.bs/osx/gtty.md b/pages.bs/osx/gtty.md new file mode 100644 index 0000000000..96cfa7a40f --- /dev/null +++ b/pages.bs/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> Ova komanda je pseudonim za `-p linux tty`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux tty` diff --git a/pages.bs/osx/guname.md b/pages.bs/osx/guname.md new file mode 100644 index 0000000000..de388ac9be --- /dev/null +++ b/pages.bs/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> Ova komanda je pseudonim za `-p linux uname`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux uname` diff --git a/pages.bs/osx/gunexpand.md b/pages.bs/osx/gunexpand.md new file mode 100644 index 0000000000..cdd79f0b96 --- /dev/null +++ b/pages.bs/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> Ova komanda je pseudonim za `-p linux unexpand`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux unexpand` diff --git a/pages.bs/osx/guniq.md b/pages.bs/osx/guniq.md new file mode 100644 index 0000000000..57f12f7466 --- /dev/null +++ b/pages.bs/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> Ova komanda je pseudonim za `-p linux uniq`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux uniq` diff --git a/pages.bs/osx/gunits.md b/pages.bs/osx/gunits.md new file mode 100644 index 0000000000..45852fea8d --- /dev/null +++ b/pages.bs/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> Ova komanda je pseudonim za `-p linux units`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux units` diff --git a/pages.bs/osx/gunlink.md b/pages.bs/osx/gunlink.md new file mode 100644 index 0000000000..6b23f92cfb --- /dev/null +++ b/pages.bs/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> Ova komanda je pseudonim za `-p linux unlink`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux unlink` diff --git a/pages.bs/osx/gupdatedb.md b/pages.bs/osx/gupdatedb.md new file mode 100644 index 0000000000..5f611313a1 --- /dev/null +++ b/pages.bs/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> Ova komanda je pseudonim za `-p linux updatedb`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux updatedb` diff --git a/pages.bs/osx/guptime.md b/pages.bs/osx/guptime.md new file mode 100644 index 0000000000..c7f29e61f8 --- /dev/null +++ b/pages.bs/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> Ova komanda je pseudonim za `-p linux uptime`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux uptime` diff --git a/pages.bs/osx/gusers.md b/pages.bs/osx/gusers.md new file mode 100644 index 0000000000..2ce38c8578 --- /dev/null +++ b/pages.bs/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> Ova komanda je pseudonim za `-p linux users`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux users` diff --git a/pages.bs/osx/gvdir.md b/pages.bs/osx/gvdir.md new file mode 100644 index 0000000000..64f48ac148 --- /dev/null +++ b/pages.bs/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> Ova komanda je pseudonim za `-p linux vdir`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux vdir` diff --git a/pages.bs/osx/gwc.md b/pages.bs/osx/gwc.md new file mode 100644 index 0000000000..eadb6daa04 --- /dev/null +++ b/pages.bs/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> Ova komanda je pseudonim za `-p linux wc`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux wc` diff --git a/pages.bs/osx/gwhich.md b/pages.bs/osx/gwhich.md new file mode 100644 index 0000000000..05e36124da --- /dev/null +++ b/pages.bs/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> Ova komanda je pseudonim za `-p linux which`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux which` diff --git a/pages.bs/osx/gwho.md b/pages.bs/osx/gwho.md new file mode 100644 index 0000000000..b88c07384a --- /dev/null +++ b/pages.bs/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> Ova komanda je pseudonim za `-p linux who`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux who` diff --git a/pages.bs/osx/gwhoami.md b/pages.bs/osx/gwhoami.md new file mode 100644 index 0000000000..a43af2b973 --- /dev/null +++ b/pages.bs/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> Ova komanda je pseudonim za `-p linux whoami`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux whoami` diff --git a/pages.bs/osx/gwhois.md b/pages.bs/osx/gwhois.md new file mode 100644 index 0000000000..1f8af261f8 --- /dev/null +++ b/pages.bs/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> Ova komanda je pseudonim za `-p linux whois`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux whois` diff --git a/pages.bs/osx/gxargs.md b/pages.bs/osx/gxargs.md new file mode 100644 index 0000000000..0685408c48 --- /dev/null +++ b/pages.bs/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> Ova komanda je pseudonim za `-p linux xargs`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux xargs` diff --git a/pages.bs/osx/gyes.md b/pages.bs/osx/gyes.md new file mode 100644 index 0000000000..c7fc3b84ef --- /dev/null +++ b/pages.bs/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> Ova komanda je pseudonim za `-p linux yes`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr -p linux yes` diff --git a/pages.bs/osx/launchd.md b/pages.bs/osx/launchd.md new file mode 100644 index 0000000000..fcaa924fa2 --- /dev/null +++ b/pages.bs/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> Ova komanda je pseudonim za `launchctl`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr launchctl` diff --git a/pages.bs/windows/chrome.md b/pages.bs/windows/chrome.md new file mode 100644 index 0000000000..2541ce0de4 --- /dev/null +++ b/pages.bs/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> Ova komanda je pseudonim za `chromium`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr chromium` diff --git a/pages.bs/windows/cpush.md b/pages.bs/windows/cpush.md new file mode 100644 index 0000000000..05edcbc3e8 --- /dev/null +++ b/pages.bs/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> Ova komanda je pseudonim za `choco-push`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr choco-push` diff --git a/pages.bs/windows/curl.md b/pages.bs/windows/curl.md new file mode 100644 index 0000000000..5c98b50aee --- /dev/null +++ b/pages.bs/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> Ova komanda je pseudonim za `curl -p common`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr curl -p common` diff --git a/pages.bs/windows/iwr.md b/pages.bs/windows/iwr.md new file mode 100644 index 0000000000..6f590167e4 --- /dev/null +++ b/pages.bs/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> Ova komanda je pseudonim za `invoke-webrequest`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr invoke-webrequest` diff --git a/pages.bs/windows/pwsh-where.md b/pages.bs/windows/pwsh-where.md new file mode 100644 index 0000000000..37c4d288ff --- /dev/null +++ b/pages.bs/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> Ova komanda je pseudonim za `Where-Object`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr Where-Object` diff --git a/pages.bs/windows/rd.md b/pages.bs/windows/rd.md new file mode 100644 index 0000000000..4acc0fba74 --- /dev/null +++ b/pages.bs/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> Ova komanda je pseudonim za `rmdir`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr rmdir` diff --git a/pages.bs/windows/sls.md b/pages.bs/windows/sls.md new file mode 100644 index 0000000000..e780257c61 --- /dev/null +++ b/pages.bs/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> Ova komanda je pseudonim za `where-object`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr where-object` diff --git a/pages.bs/windows/wget.md b/pages.bs/windows/wget.md new file mode 100644 index 0000000000..fbfdadb322 --- /dev/null +++ b/pages.bs/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> Ova komanda je pseudonim za `wget -p common`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr wget -p common` diff --git a/pages.ca/common/7z.md b/pages.ca/common/7z.md index ef6870608d..2c77969341 100644 --- a/pages.ca/common/7z.md +++ b/pages.ca/common/7z.md @@ -1,7 +1,7 @@ # 7z > Arxivador de fitxers amb un alt ràtio de compressió. -> Més informació: . +> Més informació: . - [a]rxiva un fitxer o directori: @@ -19,7 +19,7 @@ `7z x {{camí/al/fitxer.7z}} -o{{camí/al/directori}}` -- E[x]treu un fitxer a stdout: +- E[x]treu un fitxer a `stdout`: `7z x {{camí/al/fitxer.7z}} -so` diff --git a/pages.ca/linux/bpytop.md b/pages.ca/common/bpytop.md similarity index 100% rename from pages.ca/linux/bpytop.md rename to pages.ca/common/bpytop.md diff --git a/pages.ca/common/bundler.md b/pages.ca/common/bundler.md new file mode 100644 index 0000000000..93cc0ccd43 --- /dev/null +++ b/pages.ca/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> Aquest comandament és un àlies de `bundle`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr bundle` diff --git a/pages.ca/common/clamav.md b/pages.ca/common/clamav.md new file mode 100644 index 0000000000..3e23c00bbe --- /dev/null +++ b/pages.ca/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> Aquest comandament és un àlies de `clamdscan`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr clamdscan` diff --git a/pages.ca/common/clang-cpp.md b/pages.ca/common/clang-cpp.md new file mode 100644 index 0000000000..829257c9ea --- /dev/null +++ b/pages.ca/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> Aquest comandament és un àlies de `clang++`. + +- Veure documentació pel comandament original: + +`tldr clang++` diff --git a/pages.ca/common/clojure.md b/pages.ca/common/clojure.md new file mode 100644 index 0000000000..2a8da16690 --- /dev/null +++ b/pages.ca/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> Aquest comandament és un àlies de `clj`. + +- Veure documentació pel comandament original: + +`tldr clj` diff --git a/pages.ca/common/cola.md b/pages.ca/common/cola.md new file mode 100644 index 0000000000..a68588befe --- /dev/null +++ b/pages.ca/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> Aquest comandament és un àlies de `git-cola`. + +- Veure documentació pel comandament original: + +`tldr git-cola` diff --git a/pages.ca/common/cron.md b/pages.ca/common/cron.md new file mode 100644 index 0000000000..358c9b8c50 --- /dev/null +++ b/pages.ca/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> Aquest comandament és un àlies de `crontab`. + +- Veure documentació pel comandament original: + +`tldr crontab` diff --git a/pages.ca/common/fossil-delete.md b/pages.ca/common/fossil-delete.md new file mode 100644 index 0000000000..cb22b9560e --- /dev/null +++ b/pages.ca/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> Aquest comandament és un àlies de `fossil rm`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr fossil rm` diff --git a/pages.ca/common/fossil-forget.md b/pages.ca/common/fossil-forget.md new file mode 100644 index 0000000000..485a67e92d --- /dev/null +++ b/pages.ca/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> Aquest comandament és un àlies de `fossil rm`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr fossil rm` diff --git a/pages.ca/common/fossil-new.md b/pages.ca/common/fossil-new.md new file mode 100644 index 0000000000..f218ff197a --- /dev/null +++ b/pages.ca/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> Aquest comandament és un àlies de `fossil-init`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr fossil-init` diff --git a/pages.ca/common/gh-cs.md b/pages.ca/common/gh-cs.md new file mode 100644 index 0000000000..f5048c23ea --- /dev/null +++ b/pages.ca/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> Aquest comandament és un àlies de `gh-codespace`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr gh-codespace` diff --git a/pages.ca/common/gnmic-sub.md b/pages.ca/common/gnmic-sub.md new file mode 100644 index 0000000000..fb3cb90004 --- /dev/null +++ b/pages.ca/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> Aquest comandament és un àlies de `gnmic subscribe`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr gnmic subscribe` diff --git a/pages.ca/common/google-chrome.md b/pages.ca/common/google-chrome.md new file mode 100644 index 0000000000..4644619f00 --- /dev/null +++ b/pages.ca/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> Aquest comandament és un àlies de `chromium`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr chromium` diff --git a/pages.ca/common/hx.md b/pages.ca/common/hx.md new file mode 100644 index 0000000000..7da6dbb022 --- /dev/null +++ b/pages.ca/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> Aquest comandament és un àlies de `helix`. + +- Veure documentació pel comandament original: + +`tldr helix` diff --git a/pages.ca/common/kafkacat.md b/pages.ca/common/kafkacat.md new file mode 100644 index 0000000000..799b064a30 --- /dev/null +++ b/pages.ca/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> Aquest comandament és un àlies de `kcat`. + +- Veure documentació pel comandament original: + +`tldr kcat` diff --git a/pages.ca/common/llvm-ar.md b/pages.ca/common/llvm-ar.md new file mode 100644 index 0000000000..7aa513769d --- /dev/null +++ b/pages.ca/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> Aquest comandament és un àlies de `ar`. + +- Veure documentació pel comandament original: + +`tldr ar` diff --git a/pages.ca/common/llvm-g++.md b/pages.ca/common/llvm-g++.md new file mode 100644 index 0000000000..6fa148ed6d --- /dev/null +++ b/pages.ca/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> Aquest comandament és un àlies de `clang++`. + +- Veure documentació pel comandament original: + +`tldr clang++` diff --git a/pages.ca/common/llvm-gcc.md b/pages.ca/common/llvm-gcc.md new file mode 100644 index 0000000000..e00f9ffb1b --- /dev/null +++ b/pages.ca/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> Aquest comandament és un àlies de `clang`. + +- Veure documentació pel comandament original: + +`tldr clang` diff --git a/pages.ca/common/llvm-nm.md b/pages.ca/common/llvm-nm.md new file mode 100644 index 0000000000..c0af1adc4d --- /dev/null +++ b/pages.ca/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> Aquest comandament és un àlies de `nm`. + +- Veure documentació pel comandament original: + +`tldr nm` diff --git a/pages.ca/common/llvm-objdump.md b/pages.ca/common/llvm-objdump.md new file mode 100644 index 0000000000..2decd83b00 --- /dev/null +++ b/pages.ca/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> Aquest comandament és un àlies de `objdump`. + +- Veure documentació pel comandament original: + +`tldr objdump` diff --git a/pages.ca/common/llvm-strings.md b/pages.ca/common/llvm-strings.md new file mode 100644 index 0000000000..de3da45b11 --- /dev/null +++ b/pages.ca/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> Aquest comandament és un àlies de `strings`. + +- Veure documentació pel comandament original: + +`tldr strings` diff --git a/pages.ca/common/lzcat.md b/pages.ca/common/lzcat.md new file mode 100644 index 0000000000..5361517a34 --- /dev/null +++ b/pages.ca/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> Aquest comandament és un àlies de `xz`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr xz` diff --git a/pages.ca/common/lzma.md b/pages.ca/common/lzma.md new file mode 100644 index 0000000000..b3cc97816a --- /dev/null +++ b/pages.ca/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> Aquest comandament és un àlies de `xz`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr xz` diff --git a/pages.ca/common/mscore.md b/pages.ca/common/mscore.md new file mode 100644 index 0000000000..6cbcc63dd7 --- /dev/null +++ b/pages.ca/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> Aquest comandament és un àlies de `musescore`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr musescore` diff --git a/pages.ca/common/nm-classic.md b/pages.ca/common/nm-classic.md new file mode 100644 index 0000000000..4277b61cf4 --- /dev/null +++ b/pages.ca/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> Aquest comandament és un àlies de `nm`. + +- Veure documentació pel comandament original: + +`tldr nm` diff --git a/pages.ca/common/ntl.md b/pages.ca/common/ntl.md new file mode 100644 index 0000000000..fe159fde96 --- /dev/null +++ b/pages.ca/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> Aquest comandament és un àlies de `netlify`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr netlify` diff --git a/pages.ca/common/pio-init.md b/pages.ca/common/pio-init.md new file mode 100644 index 0000000000..879dc8914e --- /dev/null +++ b/pages.ca/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> Aquest comandament és un àlies de `pio project`. + +- Veure documentació pel comandament original: + +`tldr pio project` diff --git a/pages.ca/common/piodebuggdb.md b/pages.ca/common/piodebuggdb.md new file mode 100644 index 0000000000..9cd1ec07e4 --- /dev/null +++ b/pages.ca/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> Aquest comandament és un àlies de `pio debug`. + +- Veure documentació pel comandament original: + +`tldr pio debug` diff --git a/pages.ca/common/platformio.md b/pages.ca/common/platformio.md new file mode 100644 index 0000000000..3fc9ff4b59 --- /dev/null +++ b/pages.ca/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> Aquest comandament és un àlies de `pio`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr pio` diff --git a/pages.ca/common/ptpython3.md b/pages.ca/common/ptpython3.md new file mode 100644 index 0000000000..eb09dd839e --- /dev/null +++ b/pages.ca/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> Aquest comandament és un àlies de `ptpython`. + +- Veure documentació pel comandament original: + +`tldr ptpython` diff --git a/pages.ca/common/python3.md b/pages.ca/common/python3.md new file mode 100644 index 0000000000..8e84f5aeea --- /dev/null +++ b/pages.ca/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> Aquest comandament és un àlies de `python`. + +- Veure documentació pel comandament original: + +`tldr python` diff --git a/pages.ca/common/r2.md b/pages.ca/common/r2.md new file mode 100644 index 0000000000..b6f2f90457 --- /dev/null +++ b/pages.ca/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> Aquest comandament és un àlies de `radare2`. + +- Veure documentació pel comandament original: + +`tldr radare2` diff --git a/pages.ca/common/rcat.md b/pages.ca/common/rcat.md new file mode 100644 index 0000000000..561fb79f60 --- /dev/null +++ b/pages.ca/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> Aquest comandament és un àlies de `rc`. + +- Veure documentació pel comandament original: + +`tldr rc` diff --git a/pages.ca/common/ripgrep.md b/pages.ca/common/ripgrep.md new file mode 100644 index 0000000000..648a503380 --- /dev/null +++ b/pages.ca/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> Aquest comandament és un àlies de `rg`. + +- Veure documentació pel comandament original: + +`tldr rg` diff --git a/pages.ca/common/tldrl.md b/pages.ca/common/tldrl.md new file mode 100644 index 0000000000..7d4597efc8 --- /dev/null +++ b/pages.ca/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> Aquest comandament és un àlies de `tldr-lint`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr tldr-lint` diff --git a/pages.ca/common/tlmgr-arch.md b/pages.ca/common/tlmgr-arch.md new file mode 100644 index 0000000000..5acb501d3d --- /dev/null +++ b/pages.ca/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> Aquest comandament és un àlies de `tlmgr platform`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr tlmgr platform` diff --git a/pages.ca/common/todoman.md b/pages.ca/common/todoman.md new file mode 100644 index 0000000000..df5cbd582a --- /dev/null +++ b/pages.ca/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> Aquest comandament és un àlies de `todo`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr todo` diff --git a/pages.ca/common/touch.md b/pages.ca/common/touch.md index 7374a3b58b..16d133f3bf 100644 --- a/pages.ca/common/touch.md +++ b/pages.ca/common/touch.md @@ -1,7 +1,7 @@ # touch > Canvia els temps d'accés i modificació d'un fitxer (atime, ntime). -> Més informació: . +> Més informació: . - Crea un o múltiples fitxers o canvia els temps al temps actual: diff --git a/pages.ca/common/transmission.md b/pages.ca/common/transmission.md new file mode 100644 index 0000000000..f0623c33bf --- /dev/null +++ b/pages.ca/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> Aquest comandament és un àlies de `transmission-daemon`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr transmission-daemon` diff --git a/pages.ca/common/unlzma.md b/pages.ca/common/unlzma.md new file mode 100644 index 0000000000..ed00d4ff61 --- /dev/null +++ b/pages.ca/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> Aquest comandament és un àlies de `xz`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr xz` diff --git a/pages.ca/common/unxz.md b/pages.ca/common/unxz.md new file mode 100644 index 0000000000..d0e535096b --- /dev/null +++ b/pages.ca/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> Aquest comandament és un àlies de `xz`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr xz` diff --git a/pages.ca/common/vi.md b/pages.ca/common/vi.md new file mode 100644 index 0000000000..b22dc7d067 --- /dev/null +++ b/pages.ca/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> Aquest comandament és un àlies de `vim`. + +- Veure documentació pel comandament original: + +`tldr vim` diff --git a/pages.ca/common/xzcat.md b/pages.ca/common/xzcat.md new file mode 100644 index 0000000000..0adc93e16f --- /dev/null +++ b/pages.ca/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> Aquest comandament és un àlies de `xz`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr xz` diff --git a/pages.ca/linux/alternatives.md b/pages.ca/linux/alternatives.md new file mode 100644 index 0000000000..1751b2f242 --- /dev/null +++ b/pages.ca/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> Aquest comandament és un àlies de `update-alternatives`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr update-alternatives` diff --git a/pages.ca/linux/batcat.md b/pages.ca/linux/batcat.md new file mode 100644 index 0000000000..1c0594ee14 --- /dev/null +++ b/pages.ca/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> Aquest comandament és un àlies de `bat`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr bat` diff --git a/pages.ca/linux/bspwm.md b/pages.ca/linux/bspwm.md new file mode 100644 index 0000000000..20dcb8e03b --- /dev/null +++ b/pages.ca/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> Aquest comandament és un àlies de `bspc`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr bspc` diff --git a/pages.ca/linux/cc.md b/pages.ca/linux/cc.md new file mode 100644 index 0000000000..a674da7daa --- /dev/null +++ b/pages.ca/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> Aquest comandament és un àlies de `gcc`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr gcc` diff --git a/pages.ca/linux/cgroups.md b/pages.ca/linux/cgroups.md new file mode 100644 index 0000000000..86c4e6d74d --- /dev/null +++ b/pages.ca/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> Aquest comandament és un àlies de `cgclassify`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr cgclassify` diff --git a/pages.ca/linux/cpulimit.md b/pages.ca/linux/cpulimit.md index 57136a0cab..27d9530588 100644 --- a/pages.ca/linux/cpulimit.md +++ b/pages.ca/linux/cpulimit.md @@ -13,7 +13,7 @@ - Executa un programa determinat i limita el seu ús a només el 50% de la CPU: -`cpulimit --limit {{50}} -- {{programa arg1 arg2 ...}}` +`cpulimit --limit {{50}} -- {{programa argument1 argument2 ...}}` - Executa un programa, limita l'ús de la CPU a 50% i executa cpulimit en segon pla: diff --git a/pages.ca/linux/halt.md b/pages.ca/linux/halt.md index 94e253fac2..d38ebcdb11 100644 --- a/pages.ca/linux/halt.md +++ b/pages.ca/linux/halt.md @@ -1,7 +1,7 @@ # halt > Deté, apaga o reinicia la màquina. -> Més informació: . +> Més informació: . - Deté la màquina: diff --git a/pages.ca/linux/ip-route-list.md b/pages.ca/linux/ip-route-list.md new file mode 100644 index 0000000000..3263069b3d --- /dev/null +++ b/pages.ca/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> Aquest comandament és un àlies de `ip-route-show`. + +- Veure documentació pel comandament original: + +`tldr ip-route-show` diff --git a/pages.ca/linux/pkgadd.md b/pages.ca/linux/pkgadd.md index ada77ef961..5d0b464648 100644 --- a/pages.ca/linux/pkgadd.md +++ b/pages.ca/linux/pkgadd.md @@ -1,7 +1,7 @@ # pkgadd > Afegeix un paquet a un sistema CRUX. -> Més informació: . +> Més informació: . - Instal·la un paquet de software local: diff --git a/pages.ca/linux/pkgrm.md b/pages.ca/linux/pkgrm.md index 2a0b52713b..023cea375f 100644 --- a/pages.ca/linux/pkgrm.md +++ b/pages.ca/linux/pkgrm.md @@ -1,7 +1,7 @@ # pkgrm > Elimina un paquet d'un sistema CRUX. -> Més informació: . +> Més informació: . - Elimina un paquet instal·lat: diff --git a/pages.ca/linux/snake4scores.md b/pages.ca/linux/snake4scores.md index f679ea636c..28646b6383 100644 --- a/pages.ca/linux/snake4scores.md +++ b/pages.ca/linux/snake4scores.md @@ -1,7 +1,7 @@ # snake4scores > Mostra les màximes puntuacions del joc snake4. -> Més informació: . +> Més informació: . - Mostra les màximes puntuacions: diff --git a/pages.ca/linux/ufw.md b/pages.ca/linux/ufw.md index 23f24fa601..84b2732e6b 100644 --- a/pages.ca/linux/ufw.md +++ b/pages.ca/linux/ufw.md @@ -1,7 +1,7 @@ # ufw > Tallafocs sense complicacions (_Uncomplicated Firewall_). -> Interfície d'usuari de iptables per facilitar la configuració d'un firewall. +> Interfície d'usuari de `iptables` per facilitar la configuració d'un firewall. > Més informació: . - Activa ufw: diff --git a/pages.ca/linux/xdg-open.md b/pages.ca/linux/xdg-open.md index 19f777f863..f9c1e9b0d6 100644 --- a/pages.ca/linux/xdg-open.md +++ b/pages.ca/linux/xdg-open.md @@ -3,7 +3,7 @@ > Obre un arxiu o URL en l'aplicació predeterminada del usuari. > Més informació: . -- Obre el directori actual en l'explorador d'arxius predeterminat:: +- Obre el directori actual en l'explorador d'arxius predeterminat: `xdg-open .` diff --git a/pages.ca/osx/aa.md b/pages.ca/osx/aa.md new file mode 100644 index 0000000000..a1867ff02e --- /dev/null +++ b/pages.ca/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> Aquest comandament és un àlies de `yaa`. + +- Veure documentació pel comandament original: + +`tldr yaa` diff --git a/pages.ca/osx/g[.md b/pages.ca/osx/g[.md new file mode 100644 index 0000000000..06eb8c7747 --- /dev/null +++ b/pages.ca/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> Aquest comandament és un àlies de `-p linux [`. + +- Veure documentació pel comandament original: + +`tldr -p linux [` diff --git a/pages.ca/osx/gawk.md b/pages.ca/osx/gawk.md new file mode 100644 index 0000000000..2a456df4af --- /dev/null +++ b/pages.ca/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> Aquest comandament és un àlies de `-p linux awk`. + +- Veure documentació pel comandament original: + +`tldr -p linux awk` diff --git a/pages.ca/osx/gb2sum.md b/pages.ca/osx/gb2sum.md new file mode 100644 index 0000000000..d1de6eab17 --- /dev/null +++ b/pages.ca/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> Aquest comandament és un àlies de `-p linux b2sum`. + +- Veure documentació pel comandament original: + +`tldr -p linux b2sum` diff --git a/pages.ca/osx/gbase32.md b/pages.ca/osx/gbase32.md new file mode 100644 index 0000000000..467390c60d --- /dev/null +++ b/pages.ca/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> Aquest comandament és un àlies de `-p linux base32`. + +- Veure documentació pel comandament original: + +`tldr -p linux base32` diff --git a/pages.ca/osx/gbase64.md b/pages.ca/osx/gbase64.md new file mode 100644 index 0000000000..460e4b4fb6 --- /dev/null +++ b/pages.ca/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> Aquest comandament és un àlies de `-p linux base64`. + +- Veure documentació pel comandament original: + +`tldr -p linux base64` diff --git a/pages.ca/osx/gbasename.md b/pages.ca/osx/gbasename.md new file mode 100644 index 0000000000..05e4b2f424 --- /dev/null +++ b/pages.ca/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> Aquest comandament és un àlies de `-p linux basename`. + +- Veure documentació pel comandament original: + +`tldr -p linux basename` diff --git a/pages.ca/osx/gbasenc.md b/pages.ca/osx/gbasenc.md new file mode 100644 index 0000000000..7442fad88c --- /dev/null +++ b/pages.ca/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> Aquest comandament és un àlies de `-p linux basenc`. + +- Veure documentació pel comandament original: + +`tldr -p linux basenc` diff --git a/pages.ca/osx/gcat.md b/pages.ca/osx/gcat.md new file mode 100644 index 0000000000..f46f82b973 --- /dev/null +++ b/pages.ca/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> Aquest comandament és un àlies de `-p linux cat`. + +- Veure documentació pel comandament original: + +`tldr -p linux cat` diff --git a/pages.ca/osx/gchcon.md b/pages.ca/osx/gchcon.md new file mode 100644 index 0000000000..89729e345c --- /dev/null +++ b/pages.ca/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> Aquest comandament és un àlies de `-p linux chcon`. + +- Veure documentació pel comandament original: + +`tldr -p linux chcon` diff --git a/pages.ca/osx/gchgrp.md b/pages.ca/osx/gchgrp.md new file mode 100644 index 0000000000..34fceca504 --- /dev/null +++ b/pages.ca/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> Aquest comandament és un àlies de `-p linux chgrp`. + +- Veure documentació pel comandament original: + +`tldr -p linux chgrp` diff --git a/pages.ca/osx/gchmod.md b/pages.ca/osx/gchmod.md new file mode 100644 index 0000000000..16d63b4245 --- /dev/null +++ b/pages.ca/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> Aquest comandament és un àlies de `-p linux chmod`. + +- Veure documentació pel comandament original: + +`tldr -p linux chmod` diff --git a/pages.ca/osx/gchown.md b/pages.ca/osx/gchown.md new file mode 100644 index 0000000000..0bc6d884c7 --- /dev/null +++ b/pages.ca/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> Aquest comandament és un àlies de `-p linux chown`. + +- Veure documentació pel comandament original: + +`tldr -p linux chown` diff --git a/pages.ca/osx/gchroot.md b/pages.ca/osx/gchroot.md new file mode 100644 index 0000000000..72a4b06ff1 --- /dev/null +++ b/pages.ca/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> Aquest comandament és un àlies de `-p linux chroot`. + +- Veure documentació pel comandament original: + +`tldr -p linux chroot` diff --git a/pages.ca/osx/gcksum.md b/pages.ca/osx/gcksum.md new file mode 100644 index 0000000000..b816934f48 --- /dev/null +++ b/pages.ca/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> Aquest comandament és un àlies de `-p linux cksum`. + +- Veure documentació pel comandament original: + +`tldr -p linux cksum` diff --git a/pages.ca/osx/gcomm.md b/pages.ca/osx/gcomm.md new file mode 100644 index 0000000000..4eb2d1f3ab --- /dev/null +++ b/pages.ca/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> Aquest comandament és un àlies de `-p linux comm`. + +- Veure documentació pel comandament original: + +`tldr -p linux comm` diff --git a/pages.ca/osx/gcp.md b/pages.ca/osx/gcp.md new file mode 100644 index 0000000000..0ae3adcc57 --- /dev/null +++ b/pages.ca/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> Aquest comandament és un àlies de `-p linux cp`. + +- Veure documentació pel comandament original: + +`tldr -p linux cp` diff --git a/pages.ca/osx/gcsplit.md b/pages.ca/osx/gcsplit.md new file mode 100644 index 0000000000..95436991ec --- /dev/null +++ b/pages.ca/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> Aquest comandament és un àlies de `-p linux csplit`. + +- Veure documentació pel comandament original: + +`tldr -p linux csplit` diff --git a/pages.ca/osx/gcut.md b/pages.ca/osx/gcut.md new file mode 100644 index 0000000000..3fcb6ceea2 --- /dev/null +++ b/pages.ca/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> Aquest comandament és un àlies de `-p linux cut`. + +- Veure documentació pel comandament original: + +`tldr -p linux cut` diff --git a/pages.ca/osx/gdate.md b/pages.ca/osx/gdate.md new file mode 100644 index 0000000000..6d43e879dd --- /dev/null +++ b/pages.ca/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> Aquest comandament és un àlies de `-p linux date`. + +- Veure documentació pel comandament original: + +`tldr -p linux date` diff --git a/pages.ca/osx/gdd.md b/pages.ca/osx/gdd.md new file mode 100644 index 0000000000..f87dea046d --- /dev/null +++ b/pages.ca/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> Aquest comandament és un àlies de `-p linux dd`. + +- Veure documentació pel comandament original: + +`tldr -p linux dd` diff --git a/pages.ca/osx/gdf.md b/pages.ca/osx/gdf.md new file mode 100644 index 0000000000..106466f8d7 --- /dev/null +++ b/pages.ca/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> Aquest comandament és un àlies de `-p linux df`. + +- Veure documentació pel comandament original: + +`tldr -p linux df` diff --git a/pages.ca/osx/gdir.md b/pages.ca/osx/gdir.md new file mode 100644 index 0000000000..6b6d1e9944 --- /dev/null +++ b/pages.ca/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> Aquest comandament és un àlies de `-p linux dir`. + +- Veure documentació pel comandament original: + +`tldr -p linux dir` diff --git a/pages.ca/osx/gdircolors.md b/pages.ca/osx/gdircolors.md new file mode 100644 index 0000000000..c95e8679aa --- /dev/null +++ b/pages.ca/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> Aquest comandament és un àlies de `-p linux dircolors`. + +- Veure documentació pel comandament original: + +`tldr -p linux dircolors` diff --git a/pages.ca/osx/gdirname.md b/pages.ca/osx/gdirname.md new file mode 100644 index 0000000000..3e452e3d81 --- /dev/null +++ b/pages.ca/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> Aquest comandament és un àlies de `-p linux dirname`. + +- Veure documentació pel comandament original: + +`tldr -p linux dirname` diff --git a/pages.ca/osx/gdnsdomainname.md b/pages.ca/osx/gdnsdomainname.md new file mode 100644 index 0000000000..ee033022ab --- /dev/null +++ b/pages.ca/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> Aquest comandament és un àlies de `-p linux dnsdomainname`. + +- Veure documentació pel comandament original: + +`tldr -p linux dnsdomainname` diff --git a/pages.ca/osx/gecho.md b/pages.ca/osx/gecho.md new file mode 100644 index 0000000000..bada65d1d2 --- /dev/null +++ b/pages.ca/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> Aquest comandament és un àlies de `-p linux echo`. + +- Veure documentació pel comandament original: + +`tldr -p linux echo` diff --git a/pages.ca/osx/ged.md b/pages.ca/osx/ged.md new file mode 100644 index 0000000000..a28c6e9ff4 --- /dev/null +++ b/pages.ca/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> Aquest comandament és un àlies de `-p linux ed`. + +- Veure documentació pel comandament original: + +`tldr -p linux ed` diff --git a/pages.ca/osx/gegrep.md b/pages.ca/osx/gegrep.md new file mode 100644 index 0000000000..08f750f830 --- /dev/null +++ b/pages.ca/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> Aquest comandament és un àlies de `-p linux egrep`. + +- Veure documentació pel comandament original: + +`tldr -p linux egrep` diff --git a/pages.ca/osx/genv.md b/pages.ca/osx/genv.md new file mode 100644 index 0000000000..6aed81e084 --- /dev/null +++ b/pages.ca/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> Aquest comandament és un àlies de `-p linux env`. + +- Veure documentació pel comandament original: + +`tldr -p linux env` diff --git a/pages.ca/osx/gexpand.md b/pages.ca/osx/gexpand.md new file mode 100644 index 0000000000..c42434428a --- /dev/null +++ b/pages.ca/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> Aquest comandament és un àlies de `-p linux expand`. + +- Veure documentació pel comandament original: + +`tldr -p linux expand` diff --git a/pages.ca/osx/gexpr.md b/pages.ca/osx/gexpr.md new file mode 100644 index 0000000000..74fe526dde --- /dev/null +++ b/pages.ca/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> Aquest comandament és un àlies de `-p linux expr`. + +- Veure documentació pel comandament original: + +`tldr -p linux expr` diff --git a/pages.ca/osx/gfactor.md b/pages.ca/osx/gfactor.md new file mode 100644 index 0000000000..15e5da7e5b --- /dev/null +++ b/pages.ca/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> Aquest comandament és un àlies de `-p linux factor`. + +- Veure documentació pel comandament original: + +`tldr -p linux factor` diff --git a/pages.ca/osx/gfalse.md b/pages.ca/osx/gfalse.md new file mode 100644 index 0000000000..0d237b2a8a --- /dev/null +++ b/pages.ca/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> Aquest comandament és un àlies de `-p linux false`. + +- Veure documentació pel comandament original: + +`tldr -p linux false` diff --git a/pages.ca/osx/gfgrep.md b/pages.ca/osx/gfgrep.md new file mode 100644 index 0000000000..c833657df4 --- /dev/null +++ b/pages.ca/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> Aquest comandament és un àlies de `-p linux fgrep`. + +- Veure documentació pel comandament original: + +`tldr -p linux fgrep` diff --git a/pages.ca/osx/gfind.md b/pages.ca/osx/gfind.md new file mode 100644 index 0000000000..53f920ce6a --- /dev/null +++ b/pages.ca/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> Aquest comandament és un àlies de `-p linux find`. + +- Veure documentació pel comandament original: + +`tldr -p linux find` diff --git a/pages.ca/osx/gfmt.md b/pages.ca/osx/gfmt.md new file mode 100644 index 0000000000..254897eeac --- /dev/null +++ b/pages.ca/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> Aquest comandament és un àlies de `-p linux fmt`. + +- Veure documentació pel comandament original: + +`tldr -p linux fmt` diff --git a/pages.ca/osx/gfold.md b/pages.ca/osx/gfold.md new file mode 100644 index 0000000000..05f57bdec0 --- /dev/null +++ b/pages.ca/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> Aquest comandament és un àlies de `-p linux fold`. + +- Veure documentació pel comandament original: + +`tldr -p linux fold` diff --git a/pages.ca/osx/gftp.md b/pages.ca/osx/gftp.md new file mode 100644 index 0000000000..42dc81a69e --- /dev/null +++ b/pages.ca/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> Aquest comandament és un àlies de `-p linux ftp`. + +- Veure documentació pel comandament original: + +`tldr -p linux ftp` diff --git a/pages.ca/osx/ggrep.md b/pages.ca/osx/ggrep.md new file mode 100644 index 0000000000..2d6af75c76 --- /dev/null +++ b/pages.ca/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> Aquest comandament és un àlies de `-p linux grep`. + +- Veure documentació pel comandament original: + +`tldr -p linux grep` diff --git a/pages.ca/osx/ggroups.md b/pages.ca/osx/ggroups.md new file mode 100644 index 0000000000..88b2612b0a --- /dev/null +++ b/pages.ca/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> Aquest comandament és un àlies de `-p linux groups`. + +- Veure documentació pel comandament original: + +`tldr -p linux groups` diff --git a/pages.ca/osx/ghead.md b/pages.ca/osx/ghead.md new file mode 100644 index 0000000000..e819b64b67 --- /dev/null +++ b/pages.ca/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> Aquest comandament és un àlies de `-p linux head`. + +- Veure documentació pel comandament original: + +`tldr -p linux head` diff --git a/pages.ca/osx/ghostid.md b/pages.ca/osx/ghostid.md new file mode 100644 index 0000000000..95255b5e68 --- /dev/null +++ b/pages.ca/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> Aquest comandament és un àlies de `-p linux hostid`. + +- Veure documentació pel comandament original: + +`tldr -p linux hostid` diff --git a/pages.ca/osx/ghostname.md b/pages.ca/osx/ghostname.md new file mode 100644 index 0000000000..0b1be49320 --- /dev/null +++ b/pages.ca/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> Aquest comandament és un àlies de `-p linux hostname`. + +- Veure documentació pel comandament original: + +`tldr -p linux hostname` diff --git a/pages.ca/osx/gid.md b/pages.ca/osx/gid.md new file mode 100644 index 0000000000..74393dff5a --- /dev/null +++ b/pages.ca/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> Aquest comandament és un àlies de `-p linux id`. + +- Veure documentació pel comandament original: + +`tldr -p linux id` diff --git a/pages.ca/osx/gifconfig.md b/pages.ca/osx/gifconfig.md new file mode 100644 index 0000000000..5e2880bb1c --- /dev/null +++ b/pages.ca/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> Aquest comandament és un àlies de `-p linux ifconfig`. + +- Veure documentació pel comandament original: + +`tldr -p linux ifconfig` diff --git a/pages.ca/osx/gindent.md b/pages.ca/osx/gindent.md new file mode 100644 index 0000000000..8d0fd02f3d --- /dev/null +++ b/pages.ca/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> Aquest comandament és un àlies de `-p linux indent`. + +- Veure documentació pel comandament original: + +`tldr -p linux indent` diff --git a/pages.ca/osx/ginstall.md b/pages.ca/osx/ginstall.md new file mode 100644 index 0000000000..784bb9f9aa --- /dev/null +++ b/pages.ca/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> Aquest comandament és un àlies de `-p linux install`. + +- Veure documentació pel comandament original: + +`tldr -p linux install` diff --git a/pages.ca/osx/gjoin.md b/pages.ca/osx/gjoin.md new file mode 100644 index 0000000000..f40b4e0fe0 --- /dev/null +++ b/pages.ca/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> Aquest comandament és un àlies de `-p linux join`. + +- Veure documentació pel comandament original: + +`tldr -p linux join` diff --git a/pages.ca/osx/gkill.md b/pages.ca/osx/gkill.md new file mode 100644 index 0000000000..02a6f9982c --- /dev/null +++ b/pages.ca/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> Aquest comandament és un àlies de `-p linux kill`. + +- Veure documentació pel comandament original: + +`tldr -p linux kill` diff --git a/pages.ca/osx/glibtool.md b/pages.ca/osx/glibtool.md new file mode 100644 index 0000000000..0c32414ab2 --- /dev/null +++ b/pages.ca/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> Aquest comandament és un àlies de `-p linux libtool`. + +- Veure documentació pel comandament original: + +`tldr -p linux libtool` diff --git a/pages.ca/osx/glibtoolize.md b/pages.ca/osx/glibtoolize.md new file mode 100644 index 0000000000..d278c58921 --- /dev/null +++ b/pages.ca/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> Aquest comandament és un àlies de `-p linux libtoolize`. + +- Veure documentació pel comandament original: + +`tldr -p linux libtoolize` diff --git a/pages.ca/osx/glink.md b/pages.ca/osx/glink.md new file mode 100644 index 0000000000..4b0d961750 --- /dev/null +++ b/pages.ca/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> Aquest comandament és un àlies de `-p linux link`. + +- Veure documentació pel comandament original: + +`tldr -p linux link` diff --git a/pages.ca/osx/gln.md b/pages.ca/osx/gln.md new file mode 100644 index 0000000000..c8756a985f --- /dev/null +++ b/pages.ca/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> Aquest comandament és un àlies de `-p linux ln`. + +- Veure documentació pel comandament original: + +`tldr -p linux ln` diff --git a/pages.ca/osx/glocate.md b/pages.ca/osx/glocate.md new file mode 100644 index 0000000000..b70a548a49 --- /dev/null +++ b/pages.ca/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> Aquest comandament és un àlies de `-p linux locate`. + +- Veure documentació pel comandament original: + +`tldr -p linux locate` diff --git a/pages.ca/osx/glogger.md b/pages.ca/osx/glogger.md new file mode 100644 index 0000000000..fd814e7647 --- /dev/null +++ b/pages.ca/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> Aquest comandament és un àlies de `-p linux logger`. + +- Veure documentació pel comandament original: + +`tldr -p linux logger` diff --git a/pages.ca/osx/glogname.md b/pages.ca/osx/glogname.md new file mode 100644 index 0000000000..fb2ae97717 --- /dev/null +++ b/pages.ca/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> Aquest comandament és un àlies de `-p linux logname`. + +- Veure documentació pel comandament original: + +`tldr -p linux logname` diff --git a/pages.ca/osx/gls.md b/pages.ca/osx/gls.md new file mode 100644 index 0000000000..c342013ab8 --- /dev/null +++ b/pages.ca/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> Aquest comandament és un àlies de `-p linux ls`. + +- Veure documentació pel comandament original: + +`tldr -p linux ls` diff --git a/pages.ca/osx/gmake.md b/pages.ca/osx/gmake.md new file mode 100644 index 0000000000..9f6fad5ffc --- /dev/null +++ b/pages.ca/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> Aquest comandament és un àlies de `-p linux make`. + +- Veure documentació pel comandament original: + +`tldr -p linux make` diff --git a/pages.ca/osx/gmd5sum.md b/pages.ca/osx/gmd5sum.md new file mode 100644 index 0000000000..e306b00f93 --- /dev/null +++ b/pages.ca/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> Aquest comandament és un àlies de `-p linux md5sum`. + +- Veure documentació pel comandament original: + +`tldr -p linux md5sum` diff --git a/pages.ca/osx/gmkdir.md b/pages.ca/osx/gmkdir.md new file mode 100644 index 0000000000..eb63128b9b --- /dev/null +++ b/pages.ca/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> Aquest comandament és un àlies de `-p linux mkdir`. + +- Veure documentació pel comandament original: + +`tldr -p linux mkdir` diff --git a/pages.ca/osx/gmkfifo.md b/pages.ca/osx/gmkfifo.md new file mode 100644 index 0000000000..7ee15c90a4 --- /dev/null +++ b/pages.ca/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> Aquest comandament és un àlies de `-p linux mkfifo`. + +- Veure documentació pel comandament original: + +`tldr -p linux mkfifo` diff --git a/pages.ca/osx/gmknod.md b/pages.ca/osx/gmknod.md new file mode 100644 index 0000000000..4af478b1f4 --- /dev/null +++ b/pages.ca/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> Aquest comandament és un àlies de `-p linux mknod`. + +- Veure documentació pel comandament original: + +`tldr -p linux mknod` diff --git a/pages.ca/osx/gmktemp.md b/pages.ca/osx/gmktemp.md new file mode 100644 index 0000000000..84edfa7638 --- /dev/null +++ b/pages.ca/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> Aquest comandament és un àlies de `-p linux mktemp`. + +- Veure documentació pel comandament original: + +`tldr -p linux mktemp` diff --git a/pages.ca/osx/gmv.md b/pages.ca/osx/gmv.md new file mode 100644 index 0000000000..99df95ee01 --- /dev/null +++ b/pages.ca/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> Aquest comandament és un àlies de `-p linux mv`. + +- Veure documentació pel comandament original: + +`tldr -p linux mv` diff --git a/pages.ca/osx/gnice.md b/pages.ca/osx/gnice.md new file mode 100644 index 0000000000..122ec438fe --- /dev/null +++ b/pages.ca/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> Aquest comandament és un àlies de `-p linux nice`. + +- Veure documentació pel comandament original: + +`tldr -p linux nice` diff --git a/pages.ca/osx/gnl.md b/pages.ca/osx/gnl.md new file mode 100644 index 0000000000..38d36014d6 --- /dev/null +++ b/pages.ca/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> Aquest comandament és un àlies de `-p linux nl`. + +- Veure documentació pel comandament original: + +`tldr -p linux nl` diff --git a/pages.ca/osx/gnohup.md b/pages.ca/osx/gnohup.md new file mode 100644 index 0000000000..56db162ea9 --- /dev/null +++ b/pages.ca/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> Aquest comandament és un àlies de `-p linux nohup`. + +- Veure documentació pel comandament original: + +`tldr -p linux nohup` diff --git a/pages.ca/osx/gnproc.md b/pages.ca/osx/gnproc.md new file mode 100644 index 0000000000..b5cf3509e8 --- /dev/null +++ b/pages.ca/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> Aquest comandament és un àlies de `-p linux nproc`. + +- Veure documentació pel comandament original: + +`tldr -p linux nproc` diff --git a/pages.ca/osx/gnumfmt.md b/pages.ca/osx/gnumfmt.md new file mode 100644 index 0000000000..ab25d45dfe --- /dev/null +++ b/pages.ca/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> Aquest comandament és un àlies de `-p linux numfmt`. + +- Veure documentació pel comandament original: + +`tldr -p linux numfmt` diff --git a/pages.ca/osx/god.md b/pages.ca/osx/god.md new file mode 100644 index 0000000000..aad3aa053e --- /dev/null +++ b/pages.ca/osx/god.md @@ -0,0 +1,7 @@ +# god + +> Aquest comandament és un àlies de `-p linux od`. + +- Veure documentació pel comandament original: + +`tldr -p linux od` diff --git a/pages.ca/osx/gpaste.md b/pages.ca/osx/gpaste.md new file mode 100644 index 0000000000..416cc93fea --- /dev/null +++ b/pages.ca/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> Aquest comandament és un àlies de `-p linux paste`. + +- Veure documentació pel comandament original: + +`tldr -p linux paste` diff --git a/pages.ca/osx/gpathchk.md b/pages.ca/osx/gpathchk.md new file mode 100644 index 0000000000..787521f65d --- /dev/null +++ b/pages.ca/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> Aquest comandament és un àlies de `-p linux pathchk`. + +- Veure documentació pel comandament original: + +`tldr -p linux pathchk` diff --git a/pages.ca/osx/gping.md b/pages.ca/osx/gping.md new file mode 100644 index 0000000000..c2db4fbe59 --- /dev/null +++ b/pages.ca/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> Aquest comandament és un àlies de `-p linux ping`. + +- Veure documentació pel comandament original: + +`tldr -p linux ping` diff --git a/pages.ca/osx/gping6.md b/pages.ca/osx/gping6.md new file mode 100644 index 0000000000..5ffdf2b10f --- /dev/null +++ b/pages.ca/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> Aquest comandament és un àlies de `-p linux ping6`. + +- Veure documentació pel comandament original: + +`tldr -p linux ping6` diff --git a/pages.ca/osx/gpinky.md b/pages.ca/osx/gpinky.md new file mode 100644 index 0000000000..643d390f43 --- /dev/null +++ b/pages.ca/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> Aquest comandament és un àlies de `-p linux pinky`. + +- Veure documentació pel comandament original: + +`tldr -p linux pinky` diff --git a/pages.ca/osx/gpr.md b/pages.ca/osx/gpr.md new file mode 100644 index 0000000000..ae6b32ff12 --- /dev/null +++ b/pages.ca/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> Aquest comandament és un àlies de `-p linux pr`. + +- Veure documentació pel comandament original: + +`tldr -p linux pr` diff --git a/pages.ca/osx/gprintenv.md b/pages.ca/osx/gprintenv.md new file mode 100644 index 0000000000..a1a378cf49 --- /dev/null +++ b/pages.ca/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> Aquest comandament és un àlies de `-p linux printenv`. + +- Veure documentació pel comandament original: + +`tldr -p linux printenv` diff --git a/pages.ca/osx/gprintf.md b/pages.ca/osx/gprintf.md new file mode 100644 index 0000000000..0755b95a25 --- /dev/null +++ b/pages.ca/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> Aquest comandament és un àlies de `-p linux printf`. + +- Veure documentació pel comandament original: + +`tldr -p linux printf` diff --git a/pages.ca/osx/gptx.md b/pages.ca/osx/gptx.md new file mode 100644 index 0000000000..ac5d61bce8 --- /dev/null +++ b/pages.ca/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> Aquest comandament és un àlies de `-p linux ptx`. + +- Veure documentació pel comandament original: + +`tldr -p linux ptx` diff --git a/pages.ca/osx/gpwd.md b/pages.ca/osx/gpwd.md new file mode 100644 index 0000000000..d93dfa903c --- /dev/null +++ b/pages.ca/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> Aquest comandament és un àlies de `-p linux pwd`. + +- Veure documentació pel comandament original: + +`tldr -p linux pwd` diff --git a/pages.ca/osx/grcp.md b/pages.ca/osx/grcp.md new file mode 100644 index 0000000000..ae7032c1a1 --- /dev/null +++ b/pages.ca/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> Aquest comandament és un àlies de `-p linux rcp`. + +- Veure documentació pel comandament original: + +`tldr -p linux rcp` diff --git a/pages.ca/osx/greadlink.md b/pages.ca/osx/greadlink.md new file mode 100644 index 0000000000..d535406f8f --- /dev/null +++ b/pages.ca/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> Aquest comandament és un àlies de `-p linux readlink`. + +- Veure documentació pel comandament original: + +`tldr -p linux readlink` diff --git a/pages.ca/osx/grealpath.md b/pages.ca/osx/grealpath.md new file mode 100644 index 0000000000..cefd3c1ad5 --- /dev/null +++ b/pages.ca/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> Aquest comandament és un àlies de `-p linux realpath`. + +- Veure documentació pel comandament original: + +`tldr -p linux realpath` diff --git a/pages.ca/osx/grexec.md b/pages.ca/osx/grexec.md new file mode 100644 index 0000000000..181da3c4fc --- /dev/null +++ b/pages.ca/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> Aquest comandament és un àlies de `-p linux rexec`. + +- Veure documentació pel comandament original: + +`tldr -p linux rexec` diff --git a/pages.ca/osx/grlogin.md b/pages.ca/osx/grlogin.md new file mode 100644 index 0000000000..44fbd2d5a9 --- /dev/null +++ b/pages.ca/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> Aquest comandament és un àlies de `-p linux rlogin`. + +- Veure documentació pel comandament original: + +`tldr -p linux rlogin` diff --git a/pages.ca/osx/grm.md b/pages.ca/osx/grm.md new file mode 100644 index 0000000000..502501db1c --- /dev/null +++ b/pages.ca/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> Aquest comandament és un àlies de `-p linux rm`. + +- Veure documentació pel comandament original: + +`tldr -p linux rm` diff --git a/pages.ca/osx/grmdir.md b/pages.ca/osx/grmdir.md new file mode 100644 index 0000000000..ca7747ef3a --- /dev/null +++ b/pages.ca/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> Aquest comandament és un àlies de `-p linux rmdir`. + +- Veure documentació pel comandament original: + +`tldr -p linux rmdir` diff --git a/pages.ca/osx/grsh.md b/pages.ca/osx/grsh.md new file mode 100644 index 0000000000..a1ba0f3c7c --- /dev/null +++ b/pages.ca/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> Aquest comandament és un àlies de `-p linux rsh`. + +- Veure documentació pel comandament original: + +`tldr -p linux rsh` diff --git a/pages.ca/osx/gruncon.md b/pages.ca/osx/gruncon.md new file mode 100644 index 0000000000..836ea36a4c --- /dev/null +++ b/pages.ca/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> Aquest comandament és un àlies de `-p linux runcon`. + +- Veure documentació pel comandament original: + +`tldr -p linux runcon` diff --git a/pages.ca/osx/gsed.md b/pages.ca/osx/gsed.md new file mode 100644 index 0000000000..6fe3c8319c --- /dev/null +++ b/pages.ca/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> Aquest comandament és un àlies de `-p linux sed`. + +- Veure documentació pel comandament original: + +`tldr -p linux sed` diff --git a/pages.ca/osx/gseq.md b/pages.ca/osx/gseq.md new file mode 100644 index 0000000000..fbeed9a4b5 --- /dev/null +++ b/pages.ca/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> Aquest comandament és un àlies de `-p linux seq`. + +- Veure documentació pel comandament original: + +`tldr -p linux seq` diff --git a/pages.ca/osx/gsha1sum.md b/pages.ca/osx/gsha1sum.md new file mode 100644 index 0000000000..747dc0b922 --- /dev/null +++ b/pages.ca/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> Aquest comandament és un àlies de `-p linux sha1sum`. + +- Veure documentació pel comandament original: + +`tldr -p linux sha1sum` diff --git a/pages.ca/osx/gsha224sum.md b/pages.ca/osx/gsha224sum.md new file mode 100644 index 0000000000..5641e7381f --- /dev/null +++ b/pages.ca/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> Aquest comandament és un àlies de `-p linux sha224sum`. + +- Veure documentació pel comandament original: + +`tldr -p linux sha224sum` diff --git a/pages.ca/osx/gsha256sum.md b/pages.ca/osx/gsha256sum.md new file mode 100644 index 0000000000..781b8f1228 --- /dev/null +++ b/pages.ca/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> Aquest comandament és un àlies de `-p linux sha256sum`. + +- Veure documentació pel comandament original: + +`tldr -p linux sha256sum` diff --git a/pages.ca/osx/gsha384sum.md b/pages.ca/osx/gsha384sum.md new file mode 100644 index 0000000000..1df8b714a3 --- /dev/null +++ b/pages.ca/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> Aquest comandament és un àlies de `-p linux sha384sum`. + +- Veure documentació pel comandament original: + +`tldr -p linux sha384sum` diff --git a/pages.ca/osx/gsha512sum.md b/pages.ca/osx/gsha512sum.md new file mode 100644 index 0000000000..16fe64374d --- /dev/null +++ b/pages.ca/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> Aquest comandament és un àlies de `-p linux sha512sum`. + +- Veure documentació pel comandament original: + +`tldr -p linux sha512sum` diff --git a/pages.ca/osx/gshred.md b/pages.ca/osx/gshred.md new file mode 100644 index 0000000000..ba2553887e --- /dev/null +++ b/pages.ca/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> Aquest comandament és un àlies de `-p linux shred`. + +- Veure documentació pel comandament original: + +`tldr -p linux shred` diff --git a/pages.ca/osx/gshuf.md b/pages.ca/osx/gshuf.md new file mode 100644 index 0000000000..885757caa3 --- /dev/null +++ b/pages.ca/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> Aquest comandament és un àlies de `-p linux shuf`. + +- Veure documentació pel comandament original: + +`tldr -p linux shuf` diff --git a/pages.ca/osx/gsleep.md b/pages.ca/osx/gsleep.md new file mode 100644 index 0000000000..38984cfa39 --- /dev/null +++ b/pages.ca/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> Aquest comandament és un àlies de `-p linux sleep`. + +- Veure documentació pel comandament original: + +`tldr -p linux sleep` diff --git a/pages.ca/osx/gsort.md b/pages.ca/osx/gsort.md new file mode 100644 index 0000000000..d23692ea4b --- /dev/null +++ b/pages.ca/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> Aquest comandament és un àlies de `-p linux sort`. + +- Veure documentació pel comandament original: + +`tldr -p linux sort` diff --git a/pages.ca/osx/gsplit.md b/pages.ca/osx/gsplit.md new file mode 100644 index 0000000000..e1c689a634 --- /dev/null +++ b/pages.ca/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> Aquest comandament és un àlies de `-p linux split`. + +- Veure documentació pel comandament original: + +`tldr -p linux split` diff --git a/pages.ca/osx/gstat.md b/pages.ca/osx/gstat.md new file mode 100644 index 0000000000..a860e638d0 --- /dev/null +++ b/pages.ca/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> Aquest comandament és un àlies de `-p linux stat`. + +- Veure documentació pel comandament original: + +`tldr -p linux stat` diff --git a/pages.ca/osx/gstdbuf.md b/pages.ca/osx/gstdbuf.md new file mode 100644 index 0000000000..2c25513a7f --- /dev/null +++ b/pages.ca/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> Aquest comandament és un àlies de `-p linux stdbuf`. + +- Veure documentació pel comandament original: + +`tldr -p linux stdbuf` diff --git a/pages.ca/osx/gstty.md b/pages.ca/osx/gstty.md new file mode 100644 index 0000000000..d1e3eb5d03 --- /dev/null +++ b/pages.ca/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> Aquest comandament és un àlies de `-p linux stty`. + +- Veure documentació pel comandament original: + +`tldr -p linux stty` diff --git a/pages.ca/osx/gsum.md b/pages.ca/osx/gsum.md new file mode 100644 index 0000000000..dc3b2b3f71 --- /dev/null +++ b/pages.ca/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> Aquest comandament és un àlies de `-p linux sum`. + +- Veure documentació pel comandament original: + +`tldr -p linux sum` diff --git a/pages.ca/osx/gsync.md b/pages.ca/osx/gsync.md new file mode 100644 index 0000000000..f9a58d41eb --- /dev/null +++ b/pages.ca/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> Aquest comandament és un àlies de `-p linux sync`. + +- Veure documentació pel comandament original: + +`tldr -p linux sync` diff --git a/pages.ca/osx/gtac.md b/pages.ca/osx/gtac.md new file mode 100644 index 0000000000..1fafbaacaf --- /dev/null +++ b/pages.ca/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> Aquest comandament és un àlies de `-p linux tac`. + +- Veure documentació pel comandament original: + +`tldr -p linux tac` diff --git a/pages.ca/osx/gtail.md b/pages.ca/osx/gtail.md new file mode 100644 index 0000000000..31a455091d --- /dev/null +++ b/pages.ca/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> Aquest comandament és un àlies de `-p linux tail`. + +- Veure documentació pel comandament original: + +`tldr -p linux tail` diff --git a/pages.ca/osx/gtalk.md b/pages.ca/osx/gtalk.md new file mode 100644 index 0000000000..35a99d9012 --- /dev/null +++ b/pages.ca/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> Aquest comandament és un àlies de `-p linux talk`. + +- Veure documentació pel comandament original: + +`tldr -p linux talk` diff --git a/pages.ca/osx/gtar.md b/pages.ca/osx/gtar.md new file mode 100644 index 0000000000..c397847f0a --- /dev/null +++ b/pages.ca/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> Aquest comandament és un àlies de `-p linux tar`. + +- Veure documentació pel comandament original: + +`tldr -p linux tar` diff --git a/pages.ca/osx/gtee.md b/pages.ca/osx/gtee.md new file mode 100644 index 0000000000..7839868828 --- /dev/null +++ b/pages.ca/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> Aquest comandament és un àlies de `-p linux tee`. + +- Veure documentació pel comandament original: + +`tldr -p linux tee` diff --git a/pages.ca/osx/gtelnet.md b/pages.ca/osx/gtelnet.md new file mode 100644 index 0000000000..9cfa4d1202 --- /dev/null +++ b/pages.ca/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> Aquest comandament és un àlies de `-p linux telnet`. + +- Veure documentació pel comandament original: + +`tldr -p linux telnet` diff --git a/pages.ca/osx/gtest.md b/pages.ca/osx/gtest.md new file mode 100644 index 0000000000..72627e18bf --- /dev/null +++ b/pages.ca/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> Aquest comandament és un àlies de `-p linux test`. + +- Veure documentació pel comandament original: + +`tldr -p linux test` diff --git a/pages.ca/osx/gtftp.md b/pages.ca/osx/gtftp.md new file mode 100644 index 0000000000..36cc6b6eff --- /dev/null +++ b/pages.ca/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> Aquest comandament és un àlies de `-p linux tftp`. + +- Veure documentació pel comandament original: + +`tldr -p linux tftp` diff --git a/pages.ca/osx/gtime.md b/pages.ca/osx/gtime.md new file mode 100644 index 0000000000..bfe92c49c2 --- /dev/null +++ b/pages.ca/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> Aquest comandament és un àlies de `-p linux time`. + +- Veure documentació pel comandament original: + +`tldr -p linux time` diff --git a/pages.ca/osx/gtimeout.md b/pages.ca/osx/gtimeout.md new file mode 100644 index 0000000000..fbd55c6402 --- /dev/null +++ b/pages.ca/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> Aquest comandament és un àlies de `-p linux timeout`. + +- Veure documentació pel comandament original: + +`tldr -p linux timeout` diff --git a/pages.ca/osx/gtouch.md b/pages.ca/osx/gtouch.md new file mode 100644 index 0000000000..0c2439c498 --- /dev/null +++ b/pages.ca/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> Aquest comandament és un àlies de `-p linux touch`. + +- Veure documentació pel comandament original: + +`tldr -p linux touch` diff --git a/pages.ca/osx/gtr.md b/pages.ca/osx/gtr.md new file mode 100644 index 0000000000..b8402ca33a --- /dev/null +++ b/pages.ca/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> Aquest comandament és un àlies de `-p linux tr`. + +- Veure documentació pel comandament original: + +`tldr -p linux tr` diff --git a/pages.ca/osx/gtraceroute.md b/pages.ca/osx/gtraceroute.md new file mode 100644 index 0000000000..d828d4ba2f --- /dev/null +++ b/pages.ca/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> Aquest comandament és un àlies de `-p linux traceroute`. + +- Veure documentació pel comandament original: + +`tldr -p linux traceroute` diff --git a/pages.ca/osx/gtrue.md b/pages.ca/osx/gtrue.md new file mode 100644 index 0000000000..2529066dde --- /dev/null +++ b/pages.ca/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> Aquest comandament és un àlies de `-p linux true`. + +- Veure documentació pel comandament original: + +`tldr -p linux true` diff --git a/pages.ca/osx/gtruncate.md b/pages.ca/osx/gtruncate.md new file mode 100644 index 0000000000..5a16709d71 --- /dev/null +++ b/pages.ca/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> Aquest comandament és un àlies de `-p linux truncate`. + +- Veure documentació pel comandament original: + +`tldr -p linux truncate` diff --git a/pages.ca/osx/gtsort.md b/pages.ca/osx/gtsort.md new file mode 100644 index 0000000000..5ae261ed4a --- /dev/null +++ b/pages.ca/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> Aquest comandament és un àlies de `-p linux tsort`. + +- Veure documentació pel comandament original: + +`tldr -p linux tsort` diff --git a/pages.ca/osx/gtty.md b/pages.ca/osx/gtty.md new file mode 100644 index 0000000000..35c8e20909 --- /dev/null +++ b/pages.ca/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> Aquest comandament és un àlies de `-p linux tty`. + +- Veure documentació pel comandament original: + +`tldr -p linux tty` diff --git a/pages.ca/osx/guname.md b/pages.ca/osx/guname.md new file mode 100644 index 0000000000..c9f9e9e143 --- /dev/null +++ b/pages.ca/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> Aquest comandament és un àlies de `-p linux uname`. + +- Veure documentació pel comandament original: + +`tldr -p linux uname` diff --git a/pages.ca/osx/gunexpand.md b/pages.ca/osx/gunexpand.md new file mode 100644 index 0000000000..d4f982cf64 --- /dev/null +++ b/pages.ca/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> Aquest comandament és un àlies de `-p linux unexpand`. + +- Veure documentació pel comandament original: + +`tldr -p linux unexpand` diff --git a/pages.ca/osx/guniq.md b/pages.ca/osx/guniq.md new file mode 100644 index 0000000000..7fe4237f82 --- /dev/null +++ b/pages.ca/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> Aquest comandament és un àlies de `-p linux uniq`. + +- Veure documentació pel comandament original: + +`tldr -p linux uniq` diff --git a/pages.ca/osx/gunits.md b/pages.ca/osx/gunits.md new file mode 100644 index 0000000000..9db603324c --- /dev/null +++ b/pages.ca/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> Aquest comandament és un àlies de `-p linux units`. + +- Veure documentació pel comandament original: + +`tldr -p linux units` diff --git a/pages.ca/osx/gunlink.md b/pages.ca/osx/gunlink.md new file mode 100644 index 0000000000..48bb11485b --- /dev/null +++ b/pages.ca/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> Aquest comandament és un àlies de `-p linux unlink`. + +- Veure documentació pel comandament original: + +`tldr -p linux unlink` diff --git a/pages.ca/osx/gupdatedb.md b/pages.ca/osx/gupdatedb.md new file mode 100644 index 0000000000..be6238fe76 --- /dev/null +++ b/pages.ca/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> Aquest comandament és un àlies de `-p linux updatedb`. + +- Veure documentació pel comandament original: + +`tldr -p linux updatedb` diff --git a/pages.ca/osx/guptime.md b/pages.ca/osx/guptime.md new file mode 100644 index 0000000000..1f0b42eaa1 --- /dev/null +++ b/pages.ca/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> Aquest comandament és un àlies de `-p linux uptime`. + +- Veure documentació pel comandament original: + +`tldr -p linux uptime` diff --git a/pages.ca/osx/gusers.md b/pages.ca/osx/gusers.md new file mode 100644 index 0000000000..0f8e046b8b --- /dev/null +++ b/pages.ca/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> Aquest comandament és un àlies de `-p linux users`. + +- Veure documentació pel comandament original: + +`tldr -p linux users` diff --git a/pages.ca/osx/gvdir.md b/pages.ca/osx/gvdir.md new file mode 100644 index 0000000000..84b64d5a40 --- /dev/null +++ b/pages.ca/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> Aquest comandament és un àlies de `-p linux vdir`. + +- Veure documentació pel comandament original: + +`tldr -p linux vdir` diff --git a/pages.ca/osx/gwc.md b/pages.ca/osx/gwc.md new file mode 100644 index 0000000000..06dd4df754 --- /dev/null +++ b/pages.ca/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> Aquest comandament és un àlies de `-p linux wc`. + +- Veure documentació pel comandament original: + +`tldr -p linux wc` diff --git a/pages.ca/osx/gwhich.md b/pages.ca/osx/gwhich.md new file mode 100644 index 0000000000..e2eea7452b --- /dev/null +++ b/pages.ca/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> Aquest comandament és un àlies de `-p linux which`. + +- Veure documentació pel comandament original: + +`tldr -p linux which` diff --git a/pages.ca/osx/gwho.md b/pages.ca/osx/gwho.md new file mode 100644 index 0000000000..f758d3e9f2 --- /dev/null +++ b/pages.ca/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> Aquest comandament és un àlies de `-p linux who`. + +- Veure documentació pel comandament original: + +`tldr -p linux who` diff --git a/pages.ca/osx/gwhoami.md b/pages.ca/osx/gwhoami.md new file mode 100644 index 0000000000..4c4d38efd0 --- /dev/null +++ b/pages.ca/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> Aquest comandament és un àlies de `-p linux whoami`. + +- Veure documentació pel comandament original: + +`tldr -p linux whoami` diff --git a/pages.ca/osx/gwhois.md b/pages.ca/osx/gwhois.md new file mode 100644 index 0000000000..3dd90fb3d2 --- /dev/null +++ b/pages.ca/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> Aquest comandament és un àlies de `-p linux whois`. + +- Veure documentació pel comandament original: + +`tldr -p linux whois` diff --git a/pages.ca/osx/gxargs.md b/pages.ca/osx/gxargs.md new file mode 100644 index 0000000000..3d7957b3f4 --- /dev/null +++ b/pages.ca/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> Aquest comandament és un àlies de `-p linux xargs`. + +- Veure documentació pel comandament original: + +`tldr -p linux xargs` diff --git a/pages.ca/osx/gyes.md b/pages.ca/osx/gyes.md new file mode 100644 index 0000000000..29ca52f0b8 --- /dev/null +++ b/pages.ca/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> Aquest comandament és un àlies de `-p linux yes`. + +- Veure documentació pel comandament original: + +`tldr -p linux yes` diff --git a/pages.ca/osx/launchd.md b/pages.ca/osx/launchd.md new file mode 100644 index 0000000000..8bc1a5f5af --- /dev/null +++ b/pages.ca/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> Aquest comandament és un àlies de `launchctl`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr launchctl` diff --git a/pages.ca/windows/chrome.md b/pages.ca/windows/chrome.md new file mode 100644 index 0000000000..135163e54c --- /dev/null +++ b/pages.ca/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> Aquest comandament és un àlies de `chromium`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr chromium` diff --git a/pages.ca/windows/cinst.md b/pages.ca/windows/cinst.md new file mode 100644 index 0000000000..0a98fa1e68 --- /dev/null +++ b/pages.ca/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> Aquest comandament és un àlies de `choco install`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr choco install` diff --git a/pages.ca/windows/clist.md b/pages.ca/windows/clist.md new file mode 100644 index 0000000000..c50bfc27fa --- /dev/null +++ b/pages.ca/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> Aquest comandament és un àlies de `choco list`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr choco list` diff --git a/pages.ca/windows/cpush.md b/pages.ca/windows/cpush.md new file mode 100644 index 0000000000..ae39f216d0 --- /dev/null +++ b/pages.ca/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> Aquest comandament és un àlies de `choco-push`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr choco-push` diff --git a/pages.ca/windows/cuninst.md b/pages.ca/windows/cuninst.md new file mode 100644 index 0000000000..c5ed8e8ae4 --- /dev/null +++ b/pages.ca/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> Aquest comandament és un àlies de `choco uninstall`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr choco uninstall` diff --git a/pages.ca/windows/curl.md b/pages.ca/windows/curl.md new file mode 100644 index 0000000000..117486bffe --- /dev/null +++ b/pages.ca/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> Aquest comandament és un àlies de `curl -p common`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr curl -p common` diff --git a/pages.ca/windows/iwr.md b/pages.ca/windows/iwr.md new file mode 100644 index 0000000000..ef53084b41 --- /dev/null +++ b/pages.ca/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> Aquest comandament és un àlies de `invoke-webrequest`. + +- Veure documentació pel comandament original: + +`tldr invoke-webrequest` diff --git a/pages.ca/windows/pwsh-where.md b/pages.ca/windows/pwsh-where.md new file mode 100644 index 0000000000..c6010bf95a --- /dev/null +++ b/pages.ca/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> Aquest comandament és un àlies de `Where-Object`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr Where-Object` diff --git a/pages.ca/windows/rd.md b/pages.ca/windows/rd.md new file mode 100644 index 0000000000..e74e91f9ca --- /dev/null +++ b/pages.ca/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> Aquest comandament és un àlies de `rmdir`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr rmdir` diff --git a/pages.ca/windows/sls.md b/pages.ca/windows/sls.md new file mode 100644 index 0000000000..7bdfe4a2a5 --- /dev/null +++ b/pages.ca/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> Aquest comandament és un àlies de `where-object`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr where-object` diff --git a/pages.ca/windows/wget.md b/pages.ca/windows/wget.md new file mode 100644 index 0000000000..fe86a4f8b6 --- /dev/null +++ b/pages.ca/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> Aquest comandament és un àlies de `wget -p common`. +> Més informació: . + +- Veure documentació pel comandament original: + +`tldr wget -p common` diff --git a/pages.cs/common/cd.md b/pages.cs/common/cd.md new file mode 100644 index 0000000000..4371cab280 --- /dev/null +++ b/pages.cs/common/cd.md @@ -0,0 +1,28 @@ +# cd + +> Změnit aktuální pracovní adresář. +> Více informací: . + +- Přesun do zadaného adresáře: + +`cd {{cesta/k/adresari}}` + +- Přesun o úroveň výš do nadřazeného adresáře: + +`cd ..` + +- Přesun do domovského adresáře aktuálního uživatele: + +`cd` + +- Přesun do domovského adresáře zadaného uživatele: + +`cd ~{{jmeno_uzivatele}}` + +- Přesun do předchozího vybraného adresáře: + +`cd -` + +- Přesun do kořenového adresáře: + +`cd /` diff --git a/pages.cs/windows/cd.md b/pages.cs/windows/cd.md new file mode 100644 index 0000000000..e15794e7fa --- /dev/null +++ b/pages.cs/windows/cd.md @@ -0,0 +1,24 @@ +# cd + +> Zobrazit aktuální adresář nebo přesun do jiného adresáře. +> Více informací: . + +- Zobrazit cestu k aktuálnímu adresáři: + +`cd` + +- Přesun do kořenového adresáře aktuálního disku: + +`cd \` + +- Přesun do nadřazené složky aktuálního adresáře: + +`cd ..` + +- Přesun do zadaného adresáře na stejném disku: + +`cd {{cesta\k\adresari}}` + +- Přesun do zadaného adresáře na jiném disku: + +`cd /d {{C}}:{{cesta\k\adresari}}` diff --git a/pages.da/common/bundler.md b/pages.da/common/bundler.md new file mode 100644 index 0000000000..433f070646 --- /dev/null +++ b/pages.da/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> Denne kommando er et alias af `bundle`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr bundle` diff --git a/pages.da/common/clamav.md b/pages.da/common/clamav.md new file mode 100644 index 0000000000..ca69816e27 --- /dev/null +++ b/pages.da/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> Denne kommando er et alias af `clamdscan`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr clamdscan` diff --git a/pages.da/common/clang-cpp.md b/pages.da/common/clang-cpp.md new file mode 100644 index 0000000000..a03c2ba3c8 --- /dev/null +++ b/pages.da/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> Denne kommando er et alias af `clang++`. + +- Se dokumentation for den oprindelige kommando: + +`tldr clang++` diff --git a/pages.da/common/clojure.md b/pages.da/common/clojure.md new file mode 100644 index 0000000000..0b1bd33d80 --- /dev/null +++ b/pages.da/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> Denne kommando er et alias af `clj`. + +- Se dokumentation for den oprindelige kommando: + +`tldr clj` diff --git a/pages.da/common/cola.md b/pages.da/common/cola.md new file mode 100644 index 0000000000..f509a96cae --- /dev/null +++ b/pages.da/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> Denne kommando er et alias af `git-cola`. + +- Se dokumentation for den oprindelige kommando: + +`tldr git-cola` diff --git a/pages.da/common/cron.md b/pages.da/common/cron.md new file mode 100644 index 0000000000..45c90baf4a --- /dev/null +++ b/pages.da/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> Denne kommando er et alias af `crontab`. + +- Se dokumentation for den oprindelige kommando: + +`tldr crontab` diff --git a/pages.da/common/fossil-ci.md b/pages.da/common/fossil-ci.md new file mode 100644 index 0000000000..befdb7c04b --- /dev/null +++ b/pages.da/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> Denne kommando er et alias af `fossil-commit`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr fossil-commit` diff --git a/pages.da/common/fossil-delete.md b/pages.da/common/fossil-delete.md new file mode 100644 index 0000000000..5b4fa0080e --- /dev/null +++ b/pages.da/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> Denne kommando er et alias af `fossil rm`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr fossil rm` diff --git a/pages.da/common/fossil-forget.md b/pages.da/common/fossil-forget.md new file mode 100644 index 0000000000..4adbd37b10 --- /dev/null +++ b/pages.da/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> Denne kommando er et alias af `fossil rm`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr fossil rm` diff --git a/pages.da/common/fossil-new.md b/pages.da/common/fossil-new.md new file mode 100644 index 0000000000..870f9143f0 --- /dev/null +++ b/pages.da/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> Denne kommando er et alias af `fossil-init`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr fossil-init` diff --git a/pages.da/common/gcloud.md b/pages.da/common/gcloud.md new file mode 100644 index 0000000000..8ddec93c1e --- /dev/null +++ b/pages.da/common/gcloud.md @@ -0,0 +1,36 @@ +# gcloud + +> Det officielle CLI værktøj for Google Cloud Platform. +> Mere information: . + +- List alle aktive konfigurationer: + +`gcloud config list` + +- Login på en Google account: + +`gcloud auth login` + +- Sæt et GCP project som standard: + +`gcloud config set project {{projekt_navn}}` + +- SSH ind til en virtuel maskine: + +`gcloud compute ssh {{bruger}}@{{instans}}` + +- Vis et overblik af alle Google Compute Engine instanser i et project. Instanser fra alle zoner er listet som standard: + +`gcloud compute instances list` + +- Opdater en kube-konfiguratonsfil med de korrekte credentials, der peger kubectl mod et spesifikt cluster i Google Kubernetes Engine: + +`gcloud container clusters get-credentials {{cluster_navn}}` + +- Opdater all gcloud CLI komponenter: + +`gcloud components update` + +- Vis hjælp for en command: + +`gcloud help {{kommando}}` diff --git a/pages.da/common/gh-cs.md b/pages.da/common/gh-cs.md new file mode 100644 index 0000000000..6cac0a8d2d --- /dev/null +++ b/pages.da/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> Denne kommando er et alias af `gh-codespace`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr gh-codespace` diff --git a/pages.da/common/gnmic-sub.md b/pages.da/common/gnmic-sub.md new file mode 100644 index 0000000000..0ef8b6b4ef --- /dev/null +++ b/pages.da/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> Denne kommando er et alias af `gnmic subscribe`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr gnmic subscribe` diff --git a/pages.da/common/google-chrome.md b/pages.da/common/google-chrome.md new file mode 100644 index 0000000000..9539ecf4f4 --- /dev/null +++ b/pages.da/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> Denne kommando er et alias af `chromium`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr chromium` diff --git a/pages.da/common/hx.md b/pages.da/common/hx.md new file mode 100644 index 0000000000..959056e8b9 --- /dev/null +++ b/pages.da/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> Denne kommando er et alias af `helix`. + +- Se dokumentation for den oprindelige kommando: + +`tldr helix` diff --git a/pages.da/common/kafkacat.md b/pages.da/common/kafkacat.md new file mode 100644 index 0000000000..80073e341d --- /dev/null +++ b/pages.da/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> Denne kommando er et alias af `kcat`. + +- Se dokumentation for den oprindelige kommando: + +`tldr kcat` diff --git a/pages.da/common/llvm-ar.md b/pages.da/common/llvm-ar.md new file mode 100644 index 0000000000..27813fd83e --- /dev/null +++ b/pages.da/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> Denne kommando er et alias af `ar`. + +- Se dokumentation for den oprindelige kommando: + +`tldr ar` diff --git a/pages.da/common/llvm-g++.md b/pages.da/common/llvm-g++.md new file mode 100644 index 0000000000..031a637b14 --- /dev/null +++ b/pages.da/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> Denne kommando er et alias af `clang++`. + +- Se dokumentation for den oprindelige kommando: + +`tldr clang++` diff --git a/pages.da/common/llvm-gcc.md b/pages.da/common/llvm-gcc.md new file mode 100644 index 0000000000..63b5f15024 --- /dev/null +++ b/pages.da/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> Denne kommando er et alias af `clang`. + +- Se dokumentation for den oprindelige kommando: + +`tldr clang` diff --git a/pages.da/common/llvm-nm.md b/pages.da/common/llvm-nm.md new file mode 100644 index 0000000000..acae2069db --- /dev/null +++ b/pages.da/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> Denne kommando er et alias af `nm`. + +- Se dokumentation for den oprindelige kommando: + +`tldr nm` diff --git a/pages.da/common/llvm-objdump.md b/pages.da/common/llvm-objdump.md new file mode 100644 index 0000000000..49cc513ffb --- /dev/null +++ b/pages.da/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> Denne kommando er et alias af `objdump`. + +- Se dokumentation for den oprindelige kommando: + +`tldr objdump` diff --git a/pages.da/common/llvm-strings.md b/pages.da/common/llvm-strings.md new file mode 100644 index 0000000000..1d2f7d87a5 --- /dev/null +++ b/pages.da/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> Denne kommando er et alias af `strings`. + +- Se dokumentation for den oprindelige kommando: + +`tldr strings` diff --git a/pages.da/common/lzcat.md b/pages.da/common/lzcat.md new file mode 100644 index 0000000000..9c3887f0c6 --- /dev/null +++ b/pages.da/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> Denne kommando er et alias af `xz`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr xz` diff --git a/pages.da/common/lzma.md b/pages.da/common/lzma.md new file mode 100644 index 0000000000..ce0a36763d --- /dev/null +++ b/pages.da/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> Denne kommando er et alias af `xz`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr xz` diff --git a/pages.da/common/mscore.md b/pages.da/common/mscore.md new file mode 100644 index 0000000000..87dc24699a --- /dev/null +++ b/pages.da/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> Denne kommando er et alias af `musescore`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr musescore` diff --git a/pages.da/common/nm-classic.md b/pages.da/common/nm-classic.md new file mode 100644 index 0000000000..c9300a4522 --- /dev/null +++ b/pages.da/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> Denne kommando er et alias af `nm`. + +- Se dokumentation for den oprindelige kommando: + +`tldr nm` diff --git a/pages.da/common/ntl.md b/pages.da/common/ntl.md new file mode 100644 index 0000000000..103f1e2518 --- /dev/null +++ b/pages.da/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> Denne kommando er et alias af `netlify`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr netlify` diff --git a/pages.da/common/pio-init.md b/pages.da/common/pio-init.md new file mode 100644 index 0000000000..4252f0c154 --- /dev/null +++ b/pages.da/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> Denne kommando er et alias af `pio project`. + +- Se dokumentation for den oprindelige kommando: + +`tldr pio project` diff --git a/pages.da/common/piodebuggdb.md b/pages.da/common/piodebuggdb.md new file mode 100644 index 0000000000..51a0adb3e8 --- /dev/null +++ b/pages.da/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> Denne kommando er et alias af `pio debug`. + +- Se dokumentation for den oprindelige kommando: + +`tldr pio debug` diff --git a/pages.da/common/platformio.md b/pages.da/common/platformio.md new file mode 100644 index 0000000000..81b7acc6f6 --- /dev/null +++ b/pages.da/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> Denne kommando er et alias af `pio`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr pio` diff --git a/pages.da/common/ptpython3.md b/pages.da/common/ptpython3.md new file mode 100644 index 0000000000..4d230b84b4 --- /dev/null +++ b/pages.da/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> Denne kommando er et alias af `ptpython`. + +- Se dokumentation for den oprindelige kommando: + +`tldr ptpython` diff --git a/pages.da/common/python3.md b/pages.da/common/python3.md new file mode 100644 index 0000000000..ef7a4e1aeb --- /dev/null +++ b/pages.da/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> Denne kommando er et alias af `python`. + +- Se dokumentation for den oprindelige kommando: + +`tldr python` diff --git a/pages.da/common/r2.md b/pages.da/common/r2.md new file mode 100644 index 0000000000..ca20c66d39 --- /dev/null +++ b/pages.da/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> Denne kommando er et alias af `radare2`. + +- Se dokumentation for den oprindelige kommando: + +`tldr radare2` diff --git a/pages.da/common/rcat.md b/pages.da/common/rcat.md new file mode 100644 index 0000000000..6b2ccb58d1 --- /dev/null +++ b/pages.da/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> Denne kommando er et alias af `rc`. + +- Se dokumentation for den oprindelige kommando: + +`tldr rc` diff --git a/pages.da/common/ripgrep.md b/pages.da/common/ripgrep.md new file mode 100644 index 0000000000..47e537e2d4 --- /dev/null +++ b/pages.da/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> Denne kommando er et alias af `rg`. + +- Se dokumentation for den oprindelige kommando: + +`tldr rg` diff --git a/pages.da/common/tldrl.md b/pages.da/common/tldrl.md new file mode 100644 index 0000000000..5b849f5dfb --- /dev/null +++ b/pages.da/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> Denne kommando er et alias af `tldr-lint`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr tldr-lint` diff --git a/pages.da/common/tlmgr-arch.md b/pages.da/common/tlmgr-arch.md new file mode 100644 index 0000000000..99036a481a --- /dev/null +++ b/pages.da/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> Denne kommando er et alias af `tlmgr platform`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr tlmgr platform` diff --git a/pages.da/common/todoman.md b/pages.da/common/todoman.md new file mode 100644 index 0000000000..2705c8fa80 --- /dev/null +++ b/pages.da/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> Denne kommando er et alias af `todo`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr todo` diff --git a/pages.da/common/transmission.md b/pages.da/common/transmission.md new file mode 100644 index 0000000000..1c05734ad7 --- /dev/null +++ b/pages.da/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> Denne kommando er et alias af `transmission-daemon`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr transmission-daemon` diff --git a/pages.da/common/unlzma.md b/pages.da/common/unlzma.md new file mode 100644 index 0000000000..387350f6bc --- /dev/null +++ b/pages.da/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> Denne kommando er et alias af `xz`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr xz` diff --git a/pages.da/common/unxz.md b/pages.da/common/unxz.md new file mode 100644 index 0000000000..2e42a45369 --- /dev/null +++ b/pages.da/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> Denne kommando er et alias af `xz`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr xz` diff --git a/pages.da/common/vi.md b/pages.da/common/vi.md new file mode 100644 index 0000000000..d66ba48c61 --- /dev/null +++ b/pages.da/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> Denne kommando er et alias af `vim`. + +- Se dokumentation for den oprindelige kommando: + +`tldr vim` diff --git a/pages.da/common/xzcat.md b/pages.da/common/xzcat.md new file mode 100644 index 0000000000..d14dad66e3 --- /dev/null +++ b/pages.da/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> Denne kommando er et alias af `xz`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr xz` diff --git a/pages.da/linux/alternatives.md b/pages.da/linux/alternatives.md new file mode 100644 index 0000000000..83b5dcb90f --- /dev/null +++ b/pages.da/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> Denne kommando er et alias af `update-alternatives`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr update-alternatives` diff --git a/pages.da/linux/batcat.md b/pages.da/linux/batcat.md new file mode 100644 index 0000000000..31fd132b14 --- /dev/null +++ b/pages.da/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> Denne kommando er et alias af `bat`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr bat` diff --git a/pages.da/linux/bspwm.md b/pages.da/linux/bspwm.md new file mode 100644 index 0000000000..f9dc39238f --- /dev/null +++ b/pages.da/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> Denne kommando er et alias af `bspc`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr bspc` diff --git a/pages.da/linux/cc.md b/pages.da/linux/cc.md new file mode 100644 index 0000000000..5eab5d4209 --- /dev/null +++ b/pages.da/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> Denne kommando er et alias af `gcc`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr gcc` diff --git a/pages.da/linux/cgroups.md b/pages.da/linux/cgroups.md new file mode 100644 index 0000000000..d500449099 --- /dev/null +++ b/pages.da/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> Denne kommando er et alias af `cgclassify`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr cgclassify` diff --git a/pages.da/linux/ip-route-list.md b/pages.da/linux/ip-route-list.md new file mode 100644 index 0000000000..9238676078 --- /dev/null +++ b/pages.da/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> Denne kommando er et alias af `ip-route-show`. + +- Se dokumentation for den oprindelige kommando: + +`tldr ip-route-show` diff --git a/pages.da/linux/megadl.md b/pages.da/linux/megadl.md new file mode 100644 index 0000000000..5292e2ab98 --- /dev/null +++ b/pages.da/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> Denne kommando er et alias af `megatools-dl`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr megatools-dl` diff --git a/pages.da/linux/ncal.md b/pages.da/linux/ncal.md new file mode 100644 index 0000000000..d456b85b07 --- /dev/null +++ b/pages.da/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> Denne kommando er et alias af `cal`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr cal` diff --git a/pages.da/linux/ubuntu-bug.md b/pages.da/linux/ubuntu-bug.md new file mode 100644 index 0000000000..66e39da7e7 --- /dev/null +++ b/pages.da/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> Denne kommando er et alias af `apport-bug`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr apport-bug` diff --git a/pages.da/osx/aa.md b/pages.da/osx/aa.md new file mode 100644 index 0000000000..99b4edda4b --- /dev/null +++ b/pages.da/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> Denne kommando er et alias af `yaa`. + +- Se dokumentation for den oprindelige kommando: + +`tldr yaa` diff --git a/pages.da/osx/g[.md b/pages.da/osx/g[.md new file mode 100644 index 0000000000..64ee505d14 --- /dev/null +++ b/pages.da/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> Denne kommando er et alias af `-p linux [`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux [` diff --git a/pages.da/osx/gawk.md b/pages.da/osx/gawk.md new file mode 100644 index 0000000000..08163ead24 --- /dev/null +++ b/pages.da/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> Denne kommando er et alias af `-p linux awk`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux awk` diff --git a/pages.da/osx/gb2sum.md b/pages.da/osx/gb2sum.md new file mode 100644 index 0000000000..1857385857 --- /dev/null +++ b/pages.da/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> Denne kommando er et alias af `-p linux b2sum`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux b2sum` diff --git a/pages.da/osx/gbase32.md b/pages.da/osx/gbase32.md new file mode 100644 index 0000000000..35ac72e6ed --- /dev/null +++ b/pages.da/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> Denne kommando er et alias af `-p linux base32`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux base32` diff --git a/pages.da/osx/gbase64.md b/pages.da/osx/gbase64.md new file mode 100644 index 0000000000..7b792dd80f --- /dev/null +++ b/pages.da/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> Denne kommando er et alias af `-p linux base64`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux base64` diff --git a/pages.da/osx/gbasename.md b/pages.da/osx/gbasename.md new file mode 100644 index 0000000000..77acef3e1c --- /dev/null +++ b/pages.da/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> Denne kommando er et alias af `-p linux basename`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux basename` diff --git a/pages.da/osx/gbasenc.md b/pages.da/osx/gbasenc.md new file mode 100644 index 0000000000..f6b5142b50 --- /dev/null +++ b/pages.da/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> Denne kommando er et alias af `-p linux basenc`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux basenc` diff --git a/pages.da/osx/gcat.md b/pages.da/osx/gcat.md new file mode 100644 index 0000000000..faa7b0f1d3 --- /dev/null +++ b/pages.da/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> Denne kommando er et alias af `-p linux cat`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux cat` diff --git a/pages.da/osx/gchcon.md b/pages.da/osx/gchcon.md new file mode 100644 index 0000000000..5d7c466e83 --- /dev/null +++ b/pages.da/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> Denne kommando er et alias af `-p linux chcon`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux chcon` diff --git a/pages.da/osx/gchgrp.md b/pages.da/osx/gchgrp.md new file mode 100644 index 0000000000..2533183afb --- /dev/null +++ b/pages.da/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> Denne kommando er et alias af `-p linux chgrp`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux chgrp` diff --git a/pages.da/osx/gchmod.md b/pages.da/osx/gchmod.md new file mode 100644 index 0000000000..cd0c941fb3 --- /dev/null +++ b/pages.da/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> Denne kommando er et alias af `-p linux chmod`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux chmod` diff --git a/pages.da/osx/gchown.md b/pages.da/osx/gchown.md new file mode 100644 index 0000000000..47023ba875 --- /dev/null +++ b/pages.da/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> Denne kommando er et alias af `-p linux chown`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux chown` diff --git a/pages.da/osx/gchroot.md b/pages.da/osx/gchroot.md new file mode 100644 index 0000000000..190a7c9df5 --- /dev/null +++ b/pages.da/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> Denne kommando er et alias af `-p linux chroot`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux chroot` diff --git a/pages.da/osx/gcksum.md b/pages.da/osx/gcksum.md new file mode 100644 index 0000000000..3924a7f429 --- /dev/null +++ b/pages.da/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> Denne kommando er et alias af `-p linux cksum`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux cksum` diff --git a/pages.da/osx/gcomm.md b/pages.da/osx/gcomm.md new file mode 100644 index 0000000000..d6e8c4a48d --- /dev/null +++ b/pages.da/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> Denne kommando er et alias af `-p linux comm`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux comm` diff --git a/pages.da/osx/gcp.md b/pages.da/osx/gcp.md new file mode 100644 index 0000000000..c85582e5ac --- /dev/null +++ b/pages.da/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> Denne kommando er et alias af `-p linux cp`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux cp` diff --git a/pages.da/osx/gcsplit.md b/pages.da/osx/gcsplit.md new file mode 100644 index 0000000000..a8eaae540d --- /dev/null +++ b/pages.da/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> Denne kommando er et alias af `-p linux csplit`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux csplit` diff --git a/pages.da/osx/gcut.md b/pages.da/osx/gcut.md new file mode 100644 index 0000000000..300920517e --- /dev/null +++ b/pages.da/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> Denne kommando er et alias af `-p linux cut`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux cut` diff --git a/pages.da/osx/gdate.md b/pages.da/osx/gdate.md new file mode 100644 index 0000000000..a92983b151 --- /dev/null +++ b/pages.da/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> Denne kommando er et alias af `-p linux date`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux date` diff --git a/pages.da/osx/gdd.md b/pages.da/osx/gdd.md new file mode 100644 index 0000000000..8a3427a4bf --- /dev/null +++ b/pages.da/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> Denne kommando er et alias af `-p linux dd`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux dd` diff --git a/pages.da/osx/gdf.md b/pages.da/osx/gdf.md new file mode 100644 index 0000000000..e3c22d6d22 --- /dev/null +++ b/pages.da/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> Denne kommando er et alias af `-p linux df`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux df` diff --git a/pages.da/osx/gdir.md b/pages.da/osx/gdir.md new file mode 100644 index 0000000000..68afc5a7bc --- /dev/null +++ b/pages.da/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> Denne kommando er et alias af `-p linux dir`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux dir` diff --git a/pages.da/osx/gdircolors.md b/pages.da/osx/gdircolors.md new file mode 100644 index 0000000000..f2403e6df4 --- /dev/null +++ b/pages.da/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> Denne kommando er et alias af `-p linux dircolors`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux dircolors` diff --git a/pages.da/osx/gdirname.md b/pages.da/osx/gdirname.md new file mode 100644 index 0000000000..a3320c4753 --- /dev/null +++ b/pages.da/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> Denne kommando er et alias af `-p linux dirname`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux dirname` diff --git a/pages.da/osx/gdnsdomainname.md b/pages.da/osx/gdnsdomainname.md new file mode 100644 index 0000000000..8cda7583f1 --- /dev/null +++ b/pages.da/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> Denne kommando er et alias af `-p linux dnsdomainname`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux dnsdomainname` diff --git a/pages.da/osx/gecho.md b/pages.da/osx/gecho.md new file mode 100644 index 0000000000..4e28d1cf05 --- /dev/null +++ b/pages.da/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> Denne kommando er et alias af `-p linux echo`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux echo` diff --git a/pages.da/osx/ged.md b/pages.da/osx/ged.md new file mode 100644 index 0000000000..e05453bd2e --- /dev/null +++ b/pages.da/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> Denne kommando er et alias af `-p linux ed`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux ed` diff --git a/pages.da/osx/gegrep.md b/pages.da/osx/gegrep.md new file mode 100644 index 0000000000..56cc19af8d --- /dev/null +++ b/pages.da/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> Denne kommando er et alias af `-p linux egrep`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux egrep` diff --git a/pages.da/osx/genv.md b/pages.da/osx/genv.md new file mode 100644 index 0000000000..fcf225bd99 --- /dev/null +++ b/pages.da/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> Denne kommando er et alias af `-p linux env`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux env` diff --git a/pages.da/osx/gexpand.md b/pages.da/osx/gexpand.md new file mode 100644 index 0000000000..a2f00414af --- /dev/null +++ b/pages.da/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> Denne kommando er et alias af `-p linux expand`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux expand` diff --git a/pages.da/osx/gexpr.md b/pages.da/osx/gexpr.md new file mode 100644 index 0000000000..d31ce315b3 --- /dev/null +++ b/pages.da/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> Denne kommando er et alias af `-p linux expr`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux expr` diff --git a/pages.da/osx/gfactor.md b/pages.da/osx/gfactor.md new file mode 100644 index 0000000000..48a94fef42 --- /dev/null +++ b/pages.da/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> Denne kommando er et alias af `-p linux factor`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux factor` diff --git a/pages.da/osx/gfalse.md b/pages.da/osx/gfalse.md new file mode 100644 index 0000000000..11adf338f2 --- /dev/null +++ b/pages.da/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> Denne kommando er et alias af `-p linux false`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux false` diff --git a/pages.da/osx/gfgrep.md b/pages.da/osx/gfgrep.md new file mode 100644 index 0000000000..eca874d6b6 --- /dev/null +++ b/pages.da/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> Denne kommando er et alias af `-p linux fgrep`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux fgrep` diff --git a/pages.da/osx/gfind.md b/pages.da/osx/gfind.md new file mode 100644 index 0000000000..88a9a2d623 --- /dev/null +++ b/pages.da/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> Denne kommando er et alias af `-p linux find`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux find` diff --git a/pages.da/osx/gfmt.md b/pages.da/osx/gfmt.md new file mode 100644 index 0000000000..5f7fd764e2 --- /dev/null +++ b/pages.da/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> Denne kommando er et alias af `-p linux fmt`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux fmt` diff --git a/pages.da/osx/gfold.md b/pages.da/osx/gfold.md new file mode 100644 index 0000000000..dc1f2b1d04 --- /dev/null +++ b/pages.da/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> Denne kommando er et alias af `-p linux fold`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux fold` diff --git a/pages.da/osx/gftp.md b/pages.da/osx/gftp.md new file mode 100644 index 0000000000..5744015792 --- /dev/null +++ b/pages.da/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> Denne kommando er et alias af `-p linux ftp`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux ftp` diff --git a/pages.da/osx/ggrep.md b/pages.da/osx/ggrep.md new file mode 100644 index 0000000000..a95d20ab07 --- /dev/null +++ b/pages.da/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> Denne kommando er et alias af `-p linux grep`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux grep` diff --git a/pages.da/osx/ggroups.md b/pages.da/osx/ggroups.md new file mode 100644 index 0000000000..485cdd2381 --- /dev/null +++ b/pages.da/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> Denne kommando er et alias af `-p linux groups`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux groups` diff --git a/pages.da/osx/ghead.md b/pages.da/osx/ghead.md new file mode 100644 index 0000000000..6dba4dd7c5 --- /dev/null +++ b/pages.da/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> Denne kommando er et alias af `-p linux head`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux head` diff --git a/pages.da/osx/ghostid.md b/pages.da/osx/ghostid.md new file mode 100644 index 0000000000..29d13f7f3d --- /dev/null +++ b/pages.da/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> Denne kommando er et alias af `-p linux hostid`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux hostid` diff --git a/pages.da/osx/ghostname.md b/pages.da/osx/ghostname.md new file mode 100644 index 0000000000..3add5a69fc --- /dev/null +++ b/pages.da/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> Denne kommando er et alias af `-p linux hostname`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux hostname` diff --git a/pages.da/osx/gid.md b/pages.da/osx/gid.md new file mode 100644 index 0000000000..69d1f7bded --- /dev/null +++ b/pages.da/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> Denne kommando er et alias af `-p linux id`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux id` diff --git a/pages.da/osx/gifconfig.md b/pages.da/osx/gifconfig.md new file mode 100644 index 0000000000..76199f9196 --- /dev/null +++ b/pages.da/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> Denne kommando er et alias af `-p linux ifconfig`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux ifconfig` diff --git a/pages.da/osx/gindent.md b/pages.da/osx/gindent.md new file mode 100644 index 0000000000..300d44a928 --- /dev/null +++ b/pages.da/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> Denne kommando er et alias af `-p linux indent`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux indent` diff --git a/pages.da/osx/ginstall.md b/pages.da/osx/ginstall.md new file mode 100644 index 0000000000..52bc4396ba --- /dev/null +++ b/pages.da/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> Denne kommando er et alias af `-p linux install`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux install` diff --git a/pages.da/osx/gjoin.md b/pages.da/osx/gjoin.md new file mode 100644 index 0000000000..ca143b1b9e --- /dev/null +++ b/pages.da/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> Denne kommando er et alias af `-p linux join`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux join` diff --git a/pages.da/osx/gkill.md b/pages.da/osx/gkill.md new file mode 100644 index 0000000000..014f153a9a --- /dev/null +++ b/pages.da/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> Denne kommando er et alias af `-p linux kill`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux kill` diff --git a/pages.da/osx/glibtool.md b/pages.da/osx/glibtool.md new file mode 100644 index 0000000000..150238a3c8 --- /dev/null +++ b/pages.da/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> Denne kommando er et alias af `-p linux libtool`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux libtool` diff --git a/pages.da/osx/glibtoolize.md b/pages.da/osx/glibtoolize.md new file mode 100644 index 0000000000..11fe4cb40e --- /dev/null +++ b/pages.da/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> Denne kommando er et alias af `-p linux libtoolize`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux libtoolize` diff --git a/pages.da/osx/glink.md b/pages.da/osx/glink.md new file mode 100644 index 0000000000..3830d05330 --- /dev/null +++ b/pages.da/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> Denne kommando er et alias af `-p linux link`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux link` diff --git a/pages.da/osx/gln.md b/pages.da/osx/gln.md new file mode 100644 index 0000000000..cfc5ee9075 --- /dev/null +++ b/pages.da/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> Denne kommando er et alias af `-p linux ln`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux ln` diff --git a/pages.da/osx/glocate.md b/pages.da/osx/glocate.md new file mode 100644 index 0000000000..2b3016ed4e --- /dev/null +++ b/pages.da/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> Denne kommando er et alias af `-p linux locate`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux locate` diff --git a/pages.da/osx/glogger.md b/pages.da/osx/glogger.md new file mode 100644 index 0000000000..26f9e9125d --- /dev/null +++ b/pages.da/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> Denne kommando er et alias af `-p linux logger`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux logger` diff --git a/pages.da/osx/glogname.md b/pages.da/osx/glogname.md new file mode 100644 index 0000000000..e2da571564 --- /dev/null +++ b/pages.da/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> Denne kommando er et alias af `-p linux logname`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux logname` diff --git a/pages.da/osx/gls.md b/pages.da/osx/gls.md new file mode 100644 index 0000000000..2dc3631e5a --- /dev/null +++ b/pages.da/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> Denne kommando er et alias af `-p linux ls`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux ls` diff --git a/pages.da/osx/gmake.md b/pages.da/osx/gmake.md new file mode 100644 index 0000000000..965dc70897 --- /dev/null +++ b/pages.da/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> Denne kommando er et alias af `-p linux make`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux make` diff --git a/pages.da/osx/gmd5sum.md b/pages.da/osx/gmd5sum.md new file mode 100644 index 0000000000..1ba13d6c25 --- /dev/null +++ b/pages.da/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> Denne kommando er et alias af `-p linux md5sum`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux md5sum` diff --git a/pages.da/osx/gmkdir.md b/pages.da/osx/gmkdir.md new file mode 100644 index 0000000000..2be3c1abc5 --- /dev/null +++ b/pages.da/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> Denne kommando er et alias af `-p linux mkdir`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux mkdir` diff --git a/pages.da/osx/gmkfifo.md b/pages.da/osx/gmkfifo.md new file mode 100644 index 0000000000..bf5f156b35 --- /dev/null +++ b/pages.da/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> Denne kommando er et alias af `-p linux mkfifo`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux mkfifo` diff --git a/pages.da/osx/gmknod.md b/pages.da/osx/gmknod.md new file mode 100644 index 0000000000..778a818407 --- /dev/null +++ b/pages.da/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> Denne kommando er et alias af `-p linux mknod`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux mknod` diff --git a/pages.da/osx/gmktemp.md b/pages.da/osx/gmktemp.md new file mode 100644 index 0000000000..3cb9e6b056 --- /dev/null +++ b/pages.da/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> Denne kommando er et alias af `-p linux mktemp`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux mktemp` diff --git a/pages.da/osx/gmv.md b/pages.da/osx/gmv.md new file mode 100644 index 0000000000..79834626f4 --- /dev/null +++ b/pages.da/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> Denne kommando er et alias af `-p linux mv`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux mv` diff --git a/pages.da/osx/gnice.md b/pages.da/osx/gnice.md new file mode 100644 index 0000000000..8f0d7a6881 --- /dev/null +++ b/pages.da/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> Denne kommando er et alias af `-p linux nice`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux nice` diff --git a/pages.da/osx/gnl.md b/pages.da/osx/gnl.md new file mode 100644 index 0000000000..ce4ca4ca88 --- /dev/null +++ b/pages.da/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> Denne kommando er et alias af `-p linux nl`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux nl` diff --git a/pages.da/osx/gnohup.md b/pages.da/osx/gnohup.md new file mode 100644 index 0000000000..0e5235fe22 --- /dev/null +++ b/pages.da/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> Denne kommando er et alias af `-p linux nohup`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux nohup` diff --git a/pages.da/osx/gnproc.md b/pages.da/osx/gnproc.md new file mode 100644 index 0000000000..da5e9ff4b4 --- /dev/null +++ b/pages.da/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> Denne kommando er et alias af `-p linux nproc`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux nproc` diff --git a/pages.da/osx/gnumfmt.md b/pages.da/osx/gnumfmt.md new file mode 100644 index 0000000000..d91bd18388 --- /dev/null +++ b/pages.da/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> Denne kommando er et alias af `-p linux numfmt`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux numfmt` diff --git a/pages.da/osx/god.md b/pages.da/osx/god.md new file mode 100644 index 0000000000..c58f0c2ff0 --- /dev/null +++ b/pages.da/osx/god.md @@ -0,0 +1,7 @@ +# god + +> Denne kommando er et alias af `-p linux od`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux od` diff --git a/pages.da/osx/gpaste.md b/pages.da/osx/gpaste.md new file mode 100644 index 0000000000..3392da9b71 --- /dev/null +++ b/pages.da/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> Denne kommando er et alias af `-p linux paste`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux paste` diff --git a/pages.da/osx/gpathchk.md b/pages.da/osx/gpathchk.md new file mode 100644 index 0000000000..62efe5fe22 --- /dev/null +++ b/pages.da/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> Denne kommando er et alias af `-p linux pathchk`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux pathchk` diff --git a/pages.da/osx/gping.md b/pages.da/osx/gping.md new file mode 100644 index 0000000000..fd7fff45e8 --- /dev/null +++ b/pages.da/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> Denne kommando er et alias af `-p linux ping`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux ping` diff --git a/pages.da/osx/gping6.md b/pages.da/osx/gping6.md new file mode 100644 index 0000000000..7a83748bc3 --- /dev/null +++ b/pages.da/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> Denne kommando er et alias af `-p linux ping6`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux ping6` diff --git a/pages.da/osx/gpinky.md b/pages.da/osx/gpinky.md new file mode 100644 index 0000000000..ef6d47f637 --- /dev/null +++ b/pages.da/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> Denne kommando er et alias af `-p linux pinky`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux pinky` diff --git a/pages.da/osx/gpr.md b/pages.da/osx/gpr.md new file mode 100644 index 0000000000..ec2bf71a82 --- /dev/null +++ b/pages.da/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> Denne kommando er et alias af `-p linux pr`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux pr` diff --git a/pages.da/osx/gprintenv.md b/pages.da/osx/gprintenv.md new file mode 100644 index 0000000000..824a3896fd --- /dev/null +++ b/pages.da/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> Denne kommando er et alias af `-p linux printenv`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux printenv` diff --git a/pages.da/osx/gprintf.md b/pages.da/osx/gprintf.md new file mode 100644 index 0000000000..20d1eda45b --- /dev/null +++ b/pages.da/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> Denne kommando er et alias af `-p linux printf`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux printf` diff --git a/pages.da/osx/gptx.md b/pages.da/osx/gptx.md new file mode 100644 index 0000000000..f77c867f18 --- /dev/null +++ b/pages.da/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> Denne kommando er et alias af `-p linux ptx`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux ptx` diff --git a/pages.da/osx/gpwd.md b/pages.da/osx/gpwd.md new file mode 100644 index 0000000000..0847284b05 --- /dev/null +++ b/pages.da/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> Denne kommando er et alias af `-p linux pwd`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux pwd` diff --git a/pages.da/osx/grcp.md b/pages.da/osx/grcp.md new file mode 100644 index 0000000000..a285251b6f --- /dev/null +++ b/pages.da/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> Denne kommando er et alias af `-p linux rcp`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux rcp` diff --git a/pages.da/osx/greadlink.md b/pages.da/osx/greadlink.md new file mode 100644 index 0000000000..d06990df1c --- /dev/null +++ b/pages.da/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> Denne kommando er et alias af `-p linux readlink`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux readlink` diff --git a/pages.da/osx/grealpath.md b/pages.da/osx/grealpath.md new file mode 100644 index 0000000000..3f0195eff6 --- /dev/null +++ b/pages.da/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> Denne kommando er et alias af `-p linux realpath`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux realpath` diff --git a/pages.da/osx/grexec.md b/pages.da/osx/grexec.md new file mode 100644 index 0000000000..099030424d --- /dev/null +++ b/pages.da/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> Denne kommando er et alias af `-p linux rexec`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux rexec` diff --git a/pages.da/osx/grlogin.md b/pages.da/osx/grlogin.md new file mode 100644 index 0000000000..d0638316eb --- /dev/null +++ b/pages.da/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> Denne kommando er et alias af `-p linux rlogin`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux rlogin` diff --git a/pages.da/osx/grm.md b/pages.da/osx/grm.md new file mode 100644 index 0000000000..0c9709366f --- /dev/null +++ b/pages.da/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> Denne kommando er et alias af `-p linux rm`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux rm` diff --git a/pages.da/osx/grmdir.md b/pages.da/osx/grmdir.md new file mode 100644 index 0000000000..d8497e47cd --- /dev/null +++ b/pages.da/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> Denne kommando er et alias af `-p linux rmdir`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux rmdir` diff --git a/pages.da/osx/grsh.md b/pages.da/osx/grsh.md new file mode 100644 index 0000000000..db2bb30b8c --- /dev/null +++ b/pages.da/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> Denne kommando er et alias af `-p linux rsh`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux rsh` diff --git a/pages.da/osx/gruncon.md b/pages.da/osx/gruncon.md new file mode 100644 index 0000000000..b48fc86fd5 --- /dev/null +++ b/pages.da/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> Denne kommando er et alias af `-p linux runcon`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux runcon` diff --git a/pages.da/osx/gsed.md b/pages.da/osx/gsed.md new file mode 100644 index 0000000000..4a78e2c43d --- /dev/null +++ b/pages.da/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> Denne kommando er et alias af `-p linux sed`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux sed` diff --git a/pages.da/osx/gseq.md b/pages.da/osx/gseq.md new file mode 100644 index 0000000000..2e147b1f60 --- /dev/null +++ b/pages.da/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> Denne kommando er et alias af `-p linux seq`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux seq` diff --git a/pages.da/osx/gsha1sum.md b/pages.da/osx/gsha1sum.md new file mode 100644 index 0000000000..34f148e649 --- /dev/null +++ b/pages.da/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> Denne kommando er et alias af `-p linux sha1sum`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux sha1sum` diff --git a/pages.da/osx/gsha224sum.md b/pages.da/osx/gsha224sum.md new file mode 100644 index 0000000000..4aa9fd565d --- /dev/null +++ b/pages.da/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> Denne kommando er et alias af `-p linux sha224sum`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux sha224sum` diff --git a/pages.da/osx/gsha256sum.md b/pages.da/osx/gsha256sum.md new file mode 100644 index 0000000000..9d481907ea --- /dev/null +++ b/pages.da/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> Denne kommando er et alias af `-p linux sha256sum`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux sha256sum` diff --git a/pages.da/osx/gsha384sum.md b/pages.da/osx/gsha384sum.md new file mode 100644 index 0000000000..d9eace2aab --- /dev/null +++ b/pages.da/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> Denne kommando er et alias af `-p linux sha384sum`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux sha384sum` diff --git a/pages.da/osx/gsha512sum.md b/pages.da/osx/gsha512sum.md new file mode 100644 index 0000000000..669f93a35f --- /dev/null +++ b/pages.da/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> Denne kommando er et alias af `-p linux sha512sum`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux sha512sum` diff --git a/pages.da/osx/gshred.md b/pages.da/osx/gshred.md new file mode 100644 index 0000000000..8038896d65 --- /dev/null +++ b/pages.da/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> Denne kommando er et alias af `-p linux shred`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux shred` diff --git a/pages.da/osx/gshuf.md b/pages.da/osx/gshuf.md new file mode 100644 index 0000000000..281dd035c8 --- /dev/null +++ b/pages.da/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> Denne kommando er et alias af `-p linux shuf`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux shuf` diff --git a/pages.da/osx/gsleep.md b/pages.da/osx/gsleep.md new file mode 100644 index 0000000000..a004d4e604 --- /dev/null +++ b/pages.da/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> Denne kommando er et alias af `-p linux sleep`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux sleep` diff --git a/pages.da/osx/gsort.md b/pages.da/osx/gsort.md new file mode 100644 index 0000000000..7d91055ce1 --- /dev/null +++ b/pages.da/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> Denne kommando er et alias af `-p linux sort`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux sort` diff --git a/pages.da/osx/gsplit.md b/pages.da/osx/gsplit.md new file mode 100644 index 0000000000..28b44cb90b --- /dev/null +++ b/pages.da/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> Denne kommando er et alias af `-p linux split`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux split` diff --git a/pages.da/osx/gstat.md b/pages.da/osx/gstat.md new file mode 100644 index 0000000000..e3883f3d59 --- /dev/null +++ b/pages.da/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> Denne kommando er et alias af `-p linux stat`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux stat` diff --git a/pages.da/osx/gstdbuf.md b/pages.da/osx/gstdbuf.md new file mode 100644 index 0000000000..0d818fcc61 --- /dev/null +++ b/pages.da/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> Denne kommando er et alias af `-p linux stdbuf`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux stdbuf` diff --git a/pages.da/osx/gstty.md b/pages.da/osx/gstty.md new file mode 100644 index 0000000000..e0d347e8e8 --- /dev/null +++ b/pages.da/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> Denne kommando er et alias af `-p linux stty`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux stty` diff --git a/pages.da/osx/gsum.md b/pages.da/osx/gsum.md new file mode 100644 index 0000000000..42b5093fdd --- /dev/null +++ b/pages.da/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> Denne kommando er et alias af `-p linux sum`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux sum` diff --git a/pages.da/osx/gsync.md b/pages.da/osx/gsync.md new file mode 100644 index 0000000000..bd530badcd --- /dev/null +++ b/pages.da/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> Denne kommando er et alias af `-p linux sync`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux sync` diff --git a/pages.da/osx/gtac.md b/pages.da/osx/gtac.md new file mode 100644 index 0000000000..61787994d7 --- /dev/null +++ b/pages.da/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> Denne kommando er et alias af `-p linux tac`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux tac` diff --git a/pages.da/osx/gtail.md b/pages.da/osx/gtail.md new file mode 100644 index 0000000000..efb347ef1e --- /dev/null +++ b/pages.da/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> Denne kommando er et alias af `-p linux tail`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux tail` diff --git a/pages.da/osx/gtalk.md b/pages.da/osx/gtalk.md new file mode 100644 index 0000000000..a27d589978 --- /dev/null +++ b/pages.da/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> Denne kommando er et alias af `-p linux talk`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux talk` diff --git a/pages.da/osx/gtar.md b/pages.da/osx/gtar.md new file mode 100644 index 0000000000..7c6596850c --- /dev/null +++ b/pages.da/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> Denne kommando er et alias af `-p linux tar`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux tar` diff --git a/pages.da/osx/gtee.md b/pages.da/osx/gtee.md new file mode 100644 index 0000000000..a2d0af52d5 --- /dev/null +++ b/pages.da/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> Denne kommando er et alias af `-p linux tee`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux tee` diff --git a/pages.da/osx/gtelnet.md b/pages.da/osx/gtelnet.md new file mode 100644 index 0000000000..7820aee8b0 --- /dev/null +++ b/pages.da/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> Denne kommando er et alias af `-p linux telnet`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux telnet` diff --git a/pages.da/osx/gtest.md b/pages.da/osx/gtest.md new file mode 100644 index 0000000000..d86c2993bc --- /dev/null +++ b/pages.da/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> Denne kommando er et alias af `-p linux test`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux test` diff --git a/pages.da/osx/gtftp.md b/pages.da/osx/gtftp.md new file mode 100644 index 0000000000..268fc75d19 --- /dev/null +++ b/pages.da/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> Denne kommando er et alias af `-p linux tftp`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux tftp` diff --git a/pages.da/osx/gtime.md b/pages.da/osx/gtime.md new file mode 100644 index 0000000000..f071c6817e --- /dev/null +++ b/pages.da/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> Denne kommando er et alias af `-p linux time`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux time` diff --git a/pages.da/osx/gtimeout.md b/pages.da/osx/gtimeout.md new file mode 100644 index 0000000000..26ce3f0a8c --- /dev/null +++ b/pages.da/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> Denne kommando er et alias af `-p linux timeout`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux timeout` diff --git a/pages.da/osx/gtouch.md b/pages.da/osx/gtouch.md new file mode 100644 index 0000000000..54a38e6baf --- /dev/null +++ b/pages.da/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> Denne kommando er et alias af `-p linux touch`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux touch` diff --git a/pages.da/osx/gtr.md b/pages.da/osx/gtr.md new file mode 100644 index 0000000000..b5e83dc2fa --- /dev/null +++ b/pages.da/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> Denne kommando er et alias af `-p linux tr`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux tr` diff --git a/pages.da/osx/gtraceroute.md b/pages.da/osx/gtraceroute.md new file mode 100644 index 0000000000..bddd2acdbf --- /dev/null +++ b/pages.da/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> Denne kommando er et alias af `-p linux traceroute`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux traceroute` diff --git a/pages.da/osx/gtrue.md b/pages.da/osx/gtrue.md new file mode 100644 index 0000000000..39ad110ec2 --- /dev/null +++ b/pages.da/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> Denne kommando er et alias af `-p linux true`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux true` diff --git a/pages.da/osx/gtruncate.md b/pages.da/osx/gtruncate.md new file mode 100644 index 0000000000..80f94481ef --- /dev/null +++ b/pages.da/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> Denne kommando er et alias af `-p linux truncate`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux truncate` diff --git a/pages.da/osx/gtsort.md b/pages.da/osx/gtsort.md new file mode 100644 index 0000000000..1c01126383 --- /dev/null +++ b/pages.da/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> Denne kommando er et alias af `-p linux tsort`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux tsort` diff --git a/pages.da/osx/gtty.md b/pages.da/osx/gtty.md new file mode 100644 index 0000000000..a3f2271329 --- /dev/null +++ b/pages.da/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> Denne kommando er et alias af `-p linux tty`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux tty` diff --git a/pages.da/osx/guname.md b/pages.da/osx/guname.md new file mode 100644 index 0000000000..0eda8a73bd --- /dev/null +++ b/pages.da/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> Denne kommando er et alias af `-p linux uname`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux uname` diff --git a/pages.da/osx/gunexpand.md b/pages.da/osx/gunexpand.md new file mode 100644 index 0000000000..e98f2e6d88 --- /dev/null +++ b/pages.da/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> Denne kommando er et alias af `-p linux unexpand`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux unexpand` diff --git a/pages.da/osx/guniq.md b/pages.da/osx/guniq.md new file mode 100644 index 0000000000..04a13a9709 --- /dev/null +++ b/pages.da/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> Denne kommando er et alias af `-p linux uniq`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux uniq` diff --git a/pages.da/osx/gunits.md b/pages.da/osx/gunits.md new file mode 100644 index 0000000000..72d8a61d4a --- /dev/null +++ b/pages.da/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> Denne kommando er et alias af `-p linux units`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux units` diff --git a/pages.da/osx/gunlink.md b/pages.da/osx/gunlink.md new file mode 100644 index 0000000000..985babc5e5 --- /dev/null +++ b/pages.da/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> Denne kommando er et alias af `-p linux unlink`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux unlink` diff --git a/pages.da/osx/gupdatedb.md b/pages.da/osx/gupdatedb.md new file mode 100644 index 0000000000..8404052aa4 --- /dev/null +++ b/pages.da/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> Denne kommando er et alias af `-p linux updatedb`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux updatedb` diff --git a/pages.da/osx/guptime.md b/pages.da/osx/guptime.md new file mode 100644 index 0000000000..29b83c71cd --- /dev/null +++ b/pages.da/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> Denne kommando er et alias af `-p linux uptime`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux uptime` diff --git a/pages.da/osx/gusers.md b/pages.da/osx/gusers.md new file mode 100644 index 0000000000..9f89ded673 --- /dev/null +++ b/pages.da/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> Denne kommando er et alias af `-p linux users`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux users` diff --git a/pages.da/osx/gvdir.md b/pages.da/osx/gvdir.md new file mode 100644 index 0000000000..6ab8ab1347 --- /dev/null +++ b/pages.da/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> Denne kommando er et alias af `-p linux vdir`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux vdir` diff --git a/pages.da/osx/gwc.md b/pages.da/osx/gwc.md new file mode 100644 index 0000000000..cede85ba51 --- /dev/null +++ b/pages.da/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> Denne kommando er et alias af `-p linux wc`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux wc` diff --git a/pages.da/osx/gwhich.md b/pages.da/osx/gwhich.md new file mode 100644 index 0000000000..19264bf13d --- /dev/null +++ b/pages.da/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> Denne kommando er et alias af `-p linux which`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux which` diff --git a/pages.da/osx/gwho.md b/pages.da/osx/gwho.md new file mode 100644 index 0000000000..d82aac0e02 --- /dev/null +++ b/pages.da/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> Denne kommando er et alias af `-p linux who`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux who` diff --git a/pages.da/osx/gwhoami.md b/pages.da/osx/gwhoami.md new file mode 100644 index 0000000000..f6e0519b57 --- /dev/null +++ b/pages.da/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> Denne kommando er et alias af `-p linux whoami`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux whoami` diff --git a/pages.da/osx/gwhois.md b/pages.da/osx/gwhois.md new file mode 100644 index 0000000000..4498cb6d02 --- /dev/null +++ b/pages.da/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> Denne kommando er et alias af `-p linux whois`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux whois` diff --git a/pages.da/osx/gxargs.md b/pages.da/osx/gxargs.md new file mode 100644 index 0000000000..bd1aa067cf --- /dev/null +++ b/pages.da/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> Denne kommando er et alias af `-p linux xargs`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux xargs` diff --git a/pages.da/osx/gyes.md b/pages.da/osx/gyes.md new file mode 100644 index 0000000000..8d1296fbfc --- /dev/null +++ b/pages.da/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> Denne kommando er et alias af `-p linux yes`. + +- Se dokumentation for den oprindelige kommando: + +`tldr -p linux yes` diff --git a/pages.da/osx/launchd.md b/pages.da/osx/launchd.md new file mode 100644 index 0000000000..9c94427924 --- /dev/null +++ b/pages.da/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> Denne kommando er et alias af `launchctl`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr launchctl` diff --git a/pages.da/windows/chrome.md b/pages.da/windows/chrome.md new file mode 100644 index 0000000000..faca9d3841 --- /dev/null +++ b/pages.da/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> Denne kommando er et alias af `chromium`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr chromium` diff --git a/pages.da/windows/cinst.md b/pages.da/windows/cinst.md new file mode 100644 index 0000000000..f79b778dc9 --- /dev/null +++ b/pages.da/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> Denne kommando er et alias af `choco install`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr choco install` diff --git a/pages.da/windows/clist.md b/pages.da/windows/clist.md new file mode 100644 index 0000000000..177da0da8f --- /dev/null +++ b/pages.da/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> Denne kommando er et alias af `choco list`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr choco list` diff --git a/pages.da/windows/cpush.md b/pages.da/windows/cpush.md new file mode 100644 index 0000000000..ed31adeaff --- /dev/null +++ b/pages.da/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> Denne kommando er et alias af `choco-push`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr choco-push` diff --git a/pages.da/windows/cuninst.md b/pages.da/windows/cuninst.md new file mode 100644 index 0000000000..c353988ac3 --- /dev/null +++ b/pages.da/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> Denne kommando er et alias af `choco uninstall`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr choco uninstall` diff --git a/pages.da/windows/curl.md b/pages.da/windows/curl.md new file mode 100644 index 0000000000..8dc52b250c --- /dev/null +++ b/pages.da/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> Denne kommando er et alias af `curl -p common`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr curl -p common` diff --git a/pages.da/windows/iwr.md b/pages.da/windows/iwr.md new file mode 100644 index 0000000000..047c64bee0 --- /dev/null +++ b/pages.da/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> Denne kommando er et alias af `invoke-webrequest`. + +- Se dokumentation for den oprindelige kommando: + +`tldr invoke-webrequest` diff --git a/pages.da/windows/pwsh-where.md b/pages.da/windows/pwsh-where.md new file mode 100644 index 0000000000..632f598eeb --- /dev/null +++ b/pages.da/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> Denne kommando er et alias af `Where-Object`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr Where-Object` diff --git a/pages.da/windows/rd.md b/pages.da/windows/rd.md new file mode 100644 index 0000000000..fc52008bd3 --- /dev/null +++ b/pages.da/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> Denne kommando er et alias af `rmdir`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr rmdir` diff --git a/pages.da/windows/sls.md b/pages.da/windows/sls.md new file mode 100644 index 0000000000..9e91514fe1 --- /dev/null +++ b/pages.da/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> Denne kommando er et alias af `where-object`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr where-object` diff --git a/pages.da/windows/wget.md b/pages.da/windows/wget.md new file mode 100644 index 0000000000..b7d31ab883 --- /dev/null +++ b/pages.da/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> Denne kommando er et alias af `wget -p common`. +> Mere information: . + +- Se dokumentation for den oprindelige kommando: + +`tldr wget -p common` diff --git a/pages.de/android/bugreport.md b/pages.de/android/bugreport.md index 8269472943..02cb59ce97 100644 --- a/pages.de/android/bugreport.md +++ b/pages.de/android/bugreport.md @@ -2,7 +2,7 @@ > Zeige Android-Fehlerberichte. > Dieser Befehl kann nur mit `adb shell` verwendet werden. -> Weitere Informationen: . +> Weitere Informationen: . - Zeige einen vollständigen Fehlerbericht eines Androidgeräts an: diff --git a/pages.de/android/bugreportz.md b/pages.de/android/bugreportz.md index f3a76ea35c..5713054b05 100644 --- a/pages.de/android/bugreportz.md +++ b/pages.de/android/bugreportz.md @@ -2,7 +2,7 @@ > Generiere einen gezippten Android-Fehlerbericht. > Dieser Befehl kann nur mit `adb shell` verwendet werden. -> Weitere Informationen: . +> Weitere Informationen: . - Generiere einen vollständigen Fehlerbericht eines Androidgeräts: diff --git a/pages.de/android/cmd.md b/pages.de/android/cmd.md index 486dfa2a6d..7e3a16d7c8 100644 --- a/pages.de/android/cmd.md +++ b/pages.de/android/cmd.md @@ -1,7 +1,7 @@ # cmd > Androids Service-Manager. -> Weitere Informationen: . +> Weitere Informationen: . - Liste alle laufenden Services auf: diff --git a/pages.de/common/7z.md b/pages.de/common/7z.md index baf0e5bba7..7391a3dba9 100644 --- a/pages.de/common/7z.md +++ b/pages.de/common/7z.md @@ -1,7 +1,7 @@ # 7z > Ein Dateiarchivierer mit hoher Kompressionsrate. -> Weitere Informationen: . +> Weitere Informationen: . - [a]rchiviere eine Datei oder ein Verzeichnis: @@ -19,7 +19,7 @@ `7z x {{pfad/zu/archiv.7z}} -o{{pfad/zu/verzeichnis}}` -- E[x]trahiere ein Archiv nach stdout: +- E[x]trahiere ein Archiv nach `stdout`: `7z x {{pfad/zu/archiv.7z}} -so` diff --git a/pages.de/common/7za.md b/pages.de/common/7za.md index c2ae4817b5..7cc02e572f 100644 --- a/pages.de/common/7za.md +++ b/pages.de/common/7za.md @@ -2,7 +2,7 @@ > Ein Dateiarchivierer mit hoher Kompressionsrate. > Eine alleinstehende Version von `7z` mit Unterstützung für neuere Archivtypen. -> Weitere Informationen: . +> Weitere Informationen: . - [a]rchiviere eine Datei oder ein Verzeichnis: @@ -20,7 +20,7 @@ `7za x {{pfad/zu/archiv.7z}} -o{{pfad/zu/verzeichnis}}` -- E[x]trahiere ein Archiv nach stdout: +- E[x]trahiere ein Archiv nach `stdout`: `7za x {{pfad/zu/archiv.7z}} -so` diff --git a/pages.de/common/7zr.md b/pages.de/common/7zr.md index bf2f57536b..4ebb17446e 100644 --- a/pages.de/common/7zr.md +++ b/pages.de/common/7zr.md @@ -2,7 +2,7 @@ > Ein Dateiarchivierer mit hoher Kompressionsrate. > Eine alleinstehende Version von `7z`, die nur `.7z` Dateien unterstützt. -> Weitere Informationen: . +> Weitere Informationen: . - [a]rchiviere eine Datei oder ein Verzeichnis: @@ -10,7 +10,7 @@ - Verschlüssle ein vorhandenes Archiv (einschließlich Dateinamen): -`7zr a {{pfad/zu/verschlüsselt.7z}} -p{{passwort}} -mhe=on {{pfad/zu/archiv.7z}}` +`7zr a {{pfad/zu/verschlüsselt.7z}} -p{{passwort}} -mhe={{on}} {{pfad/zu/archiv.7z}}` - E[x]trahiere ein Archiv und behalte die originale Verzeichnisstruktur bei: @@ -20,7 +20,7 @@ `7zr x {{pfad/zu/archiv.7z}} -o{{pfad/zu/verzeichnis}}` -- E[x]trahiere ein Archiv nach stdout: +- E[x]trahiere ein Archiv nach `stdout`: `7zr x {{pfad/zu/archiv.7z}} -so` diff --git a/pages.de/common/adscript.md b/pages.de/common/adscript.md new file mode 100644 index 0000000000..7746d9b779 --- /dev/null +++ b/pages.de/common/adscript.md @@ -0,0 +1,20 @@ +# adscript + +> Compiler für Adscript Dateien. +> Weitere Informationen: . + +- Kompiliere eine Datei zu einer Objektdatei: + +`adscript --output {{pfad/zu/datei.o}} {{pfad/zu/quelldatei.adscript}}` + +- Kompiliere eine Datei zu einer ausführbaren Binärdatei: + +`adscript --executable --output {{pfad/zu/datei}} {{pfad/zu/quelldatei.adscript}}` + +- Kompiliere eine Datei zu LLVM IR anstelle von nativem Maschinencode: + +`adscript --llvm-ir --output {{pfad/zu/datei.ll}} {{pfad/zu/quelldatei.adscript}}` + +- Cross-kompiliere eine Datei zu einer Objektdatei für eine fremde CPU Architektur oder ein fremdes Betriebssystem: + +`adscript --target-triple {{i386-linux-elf}} --output {{pfad/zu/datei.o}} {{pfad/zu/quelldatei.adscript}}` diff --git a/pages.de/common/age.md b/pages.de/common/age.md index 4513630de1..87fd3417a2 100644 --- a/pages.de/common/age.md +++ b/pages.de/common/age.md @@ -7,7 +7,7 @@ `age --passphrase --output {{pfad/zu/verschlüsselter_datei}} {{pfad/zu/unverschlüsselter_datei}}` -- Generiere ein Schlüsselpaar, speichere dabei den privaten Schlüssel in einer unverschlüsselten Datei und gib den öffentlichen Schlüssel zu stdout aus: +- Generiere ein Schlüsselpaar, speichere dabei den privaten Schlüssel in einer unverschlüsselten Datei und gib den öffentlichen Schlüssel zu `stdout` aus: `age-keygen --output {{pfad/zu/datei}}` diff --git a/pages.de/common/aircrack-ng.md b/pages.de/common/aircrack-ng.md new file mode 100644 index 0000000000..3937fde761 --- /dev/null +++ b/pages.de/common/aircrack-ng.md @@ -0,0 +1,17 @@ +# aircrack-ng + +> WEP und WPA/WPA2 Schlüssel im Kommunikationsaufbau knacken. +> Teil des Aircrack-ng Softwarepakets. +> Weitere Informationen: . + +- Knacke Schlüssel von abgefangenen Paketen mithilfe von Wortlisten: + +`aircrack-ng -w {{pfad/zu/wortliste.txt}} {{pfad/zu/packetdatei.cap}}` + +- Knacke Schlüssel von abgefangenen Paketen mithilfe einer Wortliste und der (E)SSID des Access Points: + +`aircrack-ng -w {{pfad/zu/wortliste.txt}} -e {{essid}} {{pfad/zu/packetdatei.cap}}` + +- Knacke Schlüssel von abgefangenen Paketen mithilfe einer Wortliste und der MAC-Adresse des Access Points: + +`aircrack-ng -w {{pfad/zu/wortliste.txt}} --bssid {{mac}} {{pfad/zu/packetdatei.cap}}` diff --git a/pages.de/common/aireplay-ng.md b/pages.de/common/aireplay-ng.md new file mode 100644 index 0000000000..bc2338e181 --- /dev/null +++ b/pages.de/common/aireplay-ng.md @@ -0,0 +1,9 @@ +# aireplay-ng + +> Pakete in ein WLAN injizieren. +> Teil von `aircrack-ng`. +> Weitere Informationen: . + +- Sende eine bestimmten Anzahl an Dissoziation-Paketen mit der MAC-Adresse des Access Points, der MAC-Adresse des Clients und eines Interfaces: + +`sudo aireplay-ng --deauth {{anzahl}} --bssid {{ap_mac}} --dmac {{client_mac}} {{interface}}` diff --git a/pages.de/common/airmon-ng.md b/pages.de/common/airmon-ng.md new file mode 100644 index 0000000000..fd19d45381 --- /dev/null +++ b/pages.de/common/airmon-ng.md @@ -0,0 +1,21 @@ +# airmon-ng + +> Aktiveren des Überwachungsmodus auf Wireless Network Geräten. +> Teil von `aircrack-ng`. +> Weitere Informationen: . + +- Liste Wireless Geräte und deren Status auf: + +`sudo airmon-ng` + +- Aktiviere den Überwachungsmodus für ein bestimmtes Gerät: + +`sudo airmon-ng start {{wlan0}}` + +- Kille störende Prozesse, die das Wireless Gerät verwenden: + +`sudo airmon-ng check kill` + +- Deaktiviere den Überwachungsmodus für ein spezifisches Interface: + +`sudo airmon-ng stop {{wlan0mon}}` diff --git a/pages.de/common/airodump-ng.md b/pages.de/common/airodump-ng.md new file mode 100644 index 0000000000..d96df3c7f1 --- /dev/null +++ b/pages.de/common/airodump-ng.md @@ -0,0 +1,13 @@ +# airodump-ng + +> Erfasst Pakete und zeigt Informationen über drahtlose Netzwerke an. +> Teil von `aircrack-ng`. +> Weitere Informationen: . + +- Erfasse Pakete und zeige Informationen über ein drahtloses Netzwerk an: + +`sudo airodump-ng {{interface}}` + +- Erfasse Pakete und zeige Informationen über ein drahtloses Netzwerk anhand der MAC-Adresse und des Kanals an, und schreibe diese in eine Datei: + +`sudo airodump-ng --channel {{kanal}} --write {{pfad/zu/datei}} --bssid {{mac}} {{interface}}` diff --git a/pages.de/common/anki.md b/pages.de/common/anki.md new file mode 100644 index 0000000000..1bdaf09d65 --- /dev/null +++ b/pages.de/common/anki.md @@ -0,0 +1,20 @@ +# anki + +> Leistungsstarkes, intelligentes Lernkartenprogramm. +> Weitere Informationen: . + +- Starte `anki`: + +`anki` + +- Starte `anki` mit einem bestimmten Profil: + +`anki -p {{profil_name}}` + +- Starte `anki` in einer bestimmten Sprache: + +`anki -l {{sprache}}` + +- Starte `anki` von einem bestimmten Verzeichneis anstelle des Standardverzeichnis (`~/Anki`): + +`anki -b {{pfad/zu/verzeichnis}}` diff --git a/pages.de/common/ansiweather.md b/pages.de/common/ansiweather.md new file mode 100644 index 0000000000..46ce5d8e2a --- /dev/null +++ b/pages.de/common/ansiweather.md @@ -0,0 +1,16 @@ +# ansiweather + +> Ein Shell-Skript um die aktuellen Wetterbedingungen in einem Terminal anzuzeigen. +> Weitere Informationen: . + +- Zeige eine Vorhersage für die nächsten fünf Tage für Rzeszow, Polen in metrischen Einheiten an: + +`ansiweather -u {{metric}} -f {{5}} -l {{Rzeszow,PL}}` + +- Zeige eine Vorhersage mit Symbolen und Tageslichtdaten für den aktuellen Standort an: + +`ansiweather -s {{true}} -d {{true}}` + +- Zeige eine Vorhersage mit Wind- und Luftfeuchtigkeitsdaten für den aktuellen Standort an: + +`ansiweather -w {{true}} -h {{true}}` diff --git a/pages.de/common/arp-scan.md b/pages.de/common/arp-scan.md new file mode 100644 index 0000000000..7d1d6a8185 --- /dev/null +++ b/pages.de/common/arp-scan.md @@ -0,0 +1,20 @@ +# arp-scan + +> ARP Pakete an Host (spezifiert mit IP Adresse oder Hostname) senden um das lokale Netzwerk zu scannen. +> Weitere Informationen: . + +- Scanne das lokale Netzwerk: + +`arp-scan --localnet` + +- Scanne ein IP Netzwerk mit einer benutzerdefinierten Bitmaske: + +`arp-scan {{netzwerk_adresse}}/{{netzwerk_subnet}}` + +- Scanne ein IP Netzwerk innerhalb einer benutzerdefinierten Range: + +`arp-scan {{adresse_a}}-{{adresse_b}}` + +- Scanne ein IP Netzwerk mit einer benutzerdefinierten Netzmaske: + +`arp-scan {{adresse}}:{{netzwerkmaske}}` diff --git a/pages.de/common/arp.md b/pages.de/common/arp.md new file mode 100644 index 0000000000..2d7b3d5e38 --- /dev/null +++ b/pages.de/common/arp.md @@ -0,0 +1,20 @@ +# arp + +> Den ARP Cache des Systems anzeigen und manipulieren. +> Weitere Informationen: . + +- Zeige die aktuelle ARP Tabelle an: + +`arp -a` + +- Leere den gesamten Cache: + +`sudo arp -a -d` + +- Lösche einen spezifischen Eintrag in der Tabelle: + +`arp -d {{addresse}}` + +- Erstelle einen Eintrag in der ARP Tabelle: + +`arp -s {{adresse}} {{mac_adresse}}` diff --git a/pages.de/common/arping.md b/pages.de/common/arping.md new file mode 100644 index 0000000000..cde7096ef1 --- /dev/null +++ b/pages.de/common/arping.md @@ -0,0 +1,29 @@ +# arping + +> Mit dem ARP Protokoll Hosts in einem Netzwerk entdecken und untersuchen. +> Nützlich für die Entdeckung von MAC-Adressen. +> Weitere Informationen: . + +- Pinge einen Host mit ARP Request Paketen: + +`arping {{host_adresse}` + +- Pinge einen Host auf einem spezifizierten Interface: + +`arping -I {{interface}} {{host_adresse}}` + +- Pinge einen Host und höre nach der ersten Antwort auf: + +`arping -f {{host_adresse}}` + +- Pinge einen Host für eine bestimmte Anzahl: + +`arping -c {{anzahl}} {{host_adresse}}` + +- Broadcaste ARP Request Pakete um die ARP Caches der Nachbarn zu aktualisieren: + +`arping -U {{broadcast_adresse}}` + +- Sende ARP Requests mit einem 3 Sekunden Timeout um duplizierte IP-Adressen im Netzwerk zu erkennen: + +`arping -D -w {{3}} {{adresse_zum_checken}}` diff --git a/pages.de/common/aws-backup.md b/pages.de/common/aws-backup.md new file mode 100644 index 0000000000..c95296ad42 --- /dev/null +++ b/pages.de/common/aws-backup.md @@ -0,0 +1,24 @@ +# aws backup + +> Einheitliches Backup-Service zum Schutz der Amazon Web Services und der damit verbundenen Daten. +> Weitere Informationen: . + +- Gib Backup-Plan-Details für eine bestimmte Backup-Plan-ID aus: + +`aws backup get-backup-plan --backup-plan-id {{id}}` + +- Erstelle einen Backup-Plan unter Verwendung eines bestimmten Backup-Plan-Namens und von Backup-Regeln: + +`aws backup create-backup-plan --backup-plan {{plan}}` + +- Lösche einen bestimmten Backup-Plan: + +`aws backup delete-backup-plan --backup-plan-id {{id}}` + +- Gib eine Liste aller aktiven Backup-Pläne für das aktuelle Konto aus: + +`aws backup list-backup-plans` + +- Zeige Details über die Report-Aufträge an: + +`aws backup list-report-jobs` diff --git a/pages.de/common/aws-codecommit.md b/pages.de/common/aws-codecommit.md new file mode 100644 index 0000000000..5fb27d7f0f --- /dev/null +++ b/pages.de/common/aws-codecommit.md @@ -0,0 +1,12 @@ +# aws codecommit + +> AWS CodeCommit ist ein verwalteter Versionskontrolldienst, der private Git Repositories hostet. +> Weitere Informationen: . + +- Zeige Hilfe für einen bestimmten Befehl an: + +`aws codecommit {{befehl}} help` + +- Zeige Hilfe an: + +`aws codecommit help` diff --git a/pages.de/common/aws-cognito-idp.md b/pages.de/common/aws-cognito-idp.md new file mode 100644 index 0000000000..af7c4a0466 --- /dev/null +++ b/pages.de/common/aws-cognito-idp.md @@ -0,0 +1,28 @@ +# aws cognito-idp + +> Verwalten des Amazon Cognito-Benutzerpools, seiner Benutzer und Gruppen mit der CLI. +> Weitere Informationen: + +- Erstelle einen neuen Cognito-Benutzerpool: + +`aws cognito-idp create-user-pool --pool-name {{name}}` + +- Liste alle Bentzerpools auf: + +`aws cognito-idp list-user-pools --max-results {{10}}` + +- Lösche einen bestimmten Benutzerpool: + +`aws cognito-idp delete-user-pool --user-pool-id {{benutzerpool_id}}` + +- Erstelle einen Benutzer in einem bestimmten Pool: + +`aws cognito-idp admin-create-user --username {{benutzer}} --user-pool-id {{benutzerpool_id}}` + +- Liste die Benutzer eines bestimmten Pool auf: + +`aws cognito-idp list-users --user-pool-id {{benutzerpool_id}}` + +- Lösche einen Benutzer aus einem bestimmten Pool: + +`aws cognito-idp admin-delete-user --username {{benutzer}} --user-pool-id {{benutzerpool_id}}` diff --git a/pages.de/common/az-config.md b/pages.de/common/az-config.md index fc9fdc6f84..24db177fe9 100644 --- a/pages.de/common/az-config.md +++ b/pages.de/common/az-config.md @@ -1,7 +1,7 @@ # az config > Verwalten der Azure CLI-Konfiguration. -> Teil von `azure-cli`. +> Teil von `azure-cli` (auch bekannt als `az`). > Weitere Informationen: . - Rufe alle Konfigurationen ab: diff --git a/pages.de/common/az-login.md b/pages.de/common/az-login.md index 48d43e0d7d..9f042cb660 100644 --- a/pages.de/common/az-login.md +++ b/pages.de/common/az-login.md @@ -1,7 +1,7 @@ # az login > Melden Sie sich bei Azure an. -> Teil von `az`, der Befehlszeilenschnittstelle von Azure. +> Teil von `azure-cli` (auch bekannt als `az`). > Weitere Informationen: . - Melden Sie sich interaktiv an: @@ -10,7 +10,7 @@ - Melden Sie sich mit einem Dienstprinzipal mit dem geheimen Clientschlüssel an: -`az login --service-principal --username {{http://azure-cli-service-principal}} --passsword {{secret}} --tenant {{someone.onmicrosoft.com}}` +`az login --service-principal --username {{http://azure-cli-service-principal}} --password {{secret}} --tenant {{someone.onmicrosoft.com}}` - Melden Sie sich mit einem Dienstprinzipal mithilfe des Clientzertifikats an: diff --git a/pages.de/common/az-logout.md b/pages.de/common/az-logout.md index 9f30cf33da..a8bf97b03d 100644 --- a/pages.de/common/az-logout.md +++ b/pages.de/common/az-logout.md @@ -1,7 +1,7 @@ # az logout > Von Azure-Abonnements abmelden. -> Teil von `azure-cli`. +> Teil von `azure-cli` (auch bekannt als `az`). > Weitere Informationen: . - Melde das aktuelle aktive Konto ab: diff --git a/pages.de/common/babeld.md b/pages.de/common/babeld.md new file mode 100644 index 0000000000..c359ad2a1b --- /dev/null +++ b/pages.de/common/babeld.md @@ -0,0 +1,24 @@ +# babeld + +> Routing-Daemon für Babel, der Firewall-ähnliche Filter benutzt. +> Weitere Informationen: . + +- Starte `babeld` mit einer bestimmten Konfigurationsdatei: + +`babeld -c {{pfad/zu/babeld.conf}}` + +- Starte `babeld` mit mehreren Konfigurationsdateien (in der Reihenfolge des Einlesens): + +`babeld -c {{pfad/zu/ports.conf}} -c {{pfad/zu/filters.conf}} -c {{pfad/zu/interfaces.conf}}` + +- Starte `babeld` als Daemon: + +`babeld -D` + +- Starte `babeld` und übergib einen Konfigurationsbefehl: + +`babeld -C {{'redistribute metric 256'}}` + +- Starte `babeld` und gib an, auf welchen Schnittstellen gearbeitet werden soll: + +`babeld {{eth0}} {{eth1}} {{wlan0}}` diff --git a/pages.de/common/base64.md b/pages.de/common/base64.md index bdff8c8e23..7e6a1b3487 100644 --- a/pages.de/common/base64.md +++ b/pages.de/common/base64.md @@ -3,18 +3,18 @@ > Kodieren oder Dekodieren von Dateien oder Standardeingaben in/aus Base64, zur Standardausgabe. > Weitere Informationen: . -- Kodiere den Inhalt einer Datei als base64 und schreibe das Ergebnis nach stdout: +- Kodiere den Inhalt einer Datei als base64 und schreibe das Ergebnis nach `stdout`: `base64 {{datei_name}}` -- Dekodiere den Inhalt einer Datei als base64 und schreibe das Ergebnis nach stdout: +- Dekodiere den Inhalt einer Datei als base64 und schreibe das Ergebnis nach `stdout`: `base64 --decode {{datei_name}}` -- Kodiere von stdin: +- Kodiere von `stdin`: -`{{ein_kommando}} | base64` +`{{befehl}} | base64` -- Dekodiere von stdin: +- Dekodiere von `stdin`: -`{{ein_kommando}} | base64 --decode` +`{{befehl}} | base64 --decode` diff --git a/pages.de/common/bash.md b/pages.de/common/bash.md index b27de3dd23..cef1b5a454 100644 --- a/pages.de/common/bash.md +++ b/pages.de/common/bash.md @@ -24,7 +24,7 @@ `bash -e {{pfad/zu/datei.sh}}` -- Führe Befehle von stdin aus: +- Führe Befehle von `stdin` aus: `bash -s` diff --git a/pages.de/common/bat.md b/pages.de/common/bat.md index 17ad24053d..9988f3917c 100644 --- a/pages.de/common/bat.md +++ b/pages.de/common/bat.md @@ -4,7 +4,7 @@ > Ein `cat`-Ersatz mit Syntax-Hervorhebung und Git-Integration. > Weitere Informationen: . -- Gib den Inhalt einer Datei in stdout aus: +- Gib den Inhalt einer Datei in `stdout` aus: `bat {{pfad/zu/datei}}` diff --git a/pages.de/common/bgpgrep.md b/pages.de/common/bgpgrep.md new file mode 100644 index 0000000000..d26edfb248 --- /dev/null +++ b/pages.de/common/bgpgrep.md @@ -0,0 +1,29 @@ +# bgpgrep + +> Filtert und gibt BGP-Daten in einem MRT-Dump aus. +> Kann mit gzip, bzip2 und xz komprimierte Dateien lesen. +> Weitere Informationen: . + +- Gib alle Routen aus: + +`bgpgrep {{master6.mrt}}` + +- Gib alle von einem bestimmten Peer empfangenen Routen aus, bestimmt durch die AS-Nummer des Peers: + +`bgpgrep {{master4.mrt}} -peer {{64498}}` + +- Gib alle von einem bestimmten Peer empfangenen Routen aus, bestimmt durch die IP-Adresse des Peers: + +`bgpgrep {{master4.mrt.bz2}} -peer {{2001:db8:dead:cafe:acd::19e}}` + +- Gib alle Routen aus, die bestimmte ASNs in ihrem AS-Pfad haben: + +`bgpgrep {{master6.mrt.bz2}} -aspath '{{64498 64510}}'` + +- Gib Routen aus, die zu einer bestimmten Adresse führen: + +`bgpgrep {{master6.mrt.bz2}} -supernet '{{2001:db8:dead:cafe:aef::5}}'` + +- Gib alle Routen aus, die Communities von einem bestimmten AS haben: + +`bgpgrep {{master4.mrt}} -communities \( '{{64497}}:*' \)` diff --git a/pages.de/common/bird.md b/pages.de/common/bird.md new file mode 100644 index 0000000000..fd808b203f --- /dev/null +++ b/pages.de/common/bird.md @@ -0,0 +1,13 @@ +# bird + +> BIRD Internet Routing Daemon. +> Routing-Daemon mit Unterstützung für BGP, OSPF, Babel und weitere. +> Weitere Informationen: . + +- Starte `bird` mit einer bestimmten Konfigurationsdatei: + +`bird -c {{pfad/zu/bird.conf}}` + +- Starte `bird` als spezifischer Benutzer und Gruppe: + +`bird -u {{benutzername}} -g {{gruppe}}` diff --git a/pages.de/common/birdc.md b/pages.de/common/birdc.md new file mode 100644 index 0000000000..1e584f80eb --- /dev/null +++ b/pages.de/common/birdc.md @@ -0,0 +1,37 @@ +# birdc + +> Bird remote control. +> Kommandozeilenwerkzeug zum Abrufen von Informationen wie Routen von bird und zur Durchführung von Konfigurationen während der Laufzeit. +> Weitere Informationen: . + +- Öffne die remote control Konsole: + +`birdc` + +- Lade die Konfiguration neu, ohne Bird neu zu starten: + +`birdc configure` + +- Zeige den aktuellen Status von Bird an: + +`birdc show status` + +- Zeige alle konfigurierten Protokolle an: + +`birdc show protocols` + +- Zeige alle Details zu einem Protokoll an: + +`birdc show protocols {{upstream1}} all` + +- Zeige alle Routen an, die eine bestimmte AS-Nummer enthalten: + +`birdc "show route where bgp_path ~ [{{4242120045}}]"` + +- Zeige alle besten Routen an: + +`birdc show route primary` + +- Zeige alle Details zu allen Routen von einem bestimmten Präfix an: + +`birdc show route for {{fd00:/8}} all` diff --git a/pages.de/common/bundler.md b/pages.de/common/bundler.md new file mode 100644 index 0000000000..c1138a53eb --- /dev/null +++ b/pages.de/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> Dieser Befehl ist ein Alias von `bundle`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr bundle` diff --git a/pages.de/common/caddy.md b/pages.de/common/caddy.md new file mode 100644 index 0000000000..6c39e39570 --- /dev/null +++ b/pages.de/common/caddy.md @@ -0,0 +1,28 @@ +# caddy + +> Ein unternehmenstauglicher Open-Source-Webserver mit automatischem HTTPS, geschrieben in Go. +> Weitere Informationen: . + +- Starte Caddy im Vordergrund: + +`caddy run` + +- Starte Caddy mit dem angegebenen Caddyfile: + +`caddy run --config {{pfad/zu/Caddyfile}}` + +- Starte Caddy im Hintergrund: + +`caddy start` + +- Stoppe einen im Hintergrund laufenden Caddy-Prozess: + +`caddy stop` + +- Führe einen einfachen Dateiserver auf dem angegebenen Port mit einer durchsuchbaren Oberfläche aus: + +`caddy file-server --listen :{{8000}} --browse` + +- Führe einen Reverse-Proxy-Server aus: + +`caddy reverse-proxy --from :{{80}} --to localhost:{{8000}}` diff --git a/pages.de/common/cargo.md b/pages.de/common/cargo.md index 67d1b3543c..cd00fa825b 100644 --- a/pages.de/common/cargo.md +++ b/pages.de/common/cargo.md @@ -2,7 +2,7 @@ > Verwalte Rust-Projekte und deren Abhängigkeiten (crates). > Manche Unterbefehle wie `cargo build` sind separat dokumentiert. -> Weitere Informationen: . +> Weitere Informationen: . - Suche nach Abhängigkeiten (crates): diff --git a/pages.de/common/clamav.md b/pages.de/common/clamav.md new file mode 100644 index 0000000000..0dd4452856 --- /dev/null +++ b/pages.de/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> Dieser Befehl ist ein Alias von `clamdscan`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr clamdscan` diff --git a/pages.de/common/clang++.md b/pages.de/common/clang++.md new file mode 100755 index 0000000000..83357ca89b --- /dev/null +++ b/pages.de/common/clang++.md @@ -0,0 +1,25 @@ +# clang++ + +> Kompiliert C++ Quelldateien. +> Teil von LLVM. +> Weitere Informationen: . + +- Kompiliere eine Quelldatei in eine ausführbare Binärdatei: + +`clang++ {{pfad/zu/quelldatei.cpp}} -o {{pfad/zu/binärdatei}}` + +- Zeige geläufige Fehler und Warnungen an: + +`clang++ {{pfad/zu/quelldatei.cpp}} -Wall -o {{pfad/zu/binärdatei}}` + +- Wähle einen Sprachstandard für die Kompilation aus: + +`clang++ {{pfad/zu/quelldatei.cpp}} -std={{c++20}} -o {{pfad/zu/binärdatei}}` + +- Binde Bibliotheken, die sich an einem anderen Pfad als die Quelldatei befinden, ein: + +`clang++ {{pfad/zu/qelldatei.cpp}} -o {{pfad/zu/binärdatei}} -I{{pfad/zu/headerdatei}} -L{{pfad/zu/bibliothek}} -l{{bibliotheksname}}` + +- Kompiliere eine Quelldatei zu LLVM Intermediate Representation (IR): + +`clang++ -S -emit-llvm {{pfad/zu/quelldatei.cpp}} -o {{pfad/zu/ir_datei.ll}}` diff --git a/pages.de/common/clang-format.md b/pages.de/common/clang-format.md new file mode 100755 index 0000000000..b55da3e9db --- /dev/null +++ b/pages.de/common/clang-format.md @@ -0,0 +1,24 @@ +# clang-format + +> Programm zum Auto-Formatieren von C/C++/Java/JavaScript/Objective-C/Protobuf/C#-Code. +> Weitere Informationen: . + +- Formatiere eine Datei und schreibe das Ergebnis nach `stdout`: + +`clang-format {{pfad/zu/quelldatei.cpp}}` + +- Überschreibe eine Datei mit ihrem formatierten Inhalt: + +`clang-format -i {{pfad/zu/quelldatei.cpp}}` + +- Formatiere eine Datei mit einem bestimmten Code-Stil: + +`clang-format --style={{LLVM|GNU|Google|Chromium|Microsoft|Mozilla|WebKit}} {{pfad/zu/quelldatei.cpp}}` + +- Formatiere eine Datei mit der `.clang-format`-Datei aus einem der Überverzeichnisse der Quelldatei: + +`clang-format --style=file {{pfad/zu/quelldatei.cpp}}` + +- Generiere eine eigene `.clang-format`-Datei: + +`clang-format --style={{LLVM|GNU|Google|Chromium|Microsoft|Mozilla|WebKit}} --dump-config > {{.clang-format}}` diff --git a/pages.de/common/clang-tidy.md b/pages.de/common/clang-tidy.md new file mode 100755 index 0000000000..331fdf37d3 --- /dev/null +++ b/pages.de/common/clang-tidy.md @@ -0,0 +1,20 @@ +# clang-tidy + +> Ein LLVM-basierter C/C++ Linter zum Finden von Stilverletzungen, Bugs und Sicherheitsmängeln durch statische Codeanalyse. +> Weitere Information: . + +- Führe die Standard-Checks für eine Quelldatei aus: + +`clang-tidy {{pfad/zu/quelldatei.cpp}}` + +- Prüfe nur ob eine Datei den `cppcoreguidelines` Checks entspricht: + +`clang-tidy {{pfad/zu/quelldatei.cpp}} -checks={{-*,cppcoreguidelines-*}}` + +- Liste alle verfügbaren Checks auf: + +`clang-tidy -checks={{*}} -list-checks` + +- Lege defines und includes als Kompilierungsoptionen fest (nach `--`): + +`clang-tidy {{pfad/zu/quelldatei.cpp}} -- -I{{mein_projekt/include}} -D{{definitions}}` diff --git a/pages.de/common/clang.md b/pages.de/common/clang.md new file mode 100755 index 0000000000..6e002eed50 --- /dev/null +++ b/pages.de/common/clang.md @@ -0,0 +1,24 @@ +# clang + +> Compiler für C, C++ und Objective-C Quelldateien. Kann als Ersatz für GCC genutzt werden. +> Weitere Informationen: . + +- Kompiliere eine Quelldatei in eine ausführbare Binärdatei: + +`clang {{pfad/zu/quelldatei.c}} -o {{pfad/zu/binärdatei}}` + +- Zeige geläufige Fehler und Warnungen an: + +`clang {{pfad/zu/quelldatei.c}} -Wall -o {{pfad/zu/binärdatei}}` + +- Binde Bibliotheken, die sich an einem anderen Pfad als die Quelldatei befinden, ein: + +`clang {{pfad/zu/quelldatei.c}} -o {{pfad/zu/binärdatei}} -I{{pfad/zu/headerdatei}} -L{{pfad/zu/bibliothek}} -l{{bibliotheks_name}}` + +- Kompiliere eine Quelldatei zu LLVM Intermediate Representation (IR): + +`clang -S -emit-llvm {{pfad/zu/quelldatei.c}} -o {{pfad/zu/ir_datei.ll}}` + +- Kompiliere eine Quelldatei, ohne zu Linken: + +`clang -c {{pfad/zu/quelldatei.c}}` diff --git a/pages.de/common/cron.md b/pages.de/common/cron.md new file mode 100644 index 0000000000..7ad51360bb --- /dev/null +++ b/pages.de/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> Dieser Befehl ist ein Alias von `crontab`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr crontab` diff --git a/pages.de/common/cut.md b/pages.de/common/cut.md index aba577302d..e0c9d46c36 100644 --- a/pages.de/common/cut.md +++ b/pages.de/common/cut.md @@ -1,6 +1,6 @@ # cut -> Schneide Felder von stdin oder einer Datei aus. +> Schneide Felder von `stdin` oder einer Datei aus. > Weitere Informationen: . - Schneide bestimmte Zeichen oder einen Feldbereich jeder Zeile aus: diff --git a/pages.de/common/docker-login.md b/pages.de/common/docker-login.md index f3fa2b3b14..9fcd494cf8 100644 --- a/pages.de/common/docker-login.md +++ b/pages.de/common/docker-login.md @@ -15,6 +15,6 @@ `docker login --username {{benutzername}} --password {{passwort}} {{server}}` -- Einloggen mit einem Passwort, welches von stdin gelesen wird: +- Einloggen mit einem Passwort, welches von `stdin` gelesen wird: `echo "{{passwort}}" | docker login --username {{benutzername}} --password-stdin` diff --git a/pages.de/common/docker-start.md b/pages.de/common/docker-start.md index eec458f2c3..90c9d096bc 100644 --- a/pages.de/common/docker-start.md +++ b/pages.de/common/docker-start.md @@ -17,4 +17,4 @@ - Starte einen oder mehrere durch Leerzeichen getrennte Container: -`docker start {{container}}` +`docker start {{container1 container2 ...}}` diff --git a/pages.de/common/emacsclient.md b/pages.de/common/emacsclient.md index 9de15481e3..53314dc67d 100644 --- a/pages.de/common/emacsclient.md +++ b/pages.de/common/emacsclient.md @@ -16,7 +16,7 @@ `emacsclient --create-frame {{pfad/zu/datei}}` -- Führe einen Befehl aus und schreibe das Ergebnis in stdout: +- Führe einen Befehl aus und schreibe das Ergebnis in `stdout`: `emacsclient --eval '({{befehl}})'` diff --git a/pages.de/common/eslint.md b/pages.de/common/eslint.md new file mode 100644 index 0000000000..def33cbcd5 --- /dev/null +++ b/pages.de/common/eslint.md @@ -0,0 +1,20 @@ +# eslint + +> Ein erweiterbarer Linter für JavaScript und JSX. +> Weitere Informationen: . + +- Erstelle eine ESLint-Konfigurationsdatei: + +`eslint --init` + +- Linte Dateien: + +`eslint {{pfad/zu/datei1.js pfad/zu/datei2.js ...}}` + +- Behebe Lintingfehler: + +`eslint --fix` + +- Linte mit einer Konfigurationsdatei: + +`eslint -c {{pfad/zu/konfigurationsdatei}} {{pfad/zu/datei1.js pfad/zu/datei2.js ...}` diff --git a/pages.de/common/fastd.md b/pages.de/common/fastd.md new file mode 100644 index 0000000000..e51830a260 --- /dev/null +++ b/pages.de/common/fastd.md @@ -0,0 +1,29 @@ +# fastd + +> VPN daemon. +> Arbeitet auf Schicht 2 oder Schicht 3, unterstützt verschiedene Verschlüsselungsmethoden, wird von Freifunk verwendet. +> Weitere Informationen: . + +- Starte `fastd` mit einer bestimmten Konfigurationsdatei: + +`fastd --config {{pfad/zu/fastd.conf}}` + +- Starte einen Schicht-3-VPN mit einer MTU von 1400 und lade den Rest der Konfigurationsparameter aus einer Datei: + +`fastd --mode {{tap}} --mtu {{1400}} --config {{pfad/zu/fastd.conf}}` + +- Validiere eine Konfigurationsdatei: + +`fastd --verify-config --config {{pfad/zu/fastd.conf}}` + +- Generiere einen neuen Schlüssel: + +`fastd --generate-key` + +- Zeige den öffentlichen Schlüssel zu einem privaten Schlüssel in einer Konfigurationsdatei an: + +`fastd --show-key --config {{pfad/zu/fastd.conf}}` + +- Zeige die aktuelle Version an: + +`fastd -v` diff --git a/pages.de/common/fossil-ci.md b/pages.de/common/fossil-ci.md new file mode 100644 index 0000000000..819c7ff7c9 --- /dev/null +++ b/pages.de/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> Dieser Befehl ist ein Alias von `fossil-commit`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr fossil-commit` diff --git a/pages.de/common/fossil-delete.md b/pages.de/common/fossil-delete.md new file mode 100644 index 0000000000..d980843b6b --- /dev/null +++ b/pages.de/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> Dieser Befehl ist ein Alias von `fossil rm`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr fossil rm` diff --git a/pages.de/common/fossil-forget.md b/pages.de/common/fossil-forget.md new file mode 100644 index 0000000000..373524f242 --- /dev/null +++ b/pages.de/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> Dieser Befehl ist ein Alias von `fossil rm`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr fossil rm` diff --git a/pages.de/common/fossil-new.md b/pages.de/common/fossil-new.md new file mode 100644 index 0000000000..646c299635 --- /dev/null +++ b/pages.de/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> Dieser Befehl ist ein Alias von `fossil-init`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr fossil-init` diff --git a/pages.de/common/gcloud.md b/pages.de/common/gcloud.md new file mode 100644 index 0000000000..758464a947 --- /dev/null +++ b/pages.de/common/gcloud.md @@ -0,0 +1,36 @@ +# gcloud + +> Das offizielle CLI-Tool für die Google Cloud Platform. +> Weitere Informationen: https://cloud.google.com/sdk/gcloud. + +- Liste alle Eigenschaften der aktiven Konfiguration auf: + +`gcloud config list` + +- Mit einem Google-Konto anmelden: + +`gcloud auth login` + +- Lege das aktive Projekt fest: + +`gcloud config set project {{Projektname}}` + +- Stelle eine SSH-Verbindung zu einer virtuellen Maschineninstanz her: + +`gcloud compute ssh {{Benutzer}}@{{Instanz}}` + +- Zeige alle Google Compute Engine-Instanzen in einem Projekt an. Standardmäßig werden Instanzen aus allen Zonen aufgelistet: + +`gcloud compute instances list` + +- Aktualisiere eine kubeconfig-Datei mit den entsprechenden Anmeldeinformationen, um kubectl auf einen bestimmten Cluster in Google Kubernetes Engine auszurichten: + +`gcloud container clusters get-credentials {{Clustername}}` + +- Aktualisiere alle gcloud CLI-Komponenten: + +`gcloud components update` + +- Zeige Hilfe für einen bestimmten Befehl an: + +`gcloud help {{Befehl}}` diff --git a/pages.de/common/gh-cs.md b/pages.de/common/gh-cs.md new file mode 100644 index 0000000000..4c3ca374fc --- /dev/null +++ b/pages.de/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> Dieser Befehl ist ein Alias von `gh-codespace`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr gh-codespace` diff --git a/pages.de/common/git-config.md b/pages.de/common/git-config.md new file mode 100644 index 0000000000..8697b29681 --- /dev/null +++ b/pages.de/common/git-config.md @@ -0,0 +1,37 @@ +# git config + +> Verwalten von benutzerdefinierten Optionen für Git Repositories. +> Diese Optionen können lokal (für das aktiven Repository) or global (für den aktiven Benutzer) sein. +> Weitere Informationen: . + +- Liste nur lokale Konfigurationseinträge (gespeichert unter `.git/config` im aktiven Repository) auf: + +`git config --list --local` + +- Liste nur globale Konfigurationseinträge (gespeichert unter `~/.gitconfig`) auf: + +`git config --list --global` + +- Liste nur System-Konfigurationseinträge (gespeichert unter `/etc/gitconfig`) und deren Speicherort auf: + +`git config --list --system --show-origin` + +- Gib den Wert eines bestimmten Konfigurationseintrags aus: + +`git config alias.unstage` + +- Setze den globalen Wert eines bestimmten Konfigurationseintrags: + +`git config --global alias.unstage "reset HEAD --"` + +- Setze den globalen Wert eines bestimmten Konfigurationseintrags auf seinen Standardwert zurück: + +`git config --global --unset alias.unstage` + +- Bearbeite die Git-Konfiguration für das aktuelle Repository mit dem Standard-Editor: + +`git config --edit` + +- Bearbeite die globale Git-Konfiguration mit dem Standard-Editor: + +`git config --global --edit` diff --git a/pages.de/common/git-setup.md b/pages.de/common/git-setup.md new file mode 100644 index 0000000000..0c71841a8a --- /dev/null +++ b/pages.de/common/git-setup.md @@ -0,0 +1,13 @@ +# git setup + +> Erstelle ein Git Repository in einem bestimmten Verzeichnis und committe alle Dateien. +> Teil der `git-extras`. +> Weitere Informationen: . + +- Erstelle ein Git Repository im aktuellen Verzeichnis und committe alle Dateien: + +`git setup` + +- Erstelle ein Git Repository in einem bestimmten Verzeichnis und committe alle Dateien: + +`git setup {{pfad/zu/verzeichnis}}` diff --git a/pages.de/common/git-show-merged-branches.md b/pages.de/common/git-show-merged-branches.md new file mode 100644 index 0000000000..32cc78a85d --- /dev/null +++ b/pages.de/common/git-show-merged-branches.md @@ -0,0 +1,8 @@ +# git show-merged-branches + +> Gibt alle Branches aus, welche bereits in die aktuelle HEAD-Datei gemerget wurden. +> Weitere Informationen: . + +- Gib alle Branches aus, die bereits in die aktuelle HEAD-Datei gemerget wurden: + +`git show-merged-branches` diff --git a/pages.de/common/git-show-unmerged-branches.md b/pages.de/common/git-show-unmerged-branches.md new file mode 100644 index 0000000000..e18ececf99 --- /dev/null +++ b/pages.de/common/git-show-unmerged-branches.md @@ -0,0 +1,8 @@ +# git show-unmerged-branches + +> Gibt alle Branches aus, welche noch nicht in die aktuelle HEAD-Datei gemerged wurden. +> Weitere Informationen: . + +- Gib alle Branches aus, die noch nicht in die aktuelle HEAD-Datei gemerged wurden: + +`git show-unmerged-branches` diff --git a/pages.de/common/gnmic-sub.md b/pages.de/common/gnmic-sub.md new file mode 100644 index 0000000000..5320b28929 --- /dev/null +++ b/pages.de/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> Dieser Befehl ist ein Alias von `gnmic subscribe`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr gnmic subscribe` diff --git a/pages.de/common/google-chrome.md b/pages.de/common/google-chrome.md new file mode 100644 index 0000000000..5e2413ad36 --- /dev/null +++ b/pages.de/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> Dieser Befehl ist ein Alias von `chromium`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr chromium` diff --git a/pages.de/common/gpg.md b/pages.de/common/gpg.md index d7e9efad1b..dd4f26ed68 100644 --- a/pages.de/common/gpg.md +++ b/pages.de/common/gpg.md @@ -20,7 +20,7 @@ `gpg --symmetric {{doc.txt}}` -- Entschlüssle `doc.txt.gpg` (Ausgabe nach stdout): +- Entschlüssle `doc.txt.gpg` (Ausgabe nach `stdout`): `gpg --decrypt {{doc.txt.gpg}}` @@ -28,10 +28,10 @@ `gpg --import {{schlüssel.gpg}}` -- Exportiere den öffentlichen Schlüssel von alice@beispiel.de (Ausgabe nach stdout): +- Exportiere den öffentlichen Schlüssel von alice@beispiel.de (Ausgabe nach `stdout`): `gpg --export --armor {{alice@beispiel.de}}` -- Exportiere den privaten Schlüssel von alice@beispiel.de (Ausgabe nach stdout): +- Exportiere den privaten Schlüssel von alice@beispiel.de (Ausgabe nach `stdout`): `gpg --export-secret-keys --armor {{alice@beispiel.de}}` diff --git a/pages.de/common/httpie.md b/pages.de/common/httpie.md new file mode 100644 index 0000000000..0ba62cccc1 --- /dev/null +++ b/pages.de/common/httpie.md @@ -0,0 +1,36 @@ +# HTTPie + +> Ein benutzerfreundliches HTTP-Tool. +> Weitere Informationen: . + +- Sende eine GET-Anfrage (Standardmethode ohne Anfragedaten): + +`http {{https://example.com}}` + +- Sende eine POST-Anfrage (Standardmethode mit Anfragedaten): + +`http {{https://example.com}} {{hello=World}}` + +- Sende eine POST-Anfrage mit einer Datei als Eingabe: + +`http {{https://example.com}} < {{file.json}}` + +- Sende eine PUT-Anfrage mit einem bestimmten JSON-Body: + +`http PUT {{https://example.com/todos/7}} {{hello=world}}` + +- Sende eine DELETE-Anfrage mit einem bestimmten Anfrage-Header: + +`http DELETE {{https://example.com/todos/7}} {{API-Key:foo}}` + +- Zeige den gesamten HTTP-Austausch (sowohl Anfrage als auch Antwort): + +`http -v {{https://example.com}}` + +- Lade eine Datei herunter: + +`http --download {{https://example.com}}` + +- Folge Umleitungen und zeige Zwischenanfragen und -antworten: + +`http --follow --all {{https://example.com}}` diff --git a/pages.de/common/hx.md b/pages.de/common/hx.md new file mode 100644 index 0000000000..8cf139af91 --- /dev/null +++ b/pages.de/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> Dieser Befehl ist ein Alias von `helix`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr helix` diff --git a/pages.de/common/k6.md b/pages.de/common/k6.md new file mode 100644 index 0000000000..812c6c2b54 --- /dev/null +++ b/pages.de/common/k6.md @@ -0,0 +1,36 @@ +# k6 + +> Open-Source Tool und SaaS für Lasttests. +> Weitere Informationen: . + +- Führe einen Lasttest lokal aus: + +`k6 run {{skript.js}}` + +- Führe einen Lasttest lokal mit einer festgelegten Anzahl von virtuellen Benutzern und Dauer aus: + +`k6 run --vus {{10}} --duration {{30s}} {{skript.js}}` + +- Führe einen Lasttest lokal mit einer gesetzten Umgebungsvariablen aus: + +`k6 run -e {{HOSTNAME}}={{beispiel.com}} {{skript.js}}` + +- Führe einen Lasttest lokal aus und speichere die Ergebnisse in InfluxDB: + +`k6 run --out influxdb={{http://localhost:8086/k6db}} {{skript.js}}` + +- Führe einen Lasttest lokal aus und verwerfe Antworten (deutlich schneller): + +`k6 run --discard-response-bodies {{skript.js}}` + +- Führe einen Lasttest lokal im JavaScript-Kompatibilitätsmodus aus (deutlich schneller): + +`k6 run --compatibility-mode=base {{skript.js}}` + +- Melde dich bei einem Cloud-Dienst mit einem geheimen Token an: + +`k6 login cloud --token {{geheim}}` + +- Führe einen Lasttest auf Cloud-Infrastruktur aus: + +`k6 cloud {{skript.js}}` diff --git a/pages.de/common/kafkacat.md b/pages.de/common/kafkacat.md new file mode 100644 index 0000000000..452cf98ceb --- /dev/null +++ b/pages.de/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> Dieser Befehl ist ein Alias von `kcat`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr kcat` diff --git a/pages.de/common/khal.md b/pages.de/common/khal.md new file mode 100644 index 0000000000..4b29e51759 --- /dev/null +++ b/pages.de/common/khal.md @@ -0,0 +1,24 @@ +# khal + +> Eine textbasierte Kalender- und Planungsanwendung für die Kommandozeile. +> Weitere Informationen: . + +- Starte khal im interaktiven Modus: + +`ikhal` + +- Gib alle Termine aus, die im Kalender "privat" in den nächsten sieben Tagen geplant sind: + +`khal list -a {{privat}} {{today}} {{7d}}` + +- Gib alle Termine aus, die in Kalendern außer "privat" für morgen um 10 Uhr geplant sind: + +`khal at -d {{privat}} {{tomorrow}} {{10:00}}` + +- Gib einen Kalender mit einer Liste an Terminen für die nächsten drei Monate aus: + +`khal calendar` + +- Füge dem Kalender "privat" einen neuen Termin hinzu: + +`khal new -a {{privat}} {{2020-09-08}} {{18:00}} {{18:30}} "{{Zahnarzttermin}}"` diff --git a/pages.de/common/kitty.md b/pages.de/common/kitty.md new file mode 100644 index 0000000000..02dd2cc544 --- /dev/null +++ b/pages.de/common/kitty.md @@ -0,0 +1,24 @@ +# kitty + +> Ein schneller, funktionsreicher, auf der GPU basierender Terminal-Emulator. +> Weitere Informationen: . + +- Öffne ein neues Terminal: + +`kitty` + +- Öffne ein Terminal mit einem festgelegten Titel für das Fenster: + +`kitty --title "{{Titel}}"` + +- Starte die integrierte Farbschema-Auswahl: + +`kitty +kitten themes` + +- Zeige ein Bild im Terminal an: + +`kitty +kitten icat {{pfad/zum/bild}}` + +- Kopiere den Inhalt von `stdin` in die Zwischenablage: + +`echo {{Beispiel}} | kitty +kitten clipboard` diff --git a/pages.de/common/kubectl-delete.md b/pages.de/common/kubectl-delete.md new file mode 100644 index 0000000000..5f9105e077 --- /dev/null +++ b/pages.de/common/kubectl-delete.md @@ -0,0 +1,32 @@ +# kubectl delete + +> Lösche Kubernetes-Ressourcen. +> Weitere Informationen: . + +- Lösche einen bestimmten Pod: + +`kubectl delete pod {{pod_name}}` + +- Lösche ein bestimmtes Deployment: + +`kubectl delete deployment {{deployment_name}}` + +- Lösche eine bestimmte Node: + +`kubectl delete node {{node_name}}` + +- Lösche alle Pods in einem bestimmten Namespaces: + +`kubectl delete pods --all --namespace {{namespace}}` + +- Lösche alle Deployments und Services in einem bestimmten Namespace: + +`kubectl delete deployments,services --all --namespace {{namespace}}` + +- Lösche alle Nodes: + +`kubectl delete nodes --all` + +- Lösche Resourcen, die in einer YAML Datei definiert sind: + +`kubectl delete --filename {{pfad/zu/manifest.yaml}}` diff --git a/pages.de/common/kubectl-describe.md b/pages.de/common/kubectl-describe.md new file mode 100644 index 0000000000..bea8d85f51 --- /dev/null +++ b/pages.de/common/kubectl-describe.md @@ -0,0 +1,24 @@ +# kubectl describe + +> Details von Kubernetes-Objekten und -Ressourcen anzeigen. +> Weitere Informationen: . + +- Zeige Details zu Pods in einem bestimmten Namespace an: + +`kubectl describe pods --namespace="{{namespace}}"` + +- Zeige Details zu Nodes in einem bestimmten Namespace an: + +`kubectl describe nodes --namespace="{{namespace}}"` + +- Zeige Details zu einem bestimmten Pod in einem bestimmten Namespace an: + +`kubectl describe pods {{pod_name}} --namespace="{{namespace}}"` + +- Zeige Details zu einer bestimmten Node in einem bestimmten Namespace an: + +`kubectl describe nodes {{node_name}} --namespace="{{namespace}}"` + +- Zeige Details zu Ressourcen, die in einer YAML Datei definiert sind, an: + +`kubectl describe --filename={{pfad/zu/manifest.yaml}}` diff --git a/pages.de/common/kubectl-get.md b/pages.de/common/kubectl-get.md new file mode 100644 index 0000000000..1be739ae7d --- /dev/null +++ b/pages.de/common/kubectl-get.md @@ -0,0 +1,32 @@ +# kubectl get + +> Abfragen von Kubernetes Resourcen und Objekten. +> Weitere Informationen: . + +- Zeige alle Namespaces im Cluster an: + +`kubectl get namespaces` + +- Frage alle Nodes in einem bestimmten Namespace ab: + +`kubectl get nodes --namespace {{namespace}}` + +- Frage alle Pods in einem bestimmten Namespace ab: + +`kubectl get pods --namespace {{namespace}}` + +- Frage alle Deployments in einem bestimmten Namespace ab: + +`kubectl get deployments --namespace {{namespace}}` + +- Frage alle Services in einem bestimmten Namespace ab: + +`kubectl get services --namespace {{namespace}}` + +- Frage alle Resourcen in einem bestimmten Namespace ab: + +`kubectl get all --namespace {{namespace}}` + +- Frage alle Ressourcen ab, die in einer YAML Datei definiert sind: + +`kubectl get -f {{pfad/zu/manifest.yaml}}` diff --git a/pages.de/common/kubectl-logs.md b/pages.de/common/kubectl-logs.md new file mode 100644 index 0000000000..08a1a5bae2 --- /dev/null +++ b/pages.de/common/kubectl-logs.md @@ -0,0 +1,32 @@ +# kubectl logs + +> Logs für Container in einem Pod anzeigen. +> Weitere Informationen: . + +- Zeige Logs für einen Einzelcontainer-Pod an: + +`kubectl logs {{pod_name}}` + +- Zeige Logs für einen bestimmten Container in einem Pod an: + +`kubectl logs --container {{container_name}} {{pod_name}}` + +- Zeige Logs für alle Container in einem Pod an: + +`kubectl logs --all-containers={{true}} {{pod_name}}` + +- Folge den Pod-Logs (stream): + +`kubectl logs --follow {{pod_name}}` + +- Folge den Pod-Logs (stream) für einen bestimmten Container in einem Pod: + +`kubectl logs --follow --container {{container_name}} {{pod_name}}` + +- Zeige Pod-Logs die neuer einer relativen Zeit sind `10s`, `5m`, or `1h`: + +`kubectl logs --since={{relative_time}} {{pod_name}}` + +- Zeige die 10 neuesten Logzeilen in einem Pod: + +`kubectl logs --tail={{10}} {{pod_name}}` diff --git a/pages.de/common/kubectl-rollout.md b/pages.de/common/kubectl-rollout.md new file mode 100644 index 0000000000..af86d24f5c --- /dev/null +++ b/pages.de/common/kubectl-rollout.md @@ -0,0 +1,20 @@ +# kubectl rollout + +> Verwalten des Rollouts einer Kubernetes-Ressource (deployments, daemonsets, and statefulsets). +> Weitere Informationen: . + +- Starte einen rollenden Neustart einer Ressource: + +`kubectl rollout restart {{resource_type}}/{{resource_name}}` + +- Überwache den fortlaufenden Aktualisierungsstatus einer Ressource: + +`kubectl rollout status {{resource_type}}/{{resource_name}}` + +- Setze eine Ressource auf die vorherige Version zurück: + +`kubectl rollout undo {{resource_type}}/{{resource_name}}` + +- Zeige den Rollout-Verlauf einer Ressource an: + +`kubectl rollout history {{resource_type}}/{{resource_name}}` diff --git a/pages.de/common/kubectl-run.md b/pages.de/common/kubectl-run.md new file mode 100644 index 0000000000..dff2a690c9 --- /dev/null +++ b/pages.de/common/kubectl-run.md @@ -0,0 +1,24 @@ +# kubectl run + +> Pods in Kubernetes ausführen. Gibt den Pod-Generator an, um einen deprecation Fehler in einigen Kubernetes Versionen zu vermeiden. +> Weitere Informationen: . + +- Starte einen nginx-Pod und gib Port 80 frei: + +`kubectl run --generator=run-pod/v1 nginx --image=nginx --port 80` + +- Starte einen nginx-Pod und setze die Umgebungsvariable TEST_VAR: + +`kubectl run --generator=run-pod/v1 nginx --image=nginx --env="TEST_VAR=testing"` + +- Zeige API-Aufrufe an, die zur Erstellung eines Nginx-Containers erfolgen würden: + +`kubectl run --generator=run-pod/v1 nginx --image=nginx --dry-run` + +- Führe einen Ubuntu-Pod interaktiv aus, starte ihn nie neu und entferne ihn, wenn er beendet wird: + +`kubectl run --generator=run-pod/v1 -it temp-ubuntu --image=ubuntu:20.04 --restart=Never --rm -- /bin/bash` + +- Führe einen Ubuntu-Pod aus, überschreibe den Standardbefehl mit echo und gib eigene Argumente an: + +`kubectl run --generator=run-pod/v1 temp-ubuntu --image=ubuntu:20.04 --command -- echo {{argument1 argument2 ...}}` diff --git a/pages.de/common/kubectl.md b/pages.de/common/kubectl.md new file mode 100644 index 0000000000..6cba8f3e04 --- /dev/null +++ b/pages.de/common/kubectl.md @@ -0,0 +1,37 @@ +# kubectl + +> Befehlszeilenschnittstelle zur Ausführung von Befehlen gegen Kubernetes-Cluster. +> Einige Unterbefehle wie `kubectl run` haben ihre eigene Dokumentation zur Verwendung. +> Weitere Informationen: . + +- Liste Informationen über eine Ressource mit weiteren Details auf: + +`kubectl get {{pod|service|deployment|ingress|...}} --output wide` + +- Aktualisiere die angegebenen Pods mit dem Label 'unhealthy' und dem Wert 'true': + +`kubectl label pods {{name}} unhealthy=true` + +- Liste alle Ressourcen aller Typen auf: + +`kubectl get all` + +- Zeige die Ressourcennutzung (CPU/Memory/Storage) von Knoten oder Pods: + +`kubectl top {{pod|node}}` + +- Zeige die Adresse der Master- und Clusterdienste: + +`kubectl cluster-info` + +- Zeige eine Erklärung zu einem bestimmten Feld an: + +`kubectl explain {{pods.spec.containers}}` + +- Zeige Logs für einen Container in einem Pod oder einer bestimmten Ressource: + +`kubectl logs {{pod_name}}` + +- Führe einen Befehl in einem bestehenden Pod aus: + +`kubectl exec {{pod_name}} -- {{ls /}}` diff --git a/pages.de/common/lp.md b/pages.de/common/lp.md new file mode 100755 index 0000000000..8f46c40d67 --- /dev/null +++ b/pages.de/common/lp.md @@ -0,0 +1,28 @@ +# lp + +> Druckt Dateien. +> Weitere Informationen: . + +- Drucke die Ausgabe eines Befehls mit dem Standard-Drucker (siehe `lpstat`): + +`echo "test" | lp` + +- Drucke eine Datei mit dem Standard-Drucker: + +`lp {{pfad/zu/datei}}` + +- Drucke eine Datei mit einem bestimmten Drucker (siehe `lpstat`): + +`lp -d {{druckername}} {{pfad/zu/datei}}` + +- Drucke N Kopien einer Datei mit dem Standarddrucker (wobei N die Anzahl gewünschter Kopien ist): + +`lp -n {{N}} {{pfad/zu/datei}}` + +- Drucke nur bestimmte Seiten mit dem Standarddrucker (drucke Seiten 1, 3-5 und 16): + +`lp -P 1,3-5,16 {{pfad/zu/datei}}` + +- Führe einen aufgehaltenen Druckauftrag durch: + +`lp -i {{job_id}} -H resume` diff --git a/pages.de/common/lpinfo.md b/pages.de/common/lpinfo.md new file mode 100755 index 0000000000..2a1230a024 --- /dev/null +++ b/pages.de/common/lpinfo.md @@ -0,0 +1,16 @@ +# lpinfo + +> Liste verbundene Drucker und installierte Treiber für den CUPS Druckserver. +> Weitere Informationen: . + +- Liste alle aktuell verbundenen Drucker auf: + +`lpinfo -v` + +- Liste alle aktuell installierten Druckertreiber auf: + +`lpinfo -m` + +- Suche installierte Druckertreiber nach Hersteller oder Modell: + +`lpinfo --make-and-model "{{druckermodell}}" -m` diff --git a/pages.de/common/lpr.md b/pages.de/common/lpr.md new file mode 100755 index 0000000000..fc3a755508 --- /dev/null +++ b/pages.de/common/lpr.md @@ -0,0 +1,33 @@ +# lpr + +> CUPS-Programm zum Drucken von Dateien. +> Siehe auch: `lpstat` und `lpadmin`. +> Weitere Informationen: . + +- Drucke eine Datei mit dem Standarddrucker: + +`lpr {{pfad/zu/datei}}` + +- Drucke 2 Kopien einer Datei: + +`lpr -# {{2}} {{pfad/zu/datei}}` + +- Drucke eine Datei mit einem bestimmten Drucker: + +`lpr -P {{druckername}} {{pfad/zu/datei}}` + +- Drucke entweder eine einzelne Seite (z. B. 2) oder mehrere Seiten (z. B. 2-16): + +`lpr -o page-ranges={{2|2-16}} {{pfad/zu/datei}}` + +- Drucke doppelseitig entweder gespiegelt an der langen oder an der kurzen Seite: + +`lpr -o sides={{two-sided-long-edge|two-sided-short-edge}} {{pfad/zu/datei}}` + +- Drucke mit festgelegter Papiergröße (je nach Drucker-Konfiguration gibt es mehr Optionen): + +`lpr -o media={{a4|letter|legal}} {{pfad/zu/datei}}` + +- Drucke mehrere Seiten pro Blatt: + +`lpr -o number-up={{2|4|6|9|16}} {{pfad/zu/datei}}` diff --git a/pages.de/common/lpstat.md b/pages.de/common/lpstat.md new file mode 100755 index 0000000000..8d1d5f2858 --- /dev/null +++ b/pages.de/common/lpstat.md @@ -0,0 +1,20 @@ +# lpstat + +> Zeige Statusinformationen von Druckern. +> Weitere Informationen: . + +- Liste alle aktuell verbundenen Drucker mit ihrer Druckverfügbarkeit auf: + +`lpstat -p` + +- Zeige den Standarddrucker an: + +`lpstat -d` + +- Zeige alle Statusinformationen an: + +`lpstat -t` + +- Liste alle Druckaufträge von einem gegebenen Nutzer auf: + +`lpstat -u {{nutzer}}` diff --git a/pages.de/common/lzcat.md b/pages.de/common/lzcat.md new file mode 100644 index 0000000000..0acea6898f --- /dev/null +++ b/pages.de/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> Dieser Befehl ist ein Alias von `xz`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr xz` diff --git a/pages.de/common/lzma.md b/pages.de/common/lzma.md new file mode 100644 index 0000000000..24ecd2dc76 --- /dev/null +++ b/pages.de/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> Dieser Befehl ist ein Alias von `xz`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr xz` diff --git a/pages.de/common/mv.md b/pages.de/common/mv.md index 2812ce89a6..a2095f4470 100644 --- a/pages.de/common/mv.md +++ b/pages.de/common/mv.md @@ -9,7 +9,7 @@ - Verschiebe mehrere Dateien in ein anderes Verzeichnis und behalte deren Namen bei: -`mv {{datei1}} {{datei2}} {{datei3}} {{pfad/zu/ziel_verzeichnis}}` +`mv {{pfad/zu/datei1 pfad/zu/datei2 ...}} {{pfad/zu/ziel_verzeichnis}}` - Überschreibe bereits existierende Dateien ohne vorherige Bestätigung: diff --git a/pages.de/common/nix-build.md b/pages.de/common/nix-build.md new file mode 100644 index 0000000000..024316a166 --- /dev/null +++ b/pages.de/common/nix-build.md @@ -0,0 +1,12 @@ +# nix-build + +> Erstellen eines Nix-Ausdrucks. +> Weitere Informationen: . + +- Erstelle einen Nix-Ausdruck: + +`nix-build '' --attr {{firefox}}` + +- Erstelle einen gesandboxten Nix-Ausdruck (auf nicht-NixOS): + +`nix-build '' --attr {{firefox}} --option sandbox true` diff --git a/pages.de/common/nix-collect-garbage.md b/pages.de/common/nix-collect-garbage.md new file mode 100644 index 0000000000..029023fe5e --- /dev/null +++ b/pages.de/common/nix-collect-garbage.md @@ -0,0 +1,17 @@ +# nix-collect-garbage + +> Löschen von unbenutzten und unerreichbaren Nix-Speicherpfaden. +> Generationen können mit `nix-env --list-generations` aufgelistet werden. +> Weitere Informationen: . + +- Lösche alle Speicherpfade, die von den aktuellen Generationen der einzelnen Profile nicht verwendet werden: + +`sudo nix-collect-garbage --delete-old` + +- Simuliere die Löschung alter Speicherpfade: + +`sudo nix-collect-garbage --delete-old --dry-run` + +- Lösche alle Speicherpfade, die älter als 30 Tage sind: + +`sudo nix-collect-garbage --delete-older-than 30d` diff --git a/pages.de/common/nix-env.md b/pages.de/common/nix-env.md new file mode 100644 index 0000000000..d8ba0a85ee --- /dev/null +++ b/pages.de/common/nix-env.md @@ -0,0 +1,36 @@ +# nix-env + +> Manipulieren oder Abfragen von Nix-Benutzerumgebungen. +> Weitere Informationen: . + +- Liste alle installierten Pakete auf: + +`nix-env -q` + +- Frage installierte Pakete ab: + +`nix-env -q {{suchbegriff}}` + +- Frage verfügbare Pakete ab: + +`nix-env -qa {{suchbegriff}}` + +- Installiere Paket: + +`nix-env -iA nixpkgs.{{paket_name}}` + +- Installiere ein Paket von einer URL: + +`nix-env -i {{paket_name}} --datei {{beispiel.com}}` + +- Deinstalliere Paket: + +`nix-env -e {{paket_name}}` + +- Upgrade ein Pakets: + +`nix-env -u {{paket_name}}` + +- Upgrade alle Pakete: + +`nix-env -u` diff --git a/pages.de/common/nix-shell.md b/pages.de/common/nix-shell.md new file mode 100644 index 0000000000..ef5e8770fc --- /dev/null +++ b/pages.de/common/nix-shell.md @@ -0,0 +1,28 @@ +# nix-shell + +> Startet eine interaktive Shell, die auf einem Nix-Ausdruck basiert. +> Weitere Informationen: . + +- Starte mit Nix-Ausdruck in `shell.nix` oder `default.nix` im aktuellen Verzeichnis: + +`nix-shell` + +- Führe Shell-Befehl in nicht-interaktiver Shell aus und beende: + +`nix-shell --run "{{befehl}} {{argument1 argument2 ...}}"` + +- Starte mit Ausdruck in `default.nix` im aktuellen Verzeichnis: + +`nix-shell {{default.nix}}` + +- Starte mit aus nixpkgs geladenen Paketen: + +`nix-shell --packages {{paket_name_1 paket_name_2 ...}}` + +- Starte mit Paketen, die aus einer bestimmten Nixpkgs-Revision geladen wurden: + +`nix-shell --packages {{paket_name_1 paket_name_2 ...}} -I nixpkgs={{https://github.com/NixOS/nixpkgs/archive/nixpkgs_revision.tar.gz}}` + +- Führe den Rest der Datei mit einem bestimmten Interpreter aus, zur Verwendung in `#!-scripts` (siehe ): + +`nix-shell -i {{interpreter}} --packages {{paket_name_1 paket_name_2 ...}}` diff --git a/pages.de/common/nix.md b/pages.de/common/nix.md new file mode 100644 index 0000000000..c2f135d250 --- /dev/null +++ b/pages.de/common/nix.md @@ -0,0 +1,24 @@ +# nix + +> Dienstprogramme für die Nix-Sprache und den Nix-Speicher. +> Weitere Informationen: . + +- Suche nach einem Paket über seinen Namen oder seine Beschreibung: + +`nix search {{suchbegriff}}` + +- Starte eine Nix-Shell, die die angegebenen Pakete zur Verfügung stellt: + +`nix run {{nixpkgs.pkg1 nixpkgs.pkg2 ...}}` + +- Optimiere die Festplattennutzung des Nix-Speichers durch Zusammenfassen doppelter Dateien: + +`nix store optimise` + +- Starte eine interaktive Umgebung zum Ausführen von Nix-Ausdrücken: + +`nix repl` + +- Upgrade Nix auf die neueste stabile Version: + +`nix upgrade-nix` diff --git a/pages.de/common/nm-classic.md b/pages.de/common/nm-classic.md new file mode 100644 index 0000000000..42b1da938a --- /dev/null +++ b/pages.de/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> Dieser Befehl ist ein Alias von `nm`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr nm` diff --git a/pages.de/common/nmap.md b/pages.de/common/nmap.md new file mode 100644 index 0000000000..d09ade6c81 --- /dev/null +++ b/pages.de/common/nmap.md @@ -0,0 +1,37 @@ +# nmap + +> Netzwerk-Erkundungs-Werkzeug und Security / Port Scanner. +> Manche Funktionen können nur benutzt werden, wenn Nmap mit Root Rechten ausgeführt wird. +> Weitere Informationen: . + +- Überprüfe ob eine IP-Adresse online ist und versuche, das Betriebssystem herauszufinden: + +`nmap -O {{ip_oder_hostname}}` + +- Überprüfe nur ob die angegebenen Hosts online sind (Ping Scan) und ihre Domain-Namen: + +`nmap -sn {{ip_oder_hostname}} {{optional_noch_eine_addresse}}` + +- Scanne zusätzlich mit Skripten, Service-Erkennung, Betriebssystem-Fingerprinting und Traceroute: + +`nmap -A {{addresse_oder_addressen}}` + +- Scanne eine spezifische Liste an Ports (benutze '-p-' für alle Ports von 1 bis 65535): + +`nmap -p {{port1,port2,...,portN}} {{addresse_oder_addressen}}` + +- Führe Dienst- und Versions-Erkennung auf den top 1000 Ports mit den Standard NSE Skripten aus; und schreibe das Ergebnis ('-oN') in der Ausgabe Datei: + +`nmap -sC -sV -oN {{ergebnis.txt}} {{addresse_oder_addressen}}` + +- Scanne Ziel(e) vorsichtig mit 'default and safe' NSE Scripts: + +`nmap --script "default and safe" {{addresse_oder_addressen}}` + +- Scanne einen Web-Server, der auf den Standard Ports 80 und 443 läuft, mit allen verfügbaren 'http-*' NSE Scripts: + +`nmap --script "http-*" {{addresse_oder_addressen}} -p 80,443` + +- Führe einen sehr langsamen verborgenen Scan ('-T0') aus um die Entdeckung von IDS/IPS zu umgehen und benutze Köder IP-Adressen ('-D'): + +`nmap -T0 -D {{köder1_ipaddresse,köder2_ipaddresse,...,köderN_ipaddresse}} {{addresse_oder_addressen}}` diff --git a/pages.de/common/ntl.md b/pages.de/common/ntl.md new file mode 100644 index 0000000000..0c880ec3e2 --- /dev/null +++ b/pages.de/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> Dieser Befehl ist ein Alias von `netlify`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr netlify` diff --git a/pages.de/common/omz.md b/pages.de/common/omz.md new file mode 100644 index 0000000000..1cb1cdf9cd --- /dev/null +++ b/pages.de/common/omz.md @@ -0,0 +1,32 @@ +# omz + +> Oh My Zsh Kommandozeilenwerkzeug. +> Weitere Informationen: . + +- Aktualisiere Oh My Zsh: + +`omz update` + +- Zeige die Änderungen im neuesten Update von Oh My Zsh an: + +`omz changelog` + +- Starte die aktuelle zsh-Sitzung und Oh My Zsh neu: + +`omz reload` + +- Zeige eine Liste aller verfügbaren Plugins an: + +`omz plugin list` + +- Aktiviere/Deaktiviere ein Oh My Zsh-Plugin: + +`omz plugin {{enable|disable}} {{plugin}}` + +- Zeige eine Liste aller verfügbaren Themen an: + +`omz theme list` + +- Wähle ein Oh My Zsh-Thema als Standardthema: + +`omz theme set {{theme}}` diff --git a/pages.de/common/pdfseparate.md b/pages.de/common/pdfseparate.md new file mode 100644 index 0000000000..bcb67ede21 --- /dev/null +++ b/pages.de/common/pdfseparate.md @@ -0,0 +1,16 @@ +# pdfseparate + +> Extrahiere die Seiten einer Portable Document Format (PDF) Datei. +> Weitere Informationen: . + +- Extrahiere die Seiten einer PDF Datei und speichere jede Seite als neue PDF Datei ab: + +`pdfseparate {{pfad/zu/quelldatei.pdf}} {{pfad/zu/zieldatei-%d.pdf}}` + +- Gib die erste Seite zum Extrahieren an: + +`pdfseparate -f {{3}} {{pfad/zu/quelldatei.pdf}} {{pfad/zu/zieldatei-%d.pdf}}` + +- Gib die letzte Seite zum Extrahieren an: + +`pdfseparate -l {{10}} {{pfad/zu/quelldatei.pdf}} {{pfad/zu/zieldatei-%d.pdf}}` diff --git a/pages.de/common/peerindex.md b/pages.de/common/peerindex.md new file mode 100644 index 0000000000..568f4f04f8 --- /dev/null +++ b/pages.de/common/peerindex.md @@ -0,0 +1,13 @@ +# peerindex + +> Liest MRT TABLE_DUMPV2 Peer Index Table aus. +> Kann mit gzip, bzip2 und xz komprimierte Dateien lesen. +> Weitere Informationen: . + +- Gib alle Peers aus: + +`peerindex {{master6.mrt}}` + +- Zeige alle Peers an, die Routing-Informationen bereitgestellt haben: + +`peerindex -r {{master6.mrt}}` diff --git a/pages.de/common/php.md b/pages.de/common/php.md new file mode 100644 index 0000000000..c8820c3350 --- /dev/null +++ b/pages.de/common/php.md @@ -0,0 +1,36 @@ +# php + +> PHP Befehlszeilenschnittstelle. +> Mehr Informationen: . + +- Analysiere ein PHP-Skript und führe es aus: + +`php {{pfad/zu/datei}}` + +- Überprüfe die Syntax eines PHP-Skripts: + +`php -l {{pfad/zu/datei}}` + +- Führen PHP interaktiv aus: + +`php -a` + +- Führe einen PHP-Befehl aus: + +`php -r "{{befehl}}"` + +- Starte den in PHP integrierten Webserver im aktuellen Verzeichnis: + +`php -S {{host:port}}` + +- Zeige eine Liste der installierten PHP-Erweiterungen: + +`php -m` + +- Zeige Informationen zur aktuellen PHP-Konfiguration an: + +`php -i` + +- Zeige Informationen zu einer bestimmten Funktion an: + +`php --rf {{funktionsname}}` diff --git a/pages.de/common/poetry.md b/pages.de/common/poetry.md new file mode 100644 index 0000000000..193e8701ec --- /dev/null +++ b/pages.de/common/poetry.md @@ -0,0 +1,36 @@ +# poetry + +> Verwalte Python-Pakete und -Abhängigkeiten. +> Weitere Informationen: . + +- Erstelle ein neues Poetry-Projekt im Verzeichnis mit dem angegebenem Namen: + +`poetry new {{projekt_name}}` + +- Installiere eine Abhängigkeit und alle Unterabhängigkeiten: + +`poetry add {{abhängigkeit}}` + +- Installiere eine Entwicklungsabhängigkeit und alle Unterabhängigkeiten: + +`poetry add --dev {{abhängigkeit}}` + +- Initialisiere ein neues Poetry-Projekt interaktiv im aktuellen Verzeichnis: + +`poetry init` + +- Aktualisiere alle Abhängigkeiten und `poetry.lock`: + +`poetry update` + +- Führe einen Befehl innerhalb der virtuellen Umgebung des Projekts aus: + +`poetry run {{befehl}}` + +- Erhöhe die Minor-Version des Projekts in `pyproject.toml`: + +`poetry version minor` + +- Liste alle poetry Unterbefehle auf: + +`poetry list` diff --git a/pages.de/common/ptpython3.md b/pages.de/common/ptpython3.md new file mode 100644 index 0000000000..f9e38289d8 --- /dev/null +++ b/pages.de/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> Dieser Befehl ist ein Alias von `ptpython`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr ptpython` diff --git a/pages.de/common/pystun3.md b/pages.de/common/pystun3.md new file mode 100644 index 0000000000..cab5503c83 --- /dev/null +++ b/pages.de/common/pystun3.md @@ -0,0 +1,16 @@ +# pystun3 + +> Classic STUN-Client, geschrieben in Python. +> Weitere Informationen: . + +- Stelle eine STUN-Anfrage: + +`pystun3` + +- Stelle eine STUN-Anfrage und spezifiziere den STUN-Server: + +`pystun3 --stun-host {{stun.1und1.de}}` + +- Stelle eine STUN-Anfrage und spezifiziere den Quellport: + +`pystun3 --source-port {{7932}}` diff --git a/pages.de/common/python3.md b/pages.de/common/python3.md new file mode 100644 index 0000000000..70fb061f0a --- /dev/null +++ b/pages.de/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> Dieser Befehl ist ein Alias von `python`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr python` diff --git a/pages.de/common/rcat.md b/pages.de/common/rcat.md new file mode 100644 index 0000000000..ef473cea03 --- /dev/null +++ b/pages.de/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> Dieser Befehl ist ein Alias von `rc`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr rc` diff --git a/pages.de/common/ripgrep.md b/pages.de/common/ripgrep.md new file mode 100644 index 0000000000..131470bb0b --- /dev/null +++ b/pages.de/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> Dieser Befehl ist ein Alias von `rg`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr rg` diff --git a/pages.de/common/rm.md b/pages.de/common/rm.md new file mode 100644 index 0000000000..25cbb7ff8e --- /dev/null +++ b/pages.de/common/rm.md @@ -0,0 +1,24 @@ +# rm + +> Lösche Dateien oder Verzeichnisse. +> Weitere Informationen: . + +- Lösche Dateien an beliebigen Speicherorten: + +`rm {{pfad/zu/datei}} {{pfad/zu/anderer/datei}}` + +- Lösche ein Verzeichnis und alle seine Unterverzeichnisse rekursiv: + +`rm -r {{pfad/zu/verzeichnis}}` + +- Erzwinge das Löschen eines Verzeichnisses, ohne Eingabeaufforderung zur Bestätigung oder Anzeigen von Fehlermeldungen: + +`rm -rf {{pfad/zu/verzeichnis}}` + +- Lösche mehrere Dateien mit Eingabeaufforderung zur Bestätigung für jede Datei: + +`rm -i {{pfad/zu/datei1 pfad/zu/datei2 ...}}` + +- Liste jede Datei auf, wenn sie gelöscht wird: + +`rm -v {{pfad/zu/verzeichnis/*}}` diff --git a/pages.de/common/ssh-keygen.md b/pages.de/common/ssh-keygen.md index 8a17acb548..fa3cce39bf 100644 --- a/pages.de/common/ssh-keygen.md +++ b/pages.de/common/ssh-keygen.md @@ -11,13 +11,13 @@ `ssh-keygen -f {{~/.ssh/datei}}` -- Generiere ein ed25519 Schlüssel-Paar mit 100 Schlüssel-Ableitungs-Iterationen: +- Generiere ein ed25519 Schlüssel-Paar mit 32 Schlüssel-Ableitungs-Iterationen: -`ssh-keygen -t {{ed25519}} -a {{100}}` +`ssh-keygen -t {{ed25519}} -a {{32}}` - Generiere ein 4096 Bit langen RSA Schlüssel-Paar mit der E-Mail im Kommentarfeld: -`ssh-keygen -t {{dsa|ecdsa|ed25519|rsa}} -b {{4096}} -C "{{kommentar|e-mail}}"` +`ssh-keygen -t {{rsa}} -b {{4096}} -C "{{kommentar|e-mail}}"` - Entferne den Schlüssel eines Servers aus der `known_hosts` Datei (hilfreich wenn ein Server seinen Schlüssel aktualisiert hat und der alte somit nicht mehr gilt): diff --git a/pages.de/common/sshpass.md b/pages.de/common/sshpass.md index 9cbe2aa71c..2e8e5520ec 100644 --- a/pages.de/common/sshpass.md +++ b/pages.de/common/sshpass.md @@ -3,7 +3,7 @@ > Stelle SSH Passwörtern bereit. > Weitere Informationen: . -- Stelle eine Verbindung zu einem externen Server über ein Passwort aus einem Datei-Objekt her (in diesem Fall stdin): +- Stelle eine Verbindung zu einem externen Server über ein Passwort aus einem Datei-Objekt her (in diesem Fall `stdin`): `sshpass -d {{0}} ssh {{benutzer}}@{{server}}` diff --git a/pages.de/common/stun.md b/pages.de/common/stun.md new file mode 100644 index 0000000000..b81d4403fa --- /dev/null +++ b/pages.de/common/stun.md @@ -0,0 +1,12 @@ +# stun + +> Classic STUN-Client. +> Weitere Informationen: . + +- Stelle eine STUN-Anfrage: + +`stun {{stun.1und1.de}}` + +- Stelle eine STUN-Anfrage und spezifiziere den Quellport: + +`stun {{stun.1und1.de}} -p {{4302}}` diff --git a/pages.de/common/terraform-fmt.md b/pages.de/common/terraform-fmt.md index 272b0334aa..bbbe959eb7 100644 --- a/pages.de/common/terraform-fmt.md +++ b/pages.de/common/terraform-fmt.md @@ -15,6 +15,6 @@ `terraform fmt -diff` -- Die Dateien mit Formatierungsinkonsistenzen werden nicht auf stdout ausgegeben: +- Die Dateien mit Formatierungsinkonsistenzen werden nicht auf `stdout` ausgegeben: `terraform fmt -list=false` diff --git a/pages.de/common/todoman.md b/pages.de/common/todoman.md new file mode 100644 index 0000000000..ea05b57022 --- /dev/null +++ b/pages.de/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> Dieser Befehl ist ein Alias von `todo`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr todo` diff --git a/pages.de/common/transmission.md b/pages.de/common/transmission.md new file mode 100644 index 0000000000..4d901dd826 --- /dev/null +++ b/pages.de/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> Dieser Befehl ist ein Alias von `transmission-daemon`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr transmission-daemon` diff --git a/pages.de/common/unlzma.md b/pages.de/common/unlzma.md new file mode 100644 index 0000000000..3d730a45bf --- /dev/null +++ b/pages.de/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> Dieser Befehl ist ein Alias von `xz`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr xz` diff --git a/pages.de/common/unxz.md b/pages.de/common/unxz.md new file mode 100644 index 0000000000..58b072b406 --- /dev/null +++ b/pages.de/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> Dieser Befehl ist ein Alias von `xz`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr xz` diff --git a/pages.de/common/vifm.md b/pages.de/common/vifm.md new file mode 100644 index 0000000000..51da1b2772 --- /dev/null +++ b/pages.de/common/vifm.md @@ -0,0 +1,12 @@ +# vifm + +> Vifm (VI File Manager) ist ein Kommandozeilen-Dateimanager. +> Weitere Informationen: . + +- Öffne das aktuelle Verzeichnis: + +`vifm .` + +- Öffne angegebene Verzeichnisse auf der linken oder rechten Seite: + +`vifm {{pfad/zu/verzeichnis1 pfad/zu/verzeichnis2 ...}}` diff --git a/pages.de/common/xzcat.md b/pages.de/common/xzcat.md new file mode 100644 index 0000000000..1d654f487c --- /dev/null +++ b/pages.de/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> Dieser Befehl ist ein Alias von `xz`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr xz` diff --git a/pages.de/common/zoxide.md b/pages.de/common/zoxide.md new file mode 100644 index 0000000000..fc0d8f65b9 --- /dev/null +++ b/pages.de/common/zoxide.md @@ -0,0 +1,29 @@ +# zoxide + +> Behält den Überblick über die am häufigsten verwendeten Verzeichnisse. +> Verwendet einen Ranking-Algorithmus, um zum besten Treffer zu navigieren. +> Weitere Informationen: . + +- Wechsel zu dem Verzeichnis mit dem höchsten Rang, das "foo" im Namen enthält: + +`zoxide query {{foo}}` + +- Wechsel in das höchstrangige Verzeichnis, das "foo" und danach "bar" enthält: + +`zoxide query {{foo}} {{bar}}` + +- Starte eine interaktive Verzeichnissuche (erfordert `fzf`): + +`zoxide query --interactive` + +- Füge ein Verzeichnis hinzu oder erhöhe seinen Rang: + +`zoxide add {{path/to/directory}}` + +- Entferne interaktiv ein Verzeichnis aus der Datenbank von `zoxide`: + +`zoxide remove {{path/to/directory}} --interactive` + +- Generiere Shell-Konfigurationen für Befehls-Aliase (`z`, `za`, `zi`, `zq`, `zr`) für die angegebene Shell: + +`zoxide init {{bash|fish|zsh}}` diff --git a/pages.de/linux/ac.md b/pages.de/linux/ac.md index 953d7ad696..951ac7b13a 100644 --- a/pages.de/linux/ac.md +++ b/pages.de/linux/ac.md @@ -3,22 +3,22 @@ > Zeigt an, wie lange Benutzer verbunden waren. > Weitere Informationen: . -- Zeigt wie viele Stunden der aktuelle Benutzer verbunden war: +- Zeige, wie viele Stunden der aktuelle Benutzer verbunden war: `ac` -- Zeigt wie viele Stunden jeder Benutzer verbunden war: +- Zeige, wie viele Stunden jeder Benutzer verbunden war: `ac --individual-totals` -- Zeigt wie viele Stunden ein bestimmter Benutzer verbunden war: +- Zeige, wie viele Stunden ein bestimmter Benutzer verbunden war: `ac --individual-totals {{nutzername}}` -- Zeigt wie viele Stunden ein bestimmter Benutzer pro Tag verbunden war: +- Zeige, wie viele Stunden ein bestimmter Benutzer pro Tag verbunden war: `ac --daily-totals --individual-totals {{nutzername}}` -- Zeigt zusätzliche Details: +- Zeige zusätzliche Details: `ac --compatibility` diff --git a/pages.de/linux/alternatives.md b/pages.de/linux/alternatives.md new file mode 100644 index 0000000000..3f8b050d3c --- /dev/null +++ b/pages.de/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> Dieser Befehl ist ein Alias von `update-alternatives`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr update-alternatives` diff --git a/pages.de/linux/archlinux-java.md b/pages.de/linux/archlinux-java.md index 278c1ace89..090922846b 100644 --- a/pages.de/linux/archlinux-java.md +++ b/pages.de/linux/archlinux-java.md @@ -1,7 +1,7 @@ # archlinux-java > Ein Helfer Script das Funktionen für Java-Umgebungen bereitstellt. -> Weitere Informationen: . +> Weitere Informationen: . - Liste installierte Java-Umgebungen: diff --git a/pages.de/linux/arithmetic.md b/pages.de/linux/arithmetic.md index d58bb219e9..0b57cee6ff 100644 --- a/pages.de/linux/arithmetic.md +++ b/pages.de/linux/arithmetic.md @@ -1,7 +1,7 @@ # arithmetic > Quiz über simple arithmetische Probleme. -> Weitere Informationen: . +> Weitere Informationen: . - Starte ein arithmetisches Quiz: diff --git a/pages.de/linux/ark.md b/pages.de/linux/ark.md index baaae3aa61..2fdc8c17c5 100644 --- a/pages.de/linux/ark.md +++ b/pages.de/linux/ark.md @@ -5,12 +5,12 @@ - Extrahiere ein Archiv ins aktuelle Verzeichnis: -`ark --batch {{archiv}}` +`ark --batch {{pfad/zu/archiv}}` - Verändere das Verzeichnis in das extrahiert wird: -`ark --batch --destination {{pfad/zum/verzeichnis}} {{archiv}}` +`ark --batch --destination {{pfad/zu/verzeichnis}} {{pfad/zu/archiv}}` - Erstelle ein Archiv wenn es nicht existiert und füge Dateien hinzu: -`ark --add-to {{archiv}} {{datei1}} {{datei2}}` +`ark --add-to {{pfad/zu/archiv}} {{pfad/zu/datei1 pfad/zu/datei2 ...}}` diff --git a/pages.de/linux/batcat.md b/pages.de/linux/batcat.md new file mode 100644 index 0000000000..2e8ad9e8ed --- /dev/null +++ b/pages.de/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> Dieser Befehl ist ein Alias von `bat`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr bat` diff --git a/pages.de/linux/bspwm.md b/pages.de/linux/bspwm.md new file mode 100644 index 0000000000..ea0345e455 --- /dev/null +++ b/pages.de/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> Dieser Befehl ist ein Alias von `bspc`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr bspc` diff --git a/pages.de/linux/cc.md b/pages.de/linux/cc.md new file mode 100644 index 0000000000..b68beb95ed --- /dev/null +++ b/pages.de/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> Dieser Befehl ist ein Alias von `gcc`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr gcc` diff --git a/pages.de/linux/cgroups.md b/pages.de/linux/cgroups.md new file mode 100644 index 0000000000..ec77b58d6b --- /dev/null +++ b/pages.de/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> Dieser Befehl ist ein Alias von `cgclassify`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr cgclassify` diff --git a/pages.de/linux/ip-route-list.md b/pages.de/linux/ip-route-list.md new file mode 100644 index 0000000000..4d0ff5925e --- /dev/null +++ b/pages.de/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> Dieser Befehl ist ein Alias von `ip-route-show`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr ip-route-show` diff --git a/pages.de/linux/lastcomm.md b/pages.de/linux/lastcomm.md index caaf4d3665..ffcb1c768d 100644 --- a/pages.de/linux/lastcomm.md +++ b/pages.de/linux/lastcomm.md @@ -1,7 +1,7 @@ # lastcomm > Zeige die zuletzt ausgeführten Befehle an. -> Weitere Informationen: . +> Weitere Informationen: . - Gib Informationen zu allen Befehlen in acct aus (Aufzeichnungsdatei): diff --git a/pages.de/linux/megadl.md b/pages.de/linux/megadl.md new file mode 100644 index 0000000000..dce4429367 --- /dev/null +++ b/pages.de/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> Dieser Befehl ist ein Alias von `megatools-dl`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr megatools-dl` diff --git a/pages.de/linux/pacman-database.md b/pages.de/linux/pacman-database.md index cda3475238..35b4363a22 100644 --- a/pages.de/linux/pacman-database.md +++ b/pages.de/linux/pacman-database.md @@ -2,6 +2,7 @@ > Mit der Arch Linux Paketdatenbank arbeiten. > Verschiedene Attribute von installierten Paketen bearbeiten. +> Siehe auch: `pacman`. > Weitere Informationen: . - Markiere ein Paket als implizit installiert: diff --git a/pages.de/linux/pacman-deptest.md b/pages.de/linux/pacman-deptest.md index 750eef153a..70e025cfe6 100644 --- a/pages.de/linux/pacman-deptest.md +++ b/pages.de/linux/pacman-deptest.md @@ -1,6 +1,7 @@ # pacman --deptest > Überprüfe alle angegebenen Abhängigkeiten und gib eine Liste von Abhängigkeiten zurück, welche auf dem System nicht erfüllt sind. +> Siehe auch: `pacman`. > Weitere Informationen: . - Zeige Paketnamen von Abhängigkeiten an, welche nicht installiert sind: diff --git a/pages.de/linux/pacman-files.md b/pages.de/linux/pacman-files.md index 609b3c3d63..e5a6de1dc5 100644 --- a/pages.de/linux/pacman-files.md +++ b/pages.de/linux/pacman-files.md @@ -1,7 +1,7 @@ # pacman --files > Arch Linux Paketverwaltungs-Werkzeug. -> Siehe auch `pkgfile`. +> Siehe auch: `pacman`, `pkgfile`. > Weitere Informationen: . - Aktualisiere die Paketdatenbank: @@ -24,10 +24,6 @@ `pacman --files --list {{paketname}}` -- Liste nur den absoluten Pfad der Dateien auf: - -`pacman --query --list --quiet {{paketname}}` - - Zeige Hilfe an: `pacman --files --help` diff --git a/pages.de/linux/pacman-query.md b/pages.de/linux/pacman-query.md index 0887150506..594713355f 100644 --- a/pages.de/linux/pacman-query.md +++ b/pages.de/linux/pacman-query.md @@ -1,6 +1,7 @@ # pacman --query > Arch Linux Paketverwaltungs-Werkzeug. +> Siehe auch: `pacman`. > Weitere Informationen: . - Liste alle installierten Pakete und dessen Versionen auf: diff --git a/pages.de/linux/pacman-remove.md b/pages.de/linux/pacman-remove.md index 839c3be774..c24d9fd939 100644 --- a/pages.de/linux/pacman-remove.md +++ b/pages.de/linux/pacman-remove.md @@ -1,6 +1,7 @@ # pacman --remove > Arch Linux Paketverwaltungs-Werkzeug. +> Siehe auch: `pacman`. > Weitere Informationen: . - Entferne ein Paket und dessen Abhängigkeiten: diff --git a/pages.de/linux/pacman-sync.md b/pages.de/linux/pacman-sync.md index c713a60b0e..9e64e6d373 100644 --- a/pages.de/linux/pacman-sync.md +++ b/pages.de/linux/pacman-sync.md @@ -1,6 +1,7 @@ # pacman --sync > Arch Linux Paketverwaltungs-Werkzeug. +> Siehe auch: `pacman`. > Weitere Informationen: . - Installiere ein neues Paket: diff --git a/pages.de/linux/pacman-upgrade.md b/pages.de/linux/pacman-upgrade.md index 577f637013..7051b5f08f 100644 --- a/pages.de/linux/pacman-upgrade.md +++ b/pages.de/linux/pacman-upgrade.md @@ -1,6 +1,7 @@ # pacman --upgrade > Arch Linux Paketverwaltungs-Werkzeug. +> Siehe auch: `pacman`. > Weitere Informationen: . - Installiere ein oder mehrere Pakete von Dateien: diff --git a/pages.de/linux/pacman.md b/pages.de/linux/pacman.md index 8e5ba72fd0..0d29cadda3 100644 --- a/pages.de/linux/pacman.md +++ b/pages.de/linux/pacman.md @@ -1,7 +1,7 @@ # pacman > Arch Linux Paket Management Tool. -> Manche Unterbefehle wie `pacman sync` sind separat dokumentiert. +> Siehe auch: `pacman-database`, `pacman-deptest`, `pacman-files`, `pacman-key`, `pacman-mirrors`, `pacman-query`, `pacman-remove`, `pacman-sync`, `pacman-upgrade`. > Weitere Informationen: . - Synchronisiere und aktualisiere alle Pakete: diff --git a/pages.de/linux/ubuntu-bug.md b/pages.de/linux/ubuntu-bug.md new file mode 100644 index 0000000000..2c674615f5 --- /dev/null +++ b/pages.de/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> Dieser Befehl ist ein Alias von `apport-bug`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr apport-bug` diff --git a/pages.de/linux/watch.md b/pages.de/linux/watch.md index 046fefb3b0..f8473429ee 100644 --- a/pages.de/linux/watch.md +++ b/pages.de/linux/watch.md @@ -14,3 +14,7 @@ - Überwache "node"-Prozesse und aktualisiere alle 3 Sekunden: `watch -n {{3}} "{{ps aux | grep node}}"` + +- Überwache, ob sich der Festplatten-Speicherplatz ändert und höre mit der Überwachung auf, sobald eine Änderung auftritt: + +`watch -g {{df}}` diff --git a/pages.de/osx/aa.md b/pages.de/osx/aa.md new file mode 100644 index 0000000000..65605c89cc --- /dev/null +++ b/pages.de/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> Dieser Befehl ist ein Alias von `yaa`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr yaa` diff --git a/pages.de/osx/g[.md b/pages.de/osx/g[.md new file mode 100644 index 0000000000..050ff8d536 --- /dev/null +++ b/pages.de/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> Dieser Befehl ist ein Alias von `-p linux [`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux [` diff --git a/pages.de/osx/gawk.md b/pages.de/osx/gawk.md new file mode 100644 index 0000000000..2963fbe32d --- /dev/null +++ b/pages.de/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> Dieser Befehl ist ein Alias von `-p linux awk`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux awk` diff --git a/pages.de/osx/gb2sum.md b/pages.de/osx/gb2sum.md new file mode 100644 index 0000000000..939f70733c --- /dev/null +++ b/pages.de/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> Dieser Befehl ist ein Alias von `-p linux b2sum`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux b2sum` diff --git a/pages.de/osx/gbase32.md b/pages.de/osx/gbase32.md new file mode 100644 index 0000000000..dc5e2b7fb6 --- /dev/null +++ b/pages.de/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> Dieser Befehl ist ein Alias von `-p linux base32`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux base32` diff --git a/pages.de/osx/gbase64.md b/pages.de/osx/gbase64.md new file mode 100644 index 0000000000..bae26a1dce --- /dev/null +++ b/pages.de/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> Dieser Befehl ist ein Alias von `-p linux base64`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux base64` diff --git a/pages.de/osx/gbasename.md b/pages.de/osx/gbasename.md new file mode 100644 index 0000000000..6934bf9efd --- /dev/null +++ b/pages.de/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> Dieser Befehl ist ein Alias von `-p linux basename`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux basename` diff --git a/pages.de/osx/gbasenc.md b/pages.de/osx/gbasenc.md new file mode 100644 index 0000000000..9db5763fb3 --- /dev/null +++ b/pages.de/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> Dieser Befehl ist ein Alias von `-p linux basenc`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux basenc` diff --git a/pages.de/osx/gcat.md b/pages.de/osx/gcat.md new file mode 100644 index 0000000000..b96166a010 --- /dev/null +++ b/pages.de/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> Dieser Befehl ist ein Alias von `-p linux cat`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux cat` diff --git a/pages.de/osx/gchcon.md b/pages.de/osx/gchcon.md new file mode 100644 index 0000000000..9fbce093f3 --- /dev/null +++ b/pages.de/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> Dieser Befehl ist ein Alias von `-p linux chcon`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux chcon` diff --git a/pages.de/osx/gchgrp.md b/pages.de/osx/gchgrp.md new file mode 100644 index 0000000000..61a296470a --- /dev/null +++ b/pages.de/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> Dieser Befehl ist ein Alias von `-p linux chgrp`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux chgrp` diff --git a/pages.de/osx/gchmod.md b/pages.de/osx/gchmod.md new file mode 100644 index 0000000000..b06aeebca2 --- /dev/null +++ b/pages.de/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> Dieser Befehl ist ein Alias von `-p linux chmod`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux chmod` diff --git a/pages.de/osx/gchown.md b/pages.de/osx/gchown.md new file mode 100644 index 0000000000..3703ee282d --- /dev/null +++ b/pages.de/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> Dieser Befehl ist ein Alias von `-p linux chown`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux chown` diff --git a/pages.de/osx/gchroot.md b/pages.de/osx/gchroot.md new file mode 100644 index 0000000000..b2f631d849 --- /dev/null +++ b/pages.de/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> Dieser Befehl ist ein Alias von `-p linux chroot`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux chroot` diff --git a/pages.de/osx/gcksum.md b/pages.de/osx/gcksum.md new file mode 100644 index 0000000000..1afab17644 --- /dev/null +++ b/pages.de/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> Dieser Befehl ist ein Alias von `-p linux cksum`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux cksum` diff --git a/pages.de/osx/gcomm.md b/pages.de/osx/gcomm.md new file mode 100644 index 0000000000..00a15d3c50 --- /dev/null +++ b/pages.de/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> Dieser Befehl ist ein Alias von `-p linux comm`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux comm` diff --git a/pages.de/osx/gcp.md b/pages.de/osx/gcp.md new file mode 100644 index 0000000000..b5e5fbc5a3 --- /dev/null +++ b/pages.de/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> Dieser Befehl ist ein Alias von `-p linux cp`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux cp` diff --git a/pages.de/osx/gcsplit.md b/pages.de/osx/gcsplit.md new file mode 100644 index 0000000000..0c689316ff --- /dev/null +++ b/pages.de/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> Dieser Befehl ist ein Alias von `-p linux csplit`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux csplit` diff --git a/pages.de/osx/gcut.md b/pages.de/osx/gcut.md new file mode 100644 index 0000000000..378ecfbcad --- /dev/null +++ b/pages.de/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> Dieser Befehl ist ein Alias von `-p linux cut`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux cut` diff --git a/pages.de/osx/gdate.md b/pages.de/osx/gdate.md new file mode 100644 index 0000000000..cd98bd8935 --- /dev/null +++ b/pages.de/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> Dieser Befehl ist ein Alias von `-p linux date`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux date` diff --git a/pages.de/osx/gdd.md b/pages.de/osx/gdd.md new file mode 100644 index 0000000000..12efa56052 --- /dev/null +++ b/pages.de/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> Dieser Befehl ist ein Alias von `-p linux dd`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux dd` diff --git a/pages.de/osx/gdf.md b/pages.de/osx/gdf.md new file mode 100644 index 0000000000..590392a66d --- /dev/null +++ b/pages.de/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> Dieser Befehl ist ein Alias von `-p linux df`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux df` diff --git a/pages.de/osx/gdir.md b/pages.de/osx/gdir.md new file mode 100644 index 0000000000..13a2b97e49 --- /dev/null +++ b/pages.de/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> Dieser Befehl ist ein Alias von `-p linux dir`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux dir` diff --git a/pages.de/osx/gdircolors.md b/pages.de/osx/gdircolors.md new file mode 100644 index 0000000000..53cd11e4a8 --- /dev/null +++ b/pages.de/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> Dieser Befehl ist ein Alias von `-p linux dircolors`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux dircolors` diff --git a/pages.de/osx/gdirname.md b/pages.de/osx/gdirname.md new file mode 100644 index 0000000000..2b9a2c30f5 --- /dev/null +++ b/pages.de/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> Dieser Befehl ist ein Alias von `-p linux dirname`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux dirname` diff --git a/pages.de/osx/gdnsdomainname.md b/pages.de/osx/gdnsdomainname.md new file mode 100644 index 0000000000..58cc5c2f5c --- /dev/null +++ b/pages.de/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> Dieser Befehl ist ein Alias von `-p linux dnsdomainname`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux dnsdomainname` diff --git a/pages.de/osx/gecho.md b/pages.de/osx/gecho.md new file mode 100644 index 0000000000..9a63718263 --- /dev/null +++ b/pages.de/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> Dieser Befehl ist ein Alias von `-p linux echo`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux echo` diff --git a/pages.de/osx/ged.md b/pages.de/osx/ged.md new file mode 100644 index 0000000000..b700104eb2 --- /dev/null +++ b/pages.de/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> Dieser Befehl ist ein Alias von `-p linux ed`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux ed` diff --git a/pages.de/osx/gegrep.md b/pages.de/osx/gegrep.md new file mode 100644 index 0000000000..3f9fe87da9 --- /dev/null +++ b/pages.de/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> Dieser Befehl ist ein Alias von `-p linux egrep`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux egrep` diff --git a/pages.de/osx/genv.md b/pages.de/osx/genv.md new file mode 100644 index 0000000000..06fb158f2a --- /dev/null +++ b/pages.de/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> Dieser Befehl ist ein Alias von `-p linux env`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux env` diff --git a/pages.de/osx/gexpand.md b/pages.de/osx/gexpand.md new file mode 100644 index 0000000000..dabf79d3d1 --- /dev/null +++ b/pages.de/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> Dieser Befehl ist ein Alias von `-p linux expand`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux expand` diff --git a/pages.de/osx/gexpr.md b/pages.de/osx/gexpr.md new file mode 100644 index 0000000000..7a535ac85c --- /dev/null +++ b/pages.de/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> Dieser Befehl ist ein Alias von `-p linux expr`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux expr` diff --git a/pages.de/osx/gfactor.md b/pages.de/osx/gfactor.md new file mode 100644 index 0000000000..c76590b0a7 --- /dev/null +++ b/pages.de/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> Dieser Befehl ist ein Alias von `-p linux factor`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux factor` diff --git a/pages.de/osx/gfalse.md b/pages.de/osx/gfalse.md new file mode 100644 index 0000000000..8d91b4dae1 --- /dev/null +++ b/pages.de/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> Dieser Befehl ist ein Alias von `-p linux false`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux false` diff --git a/pages.de/osx/gfgrep.md b/pages.de/osx/gfgrep.md new file mode 100644 index 0000000000..05c4a7b461 --- /dev/null +++ b/pages.de/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> Dieser Befehl ist ein Alias von `-p linux fgrep`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux fgrep` diff --git a/pages.de/osx/gfind.md b/pages.de/osx/gfind.md new file mode 100644 index 0000000000..b1f7899d70 --- /dev/null +++ b/pages.de/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> Dieser Befehl ist ein Alias von `-p linux find`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux find` diff --git a/pages.de/osx/gfmt.md b/pages.de/osx/gfmt.md new file mode 100644 index 0000000000..9ccb593860 --- /dev/null +++ b/pages.de/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> Dieser Befehl ist ein Alias von `-p linux fmt`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux fmt` diff --git a/pages.de/osx/gfold.md b/pages.de/osx/gfold.md new file mode 100644 index 0000000000..02757e1d56 --- /dev/null +++ b/pages.de/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> Dieser Befehl ist ein Alias von `-p linux fold`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux fold` diff --git a/pages.de/osx/gftp.md b/pages.de/osx/gftp.md new file mode 100644 index 0000000000..927abc6256 --- /dev/null +++ b/pages.de/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> Dieser Befehl ist ein Alias von `-p linux ftp`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux ftp` diff --git a/pages.de/osx/ggrep.md b/pages.de/osx/ggrep.md new file mode 100644 index 0000000000..c9e7ac87e5 --- /dev/null +++ b/pages.de/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> Dieser Befehl ist ein Alias von `-p linux grep`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux grep` diff --git a/pages.de/osx/ggroups.md b/pages.de/osx/ggroups.md new file mode 100644 index 0000000000..b5c7910932 --- /dev/null +++ b/pages.de/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> Dieser Befehl ist ein Alias von `-p linux groups`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux groups` diff --git a/pages.de/osx/ghead.md b/pages.de/osx/ghead.md new file mode 100644 index 0000000000..d53b5dc706 --- /dev/null +++ b/pages.de/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> Dieser Befehl ist ein Alias von `-p linux head`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux head` diff --git a/pages.de/osx/ghostid.md b/pages.de/osx/ghostid.md new file mode 100644 index 0000000000..13cca705d6 --- /dev/null +++ b/pages.de/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> Dieser Befehl ist ein Alias von `-p linux hostid`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux hostid` diff --git a/pages.de/osx/ghostname.md b/pages.de/osx/ghostname.md new file mode 100644 index 0000000000..d2eb7ad177 --- /dev/null +++ b/pages.de/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> Dieser Befehl ist ein Alias von `-p linux hostname`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux hostname` diff --git a/pages.de/osx/gid.md b/pages.de/osx/gid.md new file mode 100644 index 0000000000..13a492611d --- /dev/null +++ b/pages.de/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> Dieser Befehl ist ein Alias von `-p linux id`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux id` diff --git a/pages.de/osx/gifconfig.md b/pages.de/osx/gifconfig.md new file mode 100644 index 0000000000..4590eea5b2 --- /dev/null +++ b/pages.de/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> Dieser Befehl ist ein Alias von `-p linux ifconfig`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux ifconfig` diff --git a/pages.de/osx/gindent.md b/pages.de/osx/gindent.md new file mode 100644 index 0000000000..c585d93f68 --- /dev/null +++ b/pages.de/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> Dieser Befehl ist ein Alias von `-p linux indent`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux indent` diff --git a/pages.de/osx/ginstall.md b/pages.de/osx/ginstall.md new file mode 100644 index 0000000000..3dc4d68616 --- /dev/null +++ b/pages.de/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> Dieser Befehl ist ein Alias von `-p linux install`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux install` diff --git a/pages.de/osx/gjoin.md b/pages.de/osx/gjoin.md new file mode 100644 index 0000000000..3432c5eb14 --- /dev/null +++ b/pages.de/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> Dieser Befehl ist ein Alias von `-p linux join`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux join` diff --git a/pages.de/osx/gkill.md b/pages.de/osx/gkill.md new file mode 100644 index 0000000000..03703d2e1a --- /dev/null +++ b/pages.de/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> Dieser Befehl ist ein Alias von `-p linux kill`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux kill` diff --git a/pages.de/osx/glibtool.md b/pages.de/osx/glibtool.md new file mode 100644 index 0000000000..fb426e7f6b --- /dev/null +++ b/pages.de/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> Dieser Befehl ist ein Alias von `-p linux libtool`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux libtool` diff --git a/pages.de/osx/glibtoolize.md b/pages.de/osx/glibtoolize.md new file mode 100644 index 0000000000..922c5210b8 --- /dev/null +++ b/pages.de/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> Dieser Befehl ist ein Alias von `-p linux libtoolize`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux libtoolize` diff --git a/pages.de/osx/glink.md b/pages.de/osx/glink.md new file mode 100644 index 0000000000..e319e6f435 --- /dev/null +++ b/pages.de/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> Dieser Befehl ist ein Alias von `-p linux link`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux link` diff --git a/pages.de/osx/gln.md b/pages.de/osx/gln.md new file mode 100644 index 0000000000..d1d21cc1e5 --- /dev/null +++ b/pages.de/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> Dieser Befehl ist ein Alias von `-p linux ln`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux ln` diff --git a/pages.de/osx/glocate.md b/pages.de/osx/glocate.md new file mode 100644 index 0000000000..10fcb54008 --- /dev/null +++ b/pages.de/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> Dieser Befehl ist ein Alias von `-p linux locate`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux locate` diff --git a/pages.de/osx/glogger.md b/pages.de/osx/glogger.md new file mode 100644 index 0000000000..f607aa4467 --- /dev/null +++ b/pages.de/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> Dieser Befehl ist ein Alias von `-p linux logger`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux logger` diff --git a/pages.de/osx/glogname.md b/pages.de/osx/glogname.md new file mode 100644 index 0000000000..921e0c97ec --- /dev/null +++ b/pages.de/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> Dieser Befehl ist ein Alias von `-p linux logname`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux logname` diff --git a/pages.de/osx/gls.md b/pages.de/osx/gls.md new file mode 100644 index 0000000000..56e4f29eeb --- /dev/null +++ b/pages.de/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> Dieser Befehl ist ein Alias von `-p linux ls`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux ls` diff --git a/pages.de/osx/gmake.md b/pages.de/osx/gmake.md new file mode 100644 index 0000000000..020a601330 --- /dev/null +++ b/pages.de/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> Dieser Befehl ist ein Alias von `-p linux make`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux make` diff --git a/pages.de/osx/gmd5sum.md b/pages.de/osx/gmd5sum.md new file mode 100644 index 0000000000..d90aed6414 --- /dev/null +++ b/pages.de/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> Dieser Befehl ist ein Alias von `-p linux md5sum`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux md5sum` diff --git a/pages.de/osx/gmkdir.md b/pages.de/osx/gmkdir.md new file mode 100644 index 0000000000..51b2a1f2cc --- /dev/null +++ b/pages.de/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> Dieser Befehl ist ein Alias von `-p linux mkdir`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux mkdir` diff --git a/pages.de/osx/gmkfifo.md b/pages.de/osx/gmkfifo.md new file mode 100644 index 0000000000..fbb25092f6 --- /dev/null +++ b/pages.de/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> Dieser Befehl ist ein Alias von `-p linux mkfifo`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux mkfifo` diff --git a/pages.de/osx/gmknod.md b/pages.de/osx/gmknod.md new file mode 100644 index 0000000000..aaa2c0b5ab --- /dev/null +++ b/pages.de/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> Dieser Befehl ist ein Alias von `-p linux mknod`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux mknod` diff --git a/pages.de/osx/gmktemp.md b/pages.de/osx/gmktemp.md new file mode 100644 index 0000000000..8e37f09f13 --- /dev/null +++ b/pages.de/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> Dieser Befehl ist ein Alias von `-p linux mktemp`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux mktemp` diff --git a/pages.de/osx/gmv.md b/pages.de/osx/gmv.md new file mode 100644 index 0000000000..2ee95ef994 --- /dev/null +++ b/pages.de/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> Dieser Befehl ist ein Alias von `-p linux mv`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux mv` diff --git a/pages.de/osx/gnice.md b/pages.de/osx/gnice.md new file mode 100644 index 0000000000..2be7612e1d --- /dev/null +++ b/pages.de/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> Dieser Befehl ist ein Alias von `-p linux nice`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux nice` diff --git a/pages.de/osx/gnl.md b/pages.de/osx/gnl.md new file mode 100644 index 0000000000..9ba6098e52 --- /dev/null +++ b/pages.de/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> Dieser Befehl ist ein Alias von `-p linux nl`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux nl` diff --git a/pages.de/osx/gnohup.md b/pages.de/osx/gnohup.md new file mode 100644 index 0000000000..ffcc774663 --- /dev/null +++ b/pages.de/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> Dieser Befehl ist ein Alias von `-p linux nohup`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux nohup` diff --git a/pages.de/osx/gnproc.md b/pages.de/osx/gnproc.md new file mode 100644 index 0000000000..12cc95cc68 --- /dev/null +++ b/pages.de/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> Dieser Befehl ist ein Alias von `-p linux nproc`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux nproc` diff --git a/pages.de/osx/gnumfmt.md b/pages.de/osx/gnumfmt.md new file mode 100644 index 0000000000..c05ddc0a6e --- /dev/null +++ b/pages.de/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> Dieser Befehl ist ein Alias von `-p linux numfmt`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux numfmt` diff --git a/pages.de/osx/god.md b/pages.de/osx/god.md new file mode 100644 index 0000000000..6a3bf6973d --- /dev/null +++ b/pages.de/osx/god.md @@ -0,0 +1,7 @@ +# god + +> Dieser Befehl ist ein Alias von `-p linux od`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux od` diff --git a/pages.de/osx/gpaste.md b/pages.de/osx/gpaste.md new file mode 100644 index 0000000000..62ccb4fad7 --- /dev/null +++ b/pages.de/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> Dieser Befehl ist ein Alias von `-p linux paste`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux paste` diff --git a/pages.de/osx/gpathchk.md b/pages.de/osx/gpathchk.md new file mode 100644 index 0000000000..42f587fea9 --- /dev/null +++ b/pages.de/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> Dieser Befehl ist ein Alias von `-p linux pathchk`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux pathchk` diff --git a/pages.de/osx/gping.md b/pages.de/osx/gping.md new file mode 100644 index 0000000000..9ba1e32e00 --- /dev/null +++ b/pages.de/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> Dieser Befehl ist ein Alias von `-p linux ping`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux ping` diff --git a/pages.de/osx/gping6.md b/pages.de/osx/gping6.md new file mode 100644 index 0000000000..03ed8c50f7 --- /dev/null +++ b/pages.de/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> Dieser Befehl ist ein Alias von `-p linux ping6`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux ping6` diff --git a/pages.de/osx/gpinky.md b/pages.de/osx/gpinky.md new file mode 100644 index 0000000000..ee4983198f --- /dev/null +++ b/pages.de/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> Dieser Befehl ist ein Alias von `-p linux pinky`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux pinky` diff --git a/pages.de/osx/gpr.md b/pages.de/osx/gpr.md new file mode 100644 index 0000000000..380f48e672 --- /dev/null +++ b/pages.de/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> Dieser Befehl ist ein Alias von `-p linux pr`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux pr` diff --git a/pages.de/osx/gprintenv.md b/pages.de/osx/gprintenv.md new file mode 100644 index 0000000000..ac9051b658 --- /dev/null +++ b/pages.de/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> Dieser Befehl ist ein Alias von `-p linux printenv`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux printenv` diff --git a/pages.de/osx/gprintf.md b/pages.de/osx/gprintf.md new file mode 100644 index 0000000000..3f462f30f2 --- /dev/null +++ b/pages.de/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> Dieser Befehl ist ein Alias von `-p linux printf`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux printf` diff --git a/pages.de/osx/gptx.md b/pages.de/osx/gptx.md new file mode 100644 index 0000000000..d78977f038 --- /dev/null +++ b/pages.de/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> Dieser Befehl ist ein Alias von `-p linux ptx`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux ptx` diff --git a/pages.de/osx/gpwd.md b/pages.de/osx/gpwd.md new file mode 100644 index 0000000000..823026e21a --- /dev/null +++ b/pages.de/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> Dieser Befehl ist ein Alias von `-p linux pwd`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux pwd` diff --git a/pages.de/osx/grcp.md b/pages.de/osx/grcp.md new file mode 100644 index 0000000000..fa5fbeed0d --- /dev/null +++ b/pages.de/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> Dieser Befehl ist ein Alias von `-p linux rcp`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux rcp` diff --git a/pages.de/osx/greadlink.md b/pages.de/osx/greadlink.md new file mode 100644 index 0000000000..bf257cc18c --- /dev/null +++ b/pages.de/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> Dieser Befehl ist ein Alias von `-p linux readlink`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux readlink` diff --git a/pages.de/osx/grealpath.md b/pages.de/osx/grealpath.md new file mode 100644 index 0000000000..b8ee65b922 --- /dev/null +++ b/pages.de/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> Dieser Befehl ist ein Alias von `-p linux realpath`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux realpath` diff --git a/pages.de/osx/grexec.md b/pages.de/osx/grexec.md new file mode 100644 index 0000000000..5052ac0dd3 --- /dev/null +++ b/pages.de/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> Dieser Befehl ist ein Alias von `-p linux rexec`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux rexec` diff --git a/pages.de/osx/grlogin.md b/pages.de/osx/grlogin.md new file mode 100644 index 0000000000..386eb1218b --- /dev/null +++ b/pages.de/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> Dieser Befehl ist ein Alias von `-p linux rlogin`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux rlogin` diff --git a/pages.de/osx/grm.md b/pages.de/osx/grm.md new file mode 100644 index 0000000000..c2fbd3425b --- /dev/null +++ b/pages.de/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> Dieser Befehl ist ein Alias von `-p linux rm`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux rm` diff --git a/pages.de/osx/grmdir.md b/pages.de/osx/grmdir.md new file mode 100644 index 0000000000..9e33de87ed --- /dev/null +++ b/pages.de/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> Dieser Befehl ist ein Alias von `-p linux rmdir`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux rmdir` diff --git a/pages.de/osx/grsh.md b/pages.de/osx/grsh.md new file mode 100644 index 0000000000..3701b0ee0a --- /dev/null +++ b/pages.de/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> Dieser Befehl ist ein Alias von `-p linux rsh`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux rsh` diff --git a/pages.de/osx/gruncon.md b/pages.de/osx/gruncon.md new file mode 100644 index 0000000000..8e4bf75bf3 --- /dev/null +++ b/pages.de/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> Dieser Befehl ist ein Alias von `-p linux runcon`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux runcon` diff --git a/pages.de/osx/gsed.md b/pages.de/osx/gsed.md new file mode 100644 index 0000000000..271804f100 --- /dev/null +++ b/pages.de/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> Dieser Befehl ist ein Alias von `-p linux sed`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux sed` diff --git a/pages.de/osx/gseq.md b/pages.de/osx/gseq.md new file mode 100644 index 0000000000..a0af4f12c9 --- /dev/null +++ b/pages.de/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> Dieser Befehl ist ein Alias von `-p linux seq`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux seq` diff --git a/pages.de/osx/gsha1sum.md b/pages.de/osx/gsha1sum.md new file mode 100644 index 0000000000..51c7304ede --- /dev/null +++ b/pages.de/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> Dieser Befehl ist ein Alias von `-p linux sha1sum`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux sha1sum` diff --git a/pages.de/osx/gsha224sum.md b/pages.de/osx/gsha224sum.md new file mode 100644 index 0000000000..9e14710821 --- /dev/null +++ b/pages.de/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> Dieser Befehl ist ein Alias von `-p linux sha224sum`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux sha224sum` diff --git a/pages.de/osx/gsha256sum.md b/pages.de/osx/gsha256sum.md new file mode 100644 index 0000000000..2041a8f85e --- /dev/null +++ b/pages.de/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> Dieser Befehl ist ein Alias von `-p linux sha256sum`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux sha256sum` diff --git a/pages.de/osx/gsha384sum.md b/pages.de/osx/gsha384sum.md new file mode 100644 index 0000000000..bf1b02e960 --- /dev/null +++ b/pages.de/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> Dieser Befehl ist ein Alias von `-p linux sha384sum`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux sha384sum` diff --git a/pages.de/osx/gsha512sum.md b/pages.de/osx/gsha512sum.md new file mode 100644 index 0000000000..d93c90371a --- /dev/null +++ b/pages.de/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> Dieser Befehl ist ein Alias von `-p linux sha512sum`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux sha512sum` diff --git a/pages.de/osx/gshred.md b/pages.de/osx/gshred.md new file mode 100644 index 0000000000..9771335953 --- /dev/null +++ b/pages.de/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> Dieser Befehl ist ein Alias von `-p linux shred`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux shred` diff --git a/pages.de/osx/gshuf.md b/pages.de/osx/gshuf.md new file mode 100644 index 0000000000..10a83c49be --- /dev/null +++ b/pages.de/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> Dieser Befehl ist ein Alias von `-p linux shuf`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux shuf` diff --git a/pages.de/osx/gsleep.md b/pages.de/osx/gsleep.md new file mode 100644 index 0000000000..611562abab --- /dev/null +++ b/pages.de/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> Dieser Befehl ist ein Alias von `-p linux sleep`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux sleep` diff --git a/pages.de/osx/gsort.md b/pages.de/osx/gsort.md new file mode 100644 index 0000000000..1da587df98 --- /dev/null +++ b/pages.de/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> Dieser Befehl ist ein Alias von `-p linux sort`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux sort` diff --git a/pages.de/osx/gsplit.md b/pages.de/osx/gsplit.md new file mode 100644 index 0000000000..b5f296acc3 --- /dev/null +++ b/pages.de/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> Dieser Befehl ist ein Alias von `-p linux split`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux split` diff --git a/pages.de/osx/gstat.md b/pages.de/osx/gstat.md new file mode 100644 index 0000000000..0a4aafb12f --- /dev/null +++ b/pages.de/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> Dieser Befehl ist ein Alias von `-p linux stat`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux stat` diff --git a/pages.de/osx/gstdbuf.md b/pages.de/osx/gstdbuf.md new file mode 100644 index 0000000000..ff055e2ee3 --- /dev/null +++ b/pages.de/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> Dieser Befehl ist ein Alias von `-p linux stdbuf`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux stdbuf` diff --git a/pages.de/osx/gstty.md b/pages.de/osx/gstty.md new file mode 100644 index 0000000000..181783ae94 --- /dev/null +++ b/pages.de/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> Dieser Befehl ist ein Alias von `-p linux stty`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux stty` diff --git a/pages.de/osx/gsum.md b/pages.de/osx/gsum.md new file mode 100644 index 0000000000..6fa289743c --- /dev/null +++ b/pages.de/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> Dieser Befehl ist ein Alias von `-p linux sum`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux sum` diff --git a/pages.de/osx/gsync.md b/pages.de/osx/gsync.md new file mode 100644 index 0000000000..12947535ce --- /dev/null +++ b/pages.de/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> Dieser Befehl ist ein Alias von `-p linux sync`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux sync` diff --git a/pages.de/osx/gtac.md b/pages.de/osx/gtac.md new file mode 100644 index 0000000000..f37f0abdbc --- /dev/null +++ b/pages.de/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> Dieser Befehl ist ein Alias von `-p linux tac`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux tac` diff --git a/pages.de/osx/gtail.md b/pages.de/osx/gtail.md new file mode 100644 index 0000000000..9a78b41fdb --- /dev/null +++ b/pages.de/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> Dieser Befehl ist ein Alias von `-p linux tail`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux tail` diff --git a/pages.de/osx/gtalk.md b/pages.de/osx/gtalk.md new file mode 100644 index 0000000000..765a585783 --- /dev/null +++ b/pages.de/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> Dieser Befehl ist ein Alias von `-p linux talk`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux talk` diff --git a/pages.de/osx/gtar.md b/pages.de/osx/gtar.md new file mode 100644 index 0000000000..c5fa5c50ae --- /dev/null +++ b/pages.de/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> Dieser Befehl ist ein Alias von `-p linux tar`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux tar` diff --git a/pages.de/osx/gtee.md b/pages.de/osx/gtee.md new file mode 100644 index 0000000000..eb56a7f34c --- /dev/null +++ b/pages.de/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> Dieser Befehl ist ein Alias von `-p linux tee`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux tee` diff --git a/pages.de/osx/gtelnet.md b/pages.de/osx/gtelnet.md new file mode 100644 index 0000000000..795dca86a7 --- /dev/null +++ b/pages.de/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> Dieser Befehl ist ein Alias von `-p linux telnet`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux telnet` diff --git a/pages.de/osx/gtest.md b/pages.de/osx/gtest.md new file mode 100644 index 0000000000..72c42f6cb1 --- /dev/null +++ b/pages.de/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> Dieser Befehl ist ein Alias von `-p linux test`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux test` diff --git a/pages.de/osx/gtftp.md b/pages.de/osx/gtftp.md new file mode 100644 index 0000000000..efb4a6c529 --- /dev/null +++ b/pages.de/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> Dieser Befehl ist ein Alias von `-p linux tftp`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux tftp` diff --git a/pages.de/osx/gtime.md b/pages.de/osx/gtime.md new file mode 100644 index 0000000000..221bd2353b --- /dev/null +++ b/pages.de/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> Dieser Befehl ist ein Alias von `-p linux time`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux time` diff --git a/pages.de/osx/gtimeout.md b/pages.de/osx/gtimeout.md new file mode 100644 index 0000000000..5b8ca21d58 --- /dev/null +++ b/pages.de/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> Dieser Befehl ist ein Alias von `-p linux timeout`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux timeout` diff --git a/pages.de/osx/gtouch.md b/pages.de/osx/gtouch.md new file mode 100644 index 0000000000..4e518c7fa3 --- /dev/null +++ b/pages.de/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> Dieser Befehl ist ein Alias von `-p linux touch`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux touch` diff --git a/pages.de/osx/gtr.md b/pages.de/osx/gtr.md new file mode 100644 index 0000000000..bb625f6117 --- /dev/null +++ b/pages.de/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> Dieser Befehl ist ein Alias von `-p linux tr`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux tr` diff --git a/pages.de/osx/gtraceroute.md b/pages.de/osx/gtraceroute.md new file mode 100644 index 0000000000..100d56e7ce --- /dev/null +++ b/pages.de/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> Dieser Befehl ist ein Alias von `-p linux traceroute`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux traceroute` diff --git a/pages.de/osx/gtrue.md b/pages.de/osx/gtrue.md new file mode 100644 index 0000000000..c91c4b8ed0 --- /dev/null +++ b/pages.de/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> Dieser Befehl ist ein Alias von `-p linux true`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux true` diff --git a/pages.de/osx/gtruncate.md b/pages.de/osx/gtruncate.md new file mode 100644 index 0000000000..69140cf64f --- /dev/null +++ b/pages.de/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> Dieser Befehl ist ein Alias von `-p linux truncate`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux truncate` diff --git a/pages.de/osx/gtsort.md b/pages.de/osx/gtsort.md new file mode 100644 index 0000000000..884c0ce789 --- /dev/null +++ b/pages.de/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> Dieser Befehl ist ein Alias von `-p linux tsort`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux tsort` diff --git a/pages.de/osx/gtty.md b/pages.de/osx/gtty.md new file mode 100644 index 0000000000..657f0d9ce9 --- /dev/null +++ b/pages.de/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> Dieser Befehl ist ein Alias von `-p linux tty`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux tty` diff --git a/pages.de/osx/guname.md b/pages.de/osx/guname.md new file mode 100644 index 0000000000..4fbc6ef8ab --- /dev/null +++ b/pages.de/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> Dieser Befehl ist ein Alias von `-p linux uname`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux uname` diff --git a/pages.de/osx/gunexpand.md b/pages.de/osx/gunexpand.md new file mode 100644 index 0000000000..e5085aa863 --- /dev/null +++ b/pages.de/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> Dieser Befehl ist ein Alias von `-p linux unexpand`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux unexpand` diff --git a/pages.de/osx/guniq.md b/pages.de/osx/guniq.md new file mode 100644 index 0000000000..0a71c8fe7f --- /dev/null +++ b/pages.de/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> Dieser Befehl ist ein Alias von `-p linux uniq`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux uniq` diff --git a/pages.de/osx/gunits.md b/pages.de/osx/gunits.md new file mode 100644 index 0000000000..2a31626d2a --- /dev/null +++ b/pages.de/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> Dieser Befehl ist ein Alias von `-p linux units`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux units` diff --git a/pages.de/osx/gunlink.md b/pages.de/osx/gunlink.md new file mode 100644 index 0000000000..5f1355180f --- /dev/null +++ b/pages.de/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> Dieser Befehl ist ein Alias von `-p linux unlink`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux unlink` diff --git a/pages.de/osx/gupdatedb.md b/pages.de/osx/gupdatedb.md new file mode 100644 index 0000000000..91a35ed7ea --- /dev/null +++ b/pages.de/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> Dieser Befehl ist ein Alias von `-p linux updatedb`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux updatedb` diff --git a/pages.de/osx/guptime.md b/pages.de/osx/guptime.md new file mode 100644 index 0000000000..ef7723e262 --- /dev/null +++ b/pages.de/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> Dieser Befehl ist ein Alias von `-p linux uptime`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux uptime` diff --git a/pages.de/osx/gusers.md b/pages.de/osx/gusers.md new file mode 100644 index 0000000000..54b14b3392 --- /dev/null +++ b/pages.de/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> Dieser Befehl ist ein Alias von `-p linux users`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux users` diff --git a/pages.de/osx/gvdir.md b/pages.de/osx/gvdir.md new file mode 100644 index 0000000000..b21f44dd5b --- /dev/null +++ b/pages.de/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> Dieser Befehl ist ein Alias von `-p linux vdir`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux vdir` diff --git a/pages.de/osx/gwc.md b/pages.de/osx/gwc.md new file mode 100644 index 0000000000..0a948dfc06 --- /dev/null +++ b/pages.de/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> Dieser Befehl ist ein Alias von `-p linux wc`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux wc` diff --git a/pages.de/osx/gwhich.md b/pages.de/osx/gwhich.md new file mode 100644 index 0000000000..482e1a9566 --- /dev/null +++ b/pages.de/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> Dieser Befehl ist ein Alias von `-p linux which`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux which` diff --git a/pages.de/osx/gwho.md b/pages.de/osx/gwho.md new file mode 100644 index 0000000000..6af3afba11 --- /dev/null +++ b/pages.de/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> Dieser Befehl ist ein Alias von `-p linux who`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux who` diff --git a/pages.de/osx/gwhoami.md b/pages.de/osx/gwhoami.md new file mode 100644 index 0000000000..bc822416e3 --- /dev/null +++ b/pages.de/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> Dieser Befehl ist ein Alias von `-p linux whoami`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux whoami` diff --git a/pages.de/osx/gwhois.md b/pages.de/osx/gwhois.md new file mode 100644 index 0000000000..c3bdc1cf0a --- /dev/null +++ b/pages.de/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> Dieser Befehl ist ein Alias von `-p linux whois`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux whois` diff --git a/pages.de/osx/gxargs.md b/pages.de/osx/gxargs.md new file mode 100644 index 0000000000..dff01f1ca8 --- /dev/null +++ b/pages.de/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> Dieser Befehl ist ein Alias von `-p linux xargs`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux xargs` diff --git a/pages.de/osx/gyes.md b/pages.de/osx/gyes.md new file mode 100644 index 0000000000..ea7c29d8c9 --- /dev/null +++ b/pages.de/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> Dieser Befehl ist ein Alias von `-p linux yes`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr -p linux yes` diff --git a/pages.de/osx/launchd.md b/pages.de/osx/launchd.md new file mode 100644 index 0000000000..85cfe81118 --- /dev/null +++ b/pages.de/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> Dieser Befehl ist ein Alias von `launchctl`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr launchctl` diff --git a/pages.de/osx/md5.md b/pages.de/osx/md5.md index 1d0ed89c23..68d7965340 100644 --- a/pages.de/osx/md5.md +++ b/pages.de/osx/md5.md @@ -1,19 +1,19 @@ # md5 > Berechne kryptografische MD5-Prüfsummen. -> Mehr Informationen: . +> Weitere Informationen: . - Berechne die MD5-Prüfsumme einer Datei und gib sie mit Dateinamen auf der Konsole aus: -`md5 {{datei_name}}` +`md5 {{pfad/zu/datei}}` - Berechne die MD5-Prüfsumme mehrerer Dateien und gib sie mit Dateinamen auf der Konsole aus: -`md5 {{datei_name_1}} {{datei_name_2}}` +`md5 {{pfad/zu/datei1 pfad/zu/datei2 ...}}` - Gib nur die MD5-Prüfsumme auf der Konsole aus: -`md5 -q {{datei_name}}` +`md5 -q {{pfad/zu/datei}}` - Berechne die MD5-Prüfsumme für den gegebenen Text: diff --git a/pages.de/windows/chrome.md b/pages.de/windows/chrome.md new file mode 100644 index 0000000000..d43983342d --- /dev/null +++ b/pages.de/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> Dieser Befehl ist ein Alias von `chromium`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr chromium` diff --git a/pages.de/windows/cipher.md b/pages.de/windows/cipher.md new file mode 100644 index 0000000000..c4dc7889f5 --- /dev/null +++ b/pages.de/windows/cipher.md @@ -0,0 +1,20 @@ +# cipher + +> Zeigt oder Verändert die Verschlüsselung von Verzeichnissen und Dateien auf NTFS-Laufwerken. +> Weitere Informationen: . + +- Informationen über die Verschlüsselung einer bestimmten Datei oder eines Verzeichnisses anzeigen lassen: + +`cipher /c:{{pfad/zu/datei_oder_verzeichnis}}` + +- Verschlüssle eine Datei oder ein Verzeichnis (nachträglich hinzugefügte Dateien werden ebenfalls verschlüsselt, da das Verzeichnis markiert ist): + +`cipher /e:{{pfad/zu/datei_oder_verzeichnis}}` + +- Entschlüssle eine Datei oder ein Verzeichnis: + +`cipher /d:{{pfad/zu/datei_oder_verzeichnis}}` + +- Entferne eine Datei oder ein Verzeichnis sicher: + +`cipher /w:{{pfad/zu/datei_oder_verzeichnis}}` diff --git a/pages.de/windows/clip.md b/pages.de/windows/clip.md new file mode 100644 index 0000000000..201271b91f --- /dev/null +++ b/pages.de/windows/clip.md @@ -0,0 +1,20 @@ +# clip + +> Kopieren von Inhalten der Befehlsausgabe in die Windows Zwischenablage. +> Weitere Informationen: . + +- Kopiere die Ausgabe eines Befehls in die Windows Zwischenablage: + +`{{dir}} | clip` + +- Kopiere den Inhalt einer Datei in die Windows Zwischenablage: + +`clip < {{pfad/zu/datei.txt}}` + +- Kopiere Text mit einem nachfolgenden Zeilenumbruch in die Windows Zwischenablage: + +`echo {{irgendein text}} | clip` + +- Kopiere Text ohne nachfolgenden Zeilenumbruch in die Windows Zwischenablage: + +`echo | set /p="irgendein text" | clip` diff --git a/pages.de/windows/cpush.md b/pages.de/windows/cpush.md new file mode 100644 index 0000000000..f00f2f00c4 --- /dev/null +++ b/pages.de/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> Dieser Befehl ist ein Alias von `choco-push`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr choco-push` diff --git a/pages.de/windows/iwr.md b/pages.de/windows/iwr.md new file mode 100644 index 0000000000..86978ee521 --- /dev/null +++ b/pages.de/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> Dieser Befehl ist ein Alias von `invoke-webrequest`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr invoke-webrequest` diff --git a/pages.de/windows/pwsh-where.md b/pages.de/windows/pwsh-where.md new file mode 100644 index 0000000000..bb91ad6f4f --- /dev/null +++ b/pages.de/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> Dieser Befehl ist ein Alias von `Where-Object`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr Where-Object` diff --git a/pages.de/windows/rd.md b/pages.de/windows/rd.md new file mode 100644 index 0000000000..5039d0077b --- /dev/null +++ b/pages.de/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> Dieser Befehl ist ein Alias von `rmdir`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr rmdir` diff --git a/pages.de/windows/sls.md b/pages.de/windows/sls.md new file mode 100644 index 0000000000..f91da456b8 --- /dev/null +++ b/pages.de/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> Dieser Befehl ist ein Alias von `where-object`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr where-object` diff --git a/pages.de/windows/wget.md b/pages.de/windows/wget.md new file mode 100644 index 0000000000..f950f386f1 --- /dev/null +++ b/pages.de/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> Dieser Befehl ist ein Alias von `wget -p common`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr wget -p common` diff --git a/pages.en b/pages.en new file mode 120000 index 0000000000..5c9227a37d --- /dev/null +++ b/pages.en @@ -0,0 +1 @@ +pages \ No newline at end of file diff --git a/pages.es/android/am.md b/pages.es/android/am.md new file mode 100644 index 0000000000..01269cae3c --- /dev/null +++ b/pages.es/android/am.md @@ -0,0 +1,20 @@ +# am + +> Administrador de actividades de Android. +> Más información: . + +- Inicia una actividad específica: + +`am start -n {{com.android.settings/.Settings}}` + +- Inicia una actividad y le suministra datos: + +`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}` + +- Inicia una actividad que coincide con una acción y categoría específicas: + +`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}` + +- Convierte una intención en una URI: + +`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}` diff --git a/pages.es/android/bugreport.md b/pages.es/android/bugreport.md new file mode 100644 index 0000000000..0473398d93 --- /dev/null +++ b/pages.es/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> Muestra un informe de error de Android. +> Este comando solo se puede usar a través de `adb shell`. +> Más información: . + +- Muestra un informe completo de errores de un dispositivo Android: + +`bugreport` diff --git a/pages.es/android/bugreportz.md b/pages.es/android/bugreportz.md new file mode 100644 index 0000000000..23722a464f --- /dev/null +++ b/pages.es/android/bugreportz.md @@ -0,0 +1,21 @@ +# bugreportz + +> Genera un informe comprimido de errores de Android. +> Este comando solo se puede usar a través de `adb shell`. +> Más información: . + +- Genera un informe completo de errores comprimido de un dispositivo Android: + +`bugreportz` + +- Muestra el progreso de una operación `bugreportz` en ejecución: + +`bugreportz -p` + +- Muestra la versión de `bugreportz`: + +`bugreportz -v` + +- Muestra ayuda: + +`bugreportz -h` diff --git a/pages.es/android/cmd.md b/pages.es/android/cmd.md new file mode 100644 index 0000000000..490d9810c9 --- /dev/null +++ b/pages.es/android/cmd.md @@ -0,0 +1,16 @@ +# cmd + +> Administrador de servicios Android. +> Más información: . + +- Enumera todos los servicios en ejecución: + +`cmd -l` + +- Llama a un servicio específico: + +`cmd {{alarm}}` + +- Llama a un servicio con argumentos: + +`cmd {{vibrator}} {{vibrate 300}}` diff --git a/pages.es/android/dalvikvm.md b/pages.es/android/dalvikvm.md new file mode 100644 index 0000000000..7b43506bb5 --- /dev/null +++ b/pages.es/android/dalvikvm.md @@ -0,0 +1,8 @@ +# dalvikvm + +> Máquina virtual Java en Android. +> Más información: . + +- Inicia un programa Java: + +`dalvikvm -classpath {{ruta/al/archivo.jar}} {{classname}}` diff --git a/pages.es/android/input.md b/pages.es/android/input.md new file mode 100644 index 0000000000..b0550a37be --- /dev/null +++ b/pages.es/android/input.md @@ -0,0 +1,25 @@ +# input + +> Envía códigos de eventos o gestos de pantalla táctil a un dispositivo Android. +> Este comando solo se puede usar a través de `adb shell`. +> Más información: . + +- Envía un código de evento para un solo carácter a un dispositivo Android: + +`input keyevent {{codigo_evento}}` + +- Envía un texto a un dispositivo Android (`%s` representa espacios): + +`input text "{{texto}}"` + +- Envía una pulsación a un dispositivo Android: + +`input tap {{x_pos}} {{y_pos}}` + +- Envía un gesto de deslizamiento a un dispositivo Android: + +`input swipe {{x_start}} {{y_start}} {{x_end}} {{y_end}} {{duracion_en_ms}}` + +- Enviar una pulsación larga a un dispositivo Android mediante un gesto de deslizamiento: + +`input swipe {{x_pos}} {{y_pos}} {{x_pos}} {{y_pos}} {{duracion_en_ms}}` diff --git a/pages.es/android/logcat.md b/pages.es/android/logcat.md index cffff49837..5817d0e729 100644 --- a/pages.es/android/logcat.md +++ b/pages.es/android/logcat.md @@ -11,6 +11,14 @@ `logcat -f {{ruta/al/archivo}}` -- Muestra líneas que coincidan con una expresión regular: +- Muestra registros que coincidan con una expresión regular: `logcat --regex {{expresión_regular}}` + +- Muestra registros de un proceso específico: + +`logcat --pid={{pid}}` + +- Muestra registros del proceso de un paquete específico: + +`logcat --pid=$(pidof -s {{paquete}})` diff --git a/pages.es/android/pkg.md b/pages.es/android/pkg.md new file mode 100644 index 0000000000..2aec7f6d0a --- /dev/null +++ b/pages.es/android/pkg.md @@ -0,0 +1,24 @@ +# pkg + +> Utilidad de gestión de paquetes para Termux. +> Más información: . + +- Actualiza todos los paquetes instalados: + +`pkg upgrade` + +- Instala un paquete: + +`pkg install {{paquete}}` + +- Desinstala un paquete: + +`pkg uninstall {{paquete}}` + +- Reinstala un paquete: + +`pkg reinstall {{paquete}}` + +- Busca un paquete: + +`pkg search {{paquete}}` diff --git a/pages.es/android/pm.md b/pages.es/android/pm.md new file mode 100644 index 0000000000..fd6a38145a --- /dev/null +++ b/pages.es/android/pm.md @@ -0,0 +1,24 @@ +# pm + +> Muestra información sobre aplicaciones en un dispositivo Android. +> Más información: . + +- Genera una lista de todas las aplicaciones instaladas: + +`pm list packages` + +- Genera una lista de todas las aplicaciones del sistema instaladas: + +`pm list packages -s` + +- Genera una lista de todas las aplicaciones de terceros instaladas: + +`pm list packages -3` + +- Genera una lista de aplicaciones que coinciden con determinadas palabras clave: + +`pm list packages {{palabras_clave}}` + +- Imprime la ruta del APK de una aplicación específica: + +`pm path {{app}}` diff --git a/pages.es/android/settings.md b/pages.es/android/settings.md new file mode 100644 index 0000000000..683f3c9816 --- /dev/null +++ b/pages.es/android/settings.md @@ -0,0 +1,20 @@ +# settings + +> Muestra información sobre el sistema operativo Android. +> Más información: . + +- Muestra una lista de configuraciones en el espacio de nombres `global`: + +`settings list {{global}}` + +- Obtiene el valor de una configuración específica: + +`settings get {{global}} {{airplane_mode_on}}` + +- Establece el valor de un ajuste: + +`settings put {{system}} {{screen_brightness}} {{42}}` + +- Elimina un ajuste específico: + +`settings delete {{secure}} {{screensaver_enabled}}` diff --git a/pages.es/common/2to3.md b/pages.es/common/2to3.md new file mode 100644 index 0000000000..1c2c327463 --- /dev/null +++ b/pages.es/common/2to3.md @@ -0,0 +1,32 @@ +# 2to3 + +> Conversión automatizada de código Python 2 a 3. +> Más información: . + +- Muestra los cambios que se realizarían sin realizarlos (simulacro): + +`2to3 {{ruta/a/archivo.py.py}}` + +- Convierte un archivo Python 2 a Python 3: + +`2to3 --write {{ruta/a/archivo.py}}` + +- Convierte funciones específicas del lenguaje Python 2 a Python 3: + +`2to3 --write {{ruta/a/archivo.py}} --fix={{raw_input}} --fix={{print}}` + +- Convierte todas las funciones del lenguaje Python 2 excepto las especificadas a Python 3: + +`2to3 --write {{ruta/a/archivo.py}} --nofix={{has_key}} --nofix={{isinstance}}` + +- Muestra una lista de todas las características disponibles del lenguaje que se pueden convertir de Python 2 a Python 3: + +`2to3 --list-fixes` + +- Convierte todos los archivos Python 2 en un directorio a Python 3: + +`2to3 --output-dir={{ruta/a/directorio_python3}} --write-unchanged-files --nobackups {{ruta/a/directorio_python2}}` + +- Ejecuta 2to3 con varios subprocesos: + +`2to3 --processes={{1..infinity}} --output-dir={{ruta/a/directorio_python3}} --write --nobackups --no-diff {{ruta/a/directorio_python2}}` diff --git a/pages.es/common/7z.md b/pages.es/common/7z.md index 3751169699..8da2a264f8 100644 --- a/pages.es/common/7z.md +++ b/pages.es/common/7z.md @@ -1,7 +1,7 @@ # 7z > Un compresor de archivos con un alto ratio de compresión. -> Más información: . +> Más información: . - Comprime un archivo o un directorio: @@ -19,7 +19,7 @@ `7z x {{archivo_comprimido.7z}} -o {{ruta/donde/extraer}}` -- Extrae un archivo comprimido a stdout: +- Extrae un archivo comprimido a `stdout`: `7z x {{archivo_comprimido.7z}} -so` diff --git a/pages.es/common/7za.md b/pages.es/common/7za.md new file mode 100644 index 0000000000..739e1a025f --- /dev/null +++ b/pages.es/common/7za.md @@ -0,0 +1,37 @@ +# 7za + +> Archivador de archivos con una alta relación de compresión. +> Similar a `7z`, salvo que admite menos tipos de archivos pero es multiplataforma. +> Más información: . + +- [a]rchivar un archivo o directorio: + +`7za a {{ruta/al/archivo.7z}} {{ruta/al/archivo_o_directorio}}` + +- Encriptar un archivo existente (incluyendo nombres de archivos): + +`7za a {{ruta/al/encriptado.7z}} -p{{contraseña}} -mhe={{on}} {{ruta/al/archivo.7z}}` + +- E[x]traer un archivo preservando la estructura de directorios originales: + +`7za x {{ruta/al/archivo.7z}}` + +- E[x]traer un archivo a un directorio específico: + +`7za x {{ruta/al/archivo.7z}} -o{{ruta/de/salida}}` + +- E[x]traer un archivo a `stdout`: + +`7za x {{ruta/al/archivo.7z}} -so` + +- [a]rchivar usando un tipo de archivo específico: + +`7za a -t{{7z|bzip2|gzip|lzip|tar|...}} {{ruta/al/archivo.7z}} {{ruta/al/archivo_o_directorio}}` + +- [l]ista los contenidos de un archivo: + +`7za l {{ruta/al/archivo.7z}}` + +- Lista tipos de archivos disponibles: + +`7za i` diff --git a/pages.es/common/7zr.md b/pages.es/common/7zr.md new file mode 100644 index 0000000000..9e79bd1ba9 --- /dev/null +++ b/pages.es/common/7zr.md @@ -0,0 +1,33 @@ +# 7zr + +> Archivador de ficheros con un alto ratio de compresión. +> Similar a `7z` excepto que sólo soporta ficheros `.7z`. +> Más información: . + +- [a]rchiva un archivo o directorio: + +`7zr a {{ruta/al/archivo.7z}} {{ruta/al/archivo_o_directorio}}` + +- Cifra un archivo existente (incluidos los nombres de los archivos): + +`7zr a {{ruta/al/archivo.7z}} -p{{contraseña}} -mhe={{on}} {{ruta/al/archivo.7z}}` + +- E[x]trae un archivo conservando la estructura de directorios original: + +`7zr x {{ruta/al/archivo.7z}}` + +- E[x]trae un archivo a un directorio específico: + +`7zr x {{ruta/al/larchivo.7z}} -o{ruta/de/salida}}` + +- E[x]trae un archivo a `stdout`: + +`7zr x {{ruta/al/archivo.7z}} -so` + +- [l]ista el contenido de un archivo: + +`7zr l {{ruta/al/archivo.7z}}` + +- Lista los tipos de archivo disponibles: + +`7zr i` diff --git a/pages.es/common/[.md b/pages.es/common/[.md index 844a39d9c9..0d78257577 100644 --- a/pages.es/common/[.md +++ b/pages.es/common/[.md @@ -1,25 +1,33 @@ # [ -> Evalúa una condicion. -> Retorna 0 si la condición se cumple, 1 si esta no se cumple. +> Comprueba los tipos de archivo y compara los valores. +> Devuelve 0 si la condición es verdadera, 1 si es falsa. > Más información: . -- Prueba si una variable dada es igual a una cadena dada: +- Comprueba si una variable dada es igual/no es igual a la cadena especificada: -`[ "{{$VARIABLE}}" == "{{/bin/zsh}}" ]` +`["${{variable}}" {{==|!=}} "{{cadena}}" ]` -- Prueba si una variable dada está vacía: +- Prueba si una variable dada es [eq]ual/[n]ot [e]qual/[g]reater [t]han/[l]ess [t]han/[g]reater que o [e]qual/[l]ess que o [e]qual al número especificado: -`[ -z "{{$BRANCH_DE_GIT}}" ]` +`[ "${{variable}}" -{{eq|ne|gt|lt|ge|le}} {{entero}} ]` -- Prueba si un archivo existe: +- Comprueba si la variable especificada tiene un valor [n]o-vacío: -`[ -f "{{ruta/al/archivo}}" ]` +`[ -n "${{variable}}" ]` -- Prueba si un directorio no existe: +- Comprueba si la variable especificada tiene un valor vacío: -`[ ! -d "{{ruta/al/directorio}}" ]` +`[ -z "${{variable}}" ]` -- Sentencia if-else: +- Comprueba si el archivo ([f]ile) especificado existe: -`[ {{condicion}} ] && {{echo "verdadero"}} || {{echo "falso"}}` +`[ -f {{ruta/al/archivo}} ]` + +- Comprueba si existe el [d]irectorio especificado: + +`[ -d {{ruta/al/directorio}} ]` + +- Comprueba si existe el archivo o directorio especificado: + +`[ -e {{ruta/al/archivo_o_directorio}} ]` diff --git a/pages.es/common/[[.md b/pages.es/common/[[.md new file mode 100644 index 0000000000..575a6f18c3 --- /dev/null +++ b/pages.es/common/[[.md @@ -0,0 +1,37 @@ +# [[ + +> Comprueba los tipos de archivo y compara los valores. +> Devuelve 0 si la condición es verdadera, 1 si es falsa. +> Más información: . + +- Comprueba si una variable dada es igual/no igual a la cadena especificada: + +`[[ ${{variable}} {{==|!=}} "{{cadena}}" ]]` + +- Comprueba si una cadena dada se ajusta al glob/regex especificado: + +`[[ ${{variable}} {{==|=~}} {{patron}} ]]` + +- Comprueba si una variable dada es [eq]ual/[n]ot [e]qual/[g]reater [t]han/[l]ess [t]han/[g]reater than o [e]qual/[l]ess than o [e]qual al número especificado: + +`[[ ${{variable}} -{{eq|ne|gt|lt|ge|le}} {{integer}} ]]` + +- Comprueba si la variable especificada tiene un valor [n]o-vacío: + +`[[ -n ${{variable}} ]]` + +- Comprueba si la variable especificada tiene un valor vacío: + +`[[ -z ${{variable}} ]]` + +- Comprueba si el [f]ile especificado existe: + +`[[ -f {{ruta/al/archivo}} ]]` + +- Comprueba si existe el [d]irectorio especificado: + +`[[ -d {{ruta/al/directorio}} ]]` + +- Comprueba si [e]xiste el archivo o directorio especificado: + +`[[ -e {{ruta/al/archivo_o_directorio}} ]]` diff --git a/pages.es/common/ack.md b/pages.es/common/ack.md new file mode 100644 index 0000000000..53e61e0e77 --- /dev/null +++ b/pages.es/common/ack.md @@ -0,0 +1,37 @@ +# ack + +> Una herramienta de búsqueda como grep, optimizada para desarrolladores. +> Ver también: `rg`, que es más rápido. +> More information: . + +- Busca archivos que contengan una cadena o expresión regular en el directorio actual de forma recursiva: + +`ack "{{patrón_de_búsqueda}}"` + +- Busca un patrón sin distinción entre mayúsculas y minúsculas: + +`ack --ignore-case "{{patrón_de_búsqueda}}"` + +- Busca líneas que coincidan con un patrón, imprimiendo s[o]lamente el texto coincidente y no el resto de la línea: + +`ack -o "{{patrón_de_búsqueda}}"` + +- Limita la búsqueda a archivos de un tipo específico: + +`ack --type={{ruby}} "{{patrón_de_búsqueda}}"` + +- No buscar en archivos dado un tipo específico: + +`ack --type=no{{ruby}} "{{patrón_de_búsqueda}}"` + +- Cuenta el número total de coincidencias encontradas: + +`ack --count --no-filename "{{patrón_de_búsqueda}}"` + +- Imprime sólo los nombres de los archivos y el número de coincidencias de cada archivo: + +`ack --count --files-with-matches "{{patrón_de_búsqueda}}"` + +- Lista todos los valores que se pueden utilizar con `--type`: + +`ack --help-types` diff --git a/pages.es/common/acme.sh-dns.md b/pages.es/common/acme.sh-dns.md new file mode 100644 index 0000000000..f4a227537b --- /dev/null +++ b/pages.es/common/acme.sh-dns.md @@ -0,0 +1,24 @@ +# acme.sh --dns + +> Utiliza un desafío DNS-01 para emitir un certificado TLS. +> Más información: . + +- Emite un certificado utilizando un modo API DNS automático: + +`acme.sh --issue --dns {{gnd_gd}} --domain {{ejemplo.com}}` + +- Emite un certificado comodín (marcado con un asterisco) utilizando un modo API DNS automático: + +`acme.sh --issue --dns {{dns_namesilo}} --domain {{ejemplo.com}} --domain {{*.ejemplo.com}}` + +- Emite un certificado utilizando un modo de alias DNS: + +`acme.sh --issue --dns {{dns_cf}} --domain {{ejemplo.com}} --challenge-alias {{alias-para-ejemplo-validacion.com}}` + +- Emite un certificado mientras se desactiva el sondeo automático de Cloudflare / Google DNS después de añadir el registro DNS especificando un tiempo de espera personalizado en segundos: + +`acme.sh --issue --dns {{dns_namecheap}} --domain {{ejemplo.com}} --dnssleep {{300}}` + +- Emite un certificado utilizando un modo DNS manual: + +`acme.sh --issue --dns --domain {{ejemplo.com}} --yes-I-know-dns-manual-mode-enough-go-ahead-please` diff --git a/pages.es/common/acme.sh.md b/pages.es/common/acme.sh.md new file mode 100644 index 0000000000..eb353f3a2e --- /dev/null +++ b/pages.es/common/acme.sh.md @@ -0,0 +1,33 @@ +# acme.sh + +> Shell script implementando el protocolo cliente ACME, una alternativa a certbot. +> Ver también `acme.sh dns`. +> Más información: . + +- Emite un certificado usando el modo webroot: + +`acme.sh --issue --domain {{ejemplo.com}} --webroot {{ruta/al/webroot}}` + +- Emite un certificado para múltiples dominios utilizando el modo autónomo a través del puerto 80: + +`acme.sh --issue --standalone --domain {{ejemplo.com}} --domain {{www.ejemplo.com}}` + +- Emite un certificado en modo autónomo TLS utilizando el puerto 443: + +`acme.sh --issue --alpn --domain {{ejemplo.com}}` + +- Emite un certificado utilizando una configuración de Nginx operativa: + +`acme.sh --issue --nginx --domain {{ejemplo.com}}` + +- Emite un certificado utilizando una configuración de Apache operativa: + +`acme.sh --issue --apache --dominio {{ejemplo.com}}` + +- Emite un certificado comodín (\*) utilizando un modo API DNS automático: + +`acme.sh --issue --dns {{dns_cf}} --domain {{*.ejemplo.com}}` + +- Instala archivos de certificado en las ubicaciones especificadas (útil para la renovación automática de certificados): + +`acme.sh --install-cert -d {{ejemplo.com}} --key-file {{ruta/al/ejemplo.com.key}} --fullchain-file {{ruta/al/ejemplo.com.cer}} --reloadcmd {{"systemctl force-reload nginx"}}` diff --git a/pages.es/common/act.md b/pages.es/common/act.md new file mode 100644 index 0000000000..6257d35513 --- /dev/null +++ b/pages.es/common/act.md @@ -0,0 +1,28 @@ +# act + +> Ejecuta acciones de GitHub localmente mediante Docker. +> Más información: . + +- Lista las acciones disponibles: + +`act -l` + +- Ejecuta el evento por defecto: + +`act` + +- Ejecuta un evento específico: + +`act {{event_type}}` + +- Ejecuta una acción específica: + +`act -a {{action_id}}` + +- No ejecuta las acciones (p.e. simular una ejecución): + +`act -n` + +- Muestra registros detallados: + +`act -v` diff --git a/pages.es/common/adb-install.md b/pages.es/common/adb-install.md new file mode 100644 index 0000000000..bd4b3b090d --- /dev/null +++ b/pages.es/common/adb-install.md @@ -0,0 +1,28 @@ +# adb install + +> Instalación de Android Debug Bridge: Envía paquetes a una instancia del emulador de Android o a dispositivos Android conectados. +> Más información: . + +- Envía una aplicación Android a un emulador/dispositivo: + +`adb install {{ruta/al/archivo.apk}}` + +- Envía una aplicación Android a un emulador/dispositivo específico (ignora `$ANDROID_SERIAL`): + +`adb -s {{numero_de_serie}} install {{ruta/al/archivo.apk}}` + +- Reinstala una aplicación existente, manteniendo sus datos: + +`adb install -r {{ruta/al/archivo.apk}}` + +- Envía una aplicación Android permitiendo bajar el código de versión (sólo paquetes depurables): + +`adb install -d {{ruta/al/archivo.apk}}` + +- Concede todos los permisos enumerados en el manifiesto de la aplicación: + +`adb install -g {{ruta/al/archivo.apk}}` + +- Actualiza rápidamente un paquete instalado actualizando sólo las partes del APK que han cambiado: + +`adb install --fastdeploy {{ruta/al/archivo.apk}}` diff --git a/pages.es/common/adb-logcat.md b/pages.es/common/adb-logcat.md new file mode 100644 index 0000000000..fadca7c231 --- /dev/null +++ b/pages.es/common/adb-logcat.md @@ -0,0 +1,36 @@ +# adb logcat + +> Vuelca un registro de mensajes del sistema. +> Más información: . + +- Muestra registros del sistema: + +`adb logcat` + +- Muestra las líneas que coinciden con una expresión regular: + +`adb logcat -e {{expresion_regular}}` + +- Muestra los registros de una etiqueta en un modo específico ([V]erbose, [D]ebug, [I]nfo, [W]arning, [E]rror, [F]atal, [S]ilent), filtrando otras etiquetas: + +`adb logcat {{etiqueta}}:{{modo}} *:S` + +- Muestra los registros de aplicaciones React Native en modo [V]erbose [S]ilencing otras etiquetas: + +`adb logcat ReactNative:V ReactNativeJS:V *:S` + +- Muestra los registros de todas las etiquetas con nivel de prioridad [W]arning y superior: + +`adb logcat *:W` + +- Muestra los registros de un proceso específico: + +`adb logcat --pid={{pid}}` + +- Muestra los registros del proceso de un paquete específico: + +`adb logcat --pid=$(adb shell pidof -s {{paquete}})` + +- Colorea el registro (normalmente se utiliza con filtros): + +`adb logcat -v color` diff --git a/pages.es/common/adb-reverse.md b/pages.es/common/adb-reverse.md new file mode 100644 index 0000000000..28d18644de --- /dev/null +++ b/pages.es/common/adb-reverse.md @@ -0,0 +1,20 @@ +# adb reverse + +> Android Debug Bridge Reverse: conexiones de socket inversas desde una instancia de emulador de Android o dispositivos Android conectados. +> Más información: . + +- Lista de todas las conexiones de socket inverso de emuladores y dispositivos: + +`adb reverse --list` + +- Invertir un puerto TCP desde un emulador o dispositivo a localhost: + +`adb reverse tcp:{{remote_port}} tcp:{{local_port}}` + +- Eliminar una conexión de socket inversa de un emulador o dispositivo: + +`adb reverse --remove tcp:{{remote_port}}` + +- Elimina todas las conexiones de socket inverso de todos los emuladores y dispositivos: + +`adb reverse --remove-all` diff --git a/pages.es/common/adb-shell.md b/pages.es/common/adb-shell.md new file mode 100644 index 0000000000..b9cf8d7600 --- /dev/null +++ b/pages.es/common/adb-shell.md @@ -0,0 +1,36 @@ +# adb shell + +> Android Debug Bridge Shell: Ejecuta comandos shell remotos en una instancia del emulador de Android o en dispositivos Android conectados. +> Más información: . + +- Inicia una shell interactiva remota en el emulador o dispositivo: + +`adb shell` + +- Obtiene todas las propiedades del emulador o dispositivo: + +`adb shell getprop` + +- Revierte todos los permisos de ejecución a sus valores por defecto: + +`adb shell pm reset-permissions` + +- Revoca un permiso peligroso para una aplicación: + +`adb shell pm revoke {{paquete}} {{permission}}` + +- Activa un evento de clave: + +`adb shell input keyevent {{keycode}}` + +- Borra los datos de una aplicación en un emulador o dispositivo: + +`adb shell pm clear {{paquete}}` + +- Inicia una actividad en el emulador o dispositivo: + +`adb shell am start -n {{paquete}}/{activity}}` + +- Inicia la actividad de inicio en un emulador o dispositivo: + +`adb shell am start -W -c android.intent.category.HOME -a android.intent.action.MAIN` diff --git a/pages.es/common/adb.md b/pages.es/common/adb.md index d93d24cdfa..a754b30f6c 100644 --- a/pages.es/common/adb.md +++ b/pages.es/common/adb.md @@ -12,7 +12,7 @@ `adb kill-server` -- Inicia una terminal remota en la instance del emulador/dispositivo de destino: +- Inicia una terminal remota en la instancia del emulador/dispositivo de destino: `adb shell` diff --git a/pages.es/common/adscript.md b/pages.es/common/adscript.md new file mode 100644 index 0000000000..8d4f81cbca --- /dev/null +++ b/pages.es/common/adscript.md @@ -0,0 +1,20 @@ +# adscript + +> Compilador de archivos Adscript. +> Más información: . + +- Compilar un archivo en un archivo objeto: + +`adscript --output {{ruta/al/archivo.o}} {{ruta/al/archivo_de_entrada.adscript}}` + +- Compilar y vincular un archivo a un ejecutable independiente: + +`adscript --executable --output {{ruta/a/archivo}} {{ruta/a/archivo_entrada.adscript}}` + +- Compilar un archivo a LLVM IR en lugar de código de máquina nativo: + +`adscript --llvm-ir --output {{ruta/a/archivo.ll}} {{ruta/a/archivo_entrada.adscript}}` + +- Compilación cruzada de un archivo a un archivo objeto para una arquitectura de CPU o un sistema operativo foráneo: + +`adscript --target-triple {{i386-linux-elf}} --output {{ruta/a/archivo.o}} {{ruta/a/archivo_entrada.adscript}}` diff --git a/pages.es/common/afconvert.md b/pages.es/common/afconvert.md new file mode 100644 index 0000000000..57d56d21f1 --- /dev/null +++ b/pages.es/common/afconvert.md @@ -0,0 +1,12 @@ +# afconvert + +> Convierte entre formatos de archivo AFF y raw. +> Más información: . + +- Utiliza una extensión específica (predeterminado: `aff`): + +`afconvert -a {{extension}} {{ruta/al/archivo_de_entrada}} {{ruta/al/archivo_salida1 ruta/al/archivo_salida2 ...}}` + +- Utiliza un nivel de compresión específico (predeterminado: `7`): + +`afconvert -X{{0..7}} {{ruta/al/archivo_de_entrada}} {{ruta/al/archivo_salida1 ruta/al/archivo_salida2 ...}}` diff --git a/pages.es/common/agate.md b/pages.es/common/agate.md new file mode 100644 index 0000000000..5e1032251c --- /dev/null +++ b/pages.es/common/agate.md @@ -0,0 +1,16 @@ +# agate + +> Un sencillo servidor para el protocolo de red Gemini. +> Más información: . + +- Ejecuta y genera una clave privada y un certificado: + +`agate --content {{ruta/a/contenido/}} --addr {{[::]:1965}} --addr {{0.0.0.0:1965}} --hostname {{ejemplo.com}} --lang {{sp-SP}}` + +- Ejecuta servidor: + +`agate {{ruta/al/archivo}}` + +- Muestra la ayuda: + +`agate -h` diff --git a/pages.es/common/age.md b/pages.es/common/age.md new file mode 100644 index 0000000000..8eb8858219 --- /dev/null +++ b/pages.es/common/age.md @@ -0,0 +1,28 @@ +# age + +> Una herramienta de encriptación de archivos sencilla, moderna y segura. +> Más información: . + +- Genera un archivo cifrado que se puede descifrar con una frase de contraseña: + +`age --passphrase --output {{ruta/al/archivo_encriptado}} {{ruta/al/archivo_no_encriptado}}` + +- Genera un par de claves, guardando la clave privada en un archivo no cifrado e imprimiendo la clave pública en `stdout`: + +`age-keygen --output {{ruta/al/archivo}}` + +- Cifra un archivo con una o más claves públicas que se introducen como literales: + +`age --recipient {{clave_publica_1}} --recipient {{clave_publica_2}} {{ruta/al/archivo_sin_cifrar}} --output {{ruta/al/archivo_cifrado}}` + +- Cifra un archivo con una o varias claves públicas especificadas en un archivo de destinatarios: + +`age --recipients-file {{ruta/al/archivo_recipientes}} {{ruta/para/archivo_sin_cifrar}} --output {{ruta/al/archivo_encriptado}}` + +- Descifra un archivo con una frase de contraseña: + +`age --decrypt --output {{ruta/al/archivo_descifrado}} {{ruta/para/archivo_cifrado}}` + +- Descifra un archivo con un archivo de clave privada: + +`age --decrypt --identity {{ruta/al/archivo_de_clave_privada}} --output {{ruta/para/archivo_descifrado}} {{ruta/para/archivo_cifrado}}` diff --git a/pages.es/common/aircrack-ng.md b/pages.es/common/aircrack-ng.md new file mode 100644 index 0000000000..ce8cd3e5b4 --- /dev/null +++ b/pages.es/common/aircrack-ng.md @@ -0,0 +1,17 @@ +# aircrack-ng + +> Crackea claves WEP y WPA/WPA2 desde handshake en paquetes capturados. +> Parte de la suite de software de red Aircrack-ng. +> Más información: . + +- Crackea la clave desde el archivo de captura usando [w]ordlist: + +`aircrack-ng -w {{ruta/al/lista.txt}} {{ruta/al/captura.cap}}` + +- Descifra la clave del archivo de captura utilizando [w]ordlist y el [e]ssid del punto de acceso: + +`aircrack-ng -w {{ruta/al/lista.txt}} -e {{essid}} {{ruta/al/captura.cap}}` + +- Descifra la clave del archivo de captura utilizando [w]ordlist y la dirección MAC del punto de acceso: + +`aircrack-ng -w {{ruta/al/lista.txt}} --bssid {{mac}} {{ruta/al/captura.cap}}` diff --git a/pages.es/common/aireplay-ng.md b/pages.es/common/aireplay-ng.md new file mode 100644 index 0000000000..2b57f1c3d3 --- /dev/null +++ b/pages.es/common/aireplay-ng.md @@ -0,0 +1,9 @@ +# aireplay-ng + +> Inyecta paquetes en una red inalámbrica. +> Parte de `aircrack-ng`. +> Más información: . + +- Envía una cantidad específica de paquetes disociados dada la dirección MAC de un punto de acceso, la dirección MAC de un cliente y una interfaz: + +`sudo aireplay-ng --deauth {{cantidad}} --bssid {{mac_punto_acceso}} --dmac {{mac_cliente}} {{interfaz}}` diff --git a/pages.es/common/airmon-ng.md b/pages.es/common/airmon-ng.md new file mode 100644 index 0000000000..eab3b9609a --- /dev/null +++ b/pages.es/common/airmon-ng.md @@ -0,0 +1,21 @@ +# airmon-ng + +> Activa el modo monitor en dispositivos de red inalámbricos. +> Parte de `aircrack-ng`. +> Más información: . + +- Lista dispositivos inalámbricos y sus estados: + +`sudo airmon-ng` + +- Activa el modo monitor para un dispositivo específico: + +`sudo airmon-ng start {{wlan0}}` + +- Elimina los procesos perturbadores que utilizan dispositivos inalámbricos: + +`sudo airmon-ng check kill` + +- Desactiva el modo monitor para una interfaz de red específica: + +`sudo airmon-ng stop {{wlan0mon}}` diff --git a/pages.es/common/airodump-ng.md b/pages.es/common/airodump-ng.md new file mode 100644 index 0000000000..01c2d1f2d2 --- /dev/null +++ b/pages.es/common/airodump-ng.md @@ -0,0 +1,13 @@ +# airodump-ng + +> Captura paquetes y muestra información sobre redes inalámbricas. +> Parte de `aircrack-ng`. +> Más información: . + +- Captura paquetes y muestra información sobre una red inalámbrica: + +`sudo airodump-ng {{interface}}` + +- Captura paquetes y muestra información sobre una red inalámbrica dada la dirección MAC y canal, y guarda la salida en un archivo: + +`sudo airodump-ng --channel {{canal}} --write {{ruta/al/archivo}} --bssid {{mac}} {{interfaz}}` diff --git a/pages.es/common/airpaste.md b/pages.es/common/airpaste.md new file mode 100644 index 0000000000..2d7aba1603 --- /dev/null +++ b/pages.es/common/airpaste.md @@ -0,0 +1,24 @@ +# airpaste + +> Comparte mesages y archivos sobre la misma red usando mDNS. +> Más información: . + +- Espera un mensaje y lo muestra cuando se reciba: + +`airpaste` + +- Envía un texto: + +`echo {{texto}} | airpaste` + +- Envía un archivo: + +`airpaste < {{ruta/al/archivo}}` + +- Recibe un archivo: + +`airpaste > {{ruta/al/archivo}}` + +- Crea un canal o se une al mismo: + +`airpaste {{nombre_canal}}` diff --git a/pages.es/common/ajson.md b/pages.es/common/ajson.md new file mode 100644 index 0000000000..0347a1a0d8 --- /dev/null +++ b/pages.es/common/ajson.md @@ -0,0 +1,20 @@ +# ajson + +> Ejecuta JSONPath en objetos JSON. +> Más información: . + +- Lee JSON de un archivo y ejecuta una expresión JSONPath especificada: + +`ajson '{{$..json[?(@.path)]}}' {{ruta/al/archivo.json}}` + +- Lee JSON de `stdin` y ejecuta una expresión JSONPath especificada: + +`cat {{ruta/al/archivo.json}} | ajson '{{$..json[?(@.path)]}}'` + +- Lee JSON de una URL y evalúa una expresión JSONPath especificada: + +`ajson '{{avg($..price)}}' '{{https://ejemplo.com/api/}}'` + +- Lee un simple cadena JSON y calcula un valor: + +`echo '{{3}}' | ajson '{{2 * pi * $}}'` diff --git a/pages.es/common/alex.md b/pages.es/common/alex.md new file mode 100644 index 0000000000..a7ef58800d --- /dev/null +++ b/pages.es/common/alex.md @@ -0,0 +1,21 @@ +# alex + +> Una herramienta que detecta escritura insensible y desconsiderada. +> Ayuda a encontrar en el texto frases que son parciales con el género, que polarizan, o están relacionadas con la raza, son desconsideradas con la religión u otras frases tendenciosas. +> Más información: . + +- Analiza texto desde `stdin`: + +`echo {{His network looks good}} | alex --stdin` + +- Analiza todos los archivos del directorio actual: + +`alex` + +- Analiza un archivo dado: + +`alex {{ruta/al/archivo_de_texto.md}}` + +- Analiza todos los archivos Markdown excepto `ejemplo.md`.: + +`alex *.md !{{ruta/hacia/ejemplo.md}}` diff --git a/pages.es/common/amass-db.md b/pages.es/common/amass-db.md new file mode 100644 index 0000000000..eaf59da4be --- /dev/null +++ b/pages.es/common/amass-db.md @@ -0,0 +1,20 @@ +# amass db + +> interactúa con una base de datos Amass. +> Más información: . + +- Lista de todas las enumeraciones realizadas en la base de datos: + +`amass db -dir {{ruta/al/directorio_base_de_datos}} -list` + +- Muestra resultados para un índice de enumeración y un nombre de dominio especificados: + +`amass db -dir {{ruta/al/directorio_base_de_datos}} -d {{nombre_dominio}} -enum {{indice_de_lista}} -show` + +- Lista todos los subdominios encontrados en un dominio dentro de una enumeración: + +`amass db -dir {{ruta/al/directorio_base_de_datos}} -d {{nombre_dominio}} -enum {{indice_de_lista}} -names` + +- Muestra un resumen de los subdominios encontrados dentro de una enumeración: + +`amass db -dir {{ruta/al/directorio_base_de_datos}} -d {{nombre_dominio}} -enum {{indice_de_lista}} -summary` diff --git a/pages.es/common/amass-enum.md b/pages.es/common/amass-enum.md new file mode 100644 index 0000000000..c29777230c --- /dev/null +++ b/pages.es/common/amass-enum.md @@ -0,0 +1,24 @@ +# amass enum + +> Busca subdominios de un dominio. +> Más información: . + +- Búsqueda pasiva de subdominios de un dominio: + +`amass enum -passive -d {{nombre_de_dominio}}` + +- Busca subdominios de un dominio y los verifica activamente intentando resolver los subdominios encontrados: + +`amass enum -active -d {{nombre_de_dominio}} -p {{80,443,8080}}` + +- Hace una búsqueda en su modalidad fuerza bruta de subdominios: + +`amass enum -brute -d {{nombre_de_dominio}}` + +- Guarda los resultados en un archivo de texto: + +`amass enum -o {{archivo_salida}} -d {{nombre_de_dominio}}` + +- Guarda los resultados a una base de datos: + +`amass enum -o {{archivo_salida}} -dir {{ruta/a/directorio_base_de_datos}}` diff --git a/pages.es/common/amass-intel.md b/pages.es/common/amass-intel.md new file mode 100644 index 0000000000..e1debb4893 --- /dev/null +++ b/pages.es/common/amass-intel.md @@ -0,0 +1,28 @@ +# amass intel + +> Recopila información de código abierto sobre una organización, como dominios raíz y ASNs. +> Más información: . + +- Encuentra dominios raíz en un rango de direcciones IP específico: + +`amass intel -addr {{192.168.0.1-254}}` + +- Usa métodos activos de reconocimiento: + +`amass intel -active -addr {{192.168.0.1-254}}` + +- Encuentra dominios raíz relacionados con un dominio específico: + +`amass intel -whois -d {{nombre_de_dominio}}` + +- Encuentra ASN pertenecientes a una organización específica: + +`amass intel -org {{nombre_de_organizacion}}` + +- Encuentra dominios raíz pertenecientes a un Número de Sistema Autónomo específico: + +`amass intel -asn {{string}}` + +- Guarda los resultados en un archivo de texto específico: + +`amass intel -o {{ruta/al/archivo_de_salida}} -whois -d {{nombre_de_dominio}}` diff --git a/pages.es/common/amass-track.md b/pages.es/common/amass-track.md new file mode 100644 index 0000000000..c67fd9ea7e --- /dev/null +++ b/pages.es/common/amass-track.md @@ -0,0 +1,12 @@ +# amass track + +> Seguimiento de las diferencias entre enumeraciones del mismo dominio. +> Más información: . + +- Muestra la diferencia entre las últimas enumeraciones de un dominio específico: + +`amass track -dir {{ruta/a/directorio_de_base_de_datos}} -d {{nombre_dominio}} -last {{1..infinity}}` + +- Muestra la diferencia entre un momento determinado y la última enumeración: + +`amass track -dir {{ruta/a/directorio_de_base_de_datos}} -d {{nombre_dominio}} -since {{01/02 15:04:05 2006 MST}}` diff --git a/pages.es/common/amass-viz.md b/pages.es/common/amass-viz.md new file mode 100644 index 0000000000..b199d5c4fc --- /dev/null +++ b/pages.es/common/amass-viz.md @@ -0,0 +1,24 @@ +# amass viz + +> Visualize gathered information in a network graph. +> Más información: . + +- Genere una visualización D3.js basada en datos específicos de la base de datos: + +`amass viz -d3 -dir {{ruta/al/directorio_de_base_de_datos}}` + +- Genera un archivo DOT a partir de los datos específicos de la base de datos: + +`amass viz -dot -dir {{ruta/al/directorio_de_base_de_datos}}` + +- Genera un archivo en formato Gephi Graph Exchange XML (GEXF) a partir específicos de los datos de la base de datos: + +`amass viz -gexf -dir {{ruta/al/directorio_de_base_de_datos}}` + +- Genera un archivo Graphistry JSON a partir de los datos específicos de la base de datos: + +`amass viz -graphistry -dir {{ruta/al/directorio_de_base_de_datos}}` + +- Genera un archivo CSV Maltego a partir de los datos específicos de la base de datos: + +`amass viz -maltego -dir {{ruta/al/directorio_de_base_de_datos}}` diff --git a/pages.es/common/amass.md b/pages.es/common/amass.md new file mode 100644 index 0000000000..7889e174da --- /dev/null +++ b/pages.es/common/amass.md @@ -0,0 +1,21 @@ +# amass + +> Herramienta de mapeo de superficie de ataque en profundidad y descubrimiento de activos. +> Algunos subcomandos como `amass db` tienen su propia documentación de uso. +> Más información: . + +- Ejecuta un subcomando Amass: + +`amass {{subcommand}}` + +- Muestra ayuda: + +`amass -help` + +- Muestra ayuda sobre un subcomando de Amass (como `intel`, `enum`, etc.): + +`amass -help {{subcommand}}` + +- Muestra la versión: + +`amass -version` diff --git a/pages.es/common/ani-cli.md b/pages.es/common/ani-cli.md new file mode 100644 index 0000000000..3e3dc9659c --- /dev/null +++ b/pages.es/common/ani-cli.md @@ -0,0 +1,28 @@ +# ani-cli + +> Un cli para navegar y ver anime. +> Más información: . + +- Busca anime por nombre: + +`ani-cli "{{nombre_del_anime}}"` + +- Descarga episodio: + +`ani-cli -d "{{nombre_del_anime}}"` + +- Usar VLC como reproductor multimedia: + +`ani-cli -v "{{nombre_del_anime}}"` + +- Especifica el episodio que desea ver: + +`ani-cli -a {{numero_episodio}} "{{nombre_del_anime}}"` + +- Continúa viendo el anime desde el historial: + +`ani-cli -c` + +- Actualiza `ani-cli`: + +`ani-cli -U` diff --git a/pages.es/common/anki.md b/pages.es/common/anki.md new file mode 100644 index 0000000000..93d697cdcc --- /dev/null +++ b/pages.es/common/anki.md @@ -0,0 +1,20 @@ +# anki + +> Potente e inteligente programa de flashcards. +> Más información: . + +- Inicia `anki`: + +`anki` + +- Inicia `anki` con un perfil específico: + +`anki -p {{nombre_perfil}}` + +- Inicia `anki` en un idioma específico: + +`anki -l {{idioma}}` + +- Inicia `anki` desde un directorio específico en lugar del predeterminado (`~/Anki`): + +`anki -b {{ruta/al/directorio}}` diff --git a/pages.es/common/ansible-doc.md b/pages.es/common/ansible-doc.md new file mode 100644 index 0000000000..02fa3a88b3 --- /dev/null +++ b/pages.es/common/ansible-doc.md @@ -0,0 +1,29 @@ +# ansible-doc + +> Muestra información sobre los módulos instalados en las bibliotecas de Ansible. +> Muestra una concisa lista de complementos y sus breves descripciones. +> Más información: . + +- Lista de complementos disponibles acorde a su acción (módulos): + +`ansible-doc --list` + +- Lista de complementos disponibles dado un tipo específico: + +`ansible-doc --type {{become|cache|callback|cliconf|connection|...}} --list` + +- Muestra información sobre un complemento acorde a su acción específica (módulo): + +`ansible-doc {{nombre_complemento}}` + +- Muestra información acerca de un complemento dado un tipo específico: + +`ansible-doc --type {{become|cache|callback|cliconf|connection|...}} {{nombre_complemento}}` + +- Muestra fragmentos de las acciones respecto al tipo de complemento y su especificidad de tipo de acción (módulos): + +`ansible-doc --snippet {{nombre_complemento}}` + +- Muestra información de acuerdo al complemento dada su especificidad de acción (módulo) como JSON: + +`ansible-doc --json {{nombre_complemento}}` diff --git a/pages.es/common/ansible-inventory.md b/pages.es/common/ansible-inventory.md new file mode 100644 index 0000000000..d8372454a3 --- /dev/null +++ b/pages.es/common/ansible-inventory.md @@ -0,0 +1,21 @@ +# ansible-inventory + +> Muestra o vuelca un inventario de Ansible. +> Ver también: `ansible`. +> Más información: . + +- Muestra el inventario por defecto: + +`ansible-inventory --list` + +- Muestra un inventario personalizado: + +`ansible-inventory --list --inventory {{ruta/al/archivo_o_script_o_directorio}}` + +- Muestra el inventario por defecto en YAML: + +`ansible-inventory --list --yaml` + +- Vuelca el inventario por defecto a un fichero: + +`ansible-inventory --list --output {{ruta/al/archivo}}` diff --git a/pages.es/common/ansible-pull.md b/pages.es/common/ansible-pull.md new file mode 100644 index 0000000000..a5b3d2aad9 --- /dev/null +++ b/pages.es/common/ansible-pull.md @@ -0,0 +1,20 @@ +# ansible-pull + +> Extrae playbooks ansible de un repositorio VCS y los ejecuta para el host local. +> Más información: . + +- Extrae un playbook de un VCS y ejecuta local.yml del playbook por defecto: + +`ansible-pull -U {{url_repositorio}}` + +- Extrae un playbook de un VCS y ejecuta un playbook específico: + +`ansible-pull -U {{url_repositorio}} {{playbook}}` + +- Extrae un playbook de un VCS en una rama determinada y ejecuta un playbook específico: + +`ansible-pull -U {{url_repositorio}} -C {{rama}} {{playbook}}` + +- Extrae un playbook de un VCS, en tanto especificando un archivo hosts y ejecuta un playbook específico: + +`ansible-pull -U {{url_repositorio}} -i {{archivo_hosts}} {{playbook}}` diff --git a/pages.es/common/ansiweather.md b/pages.es/common/ansiweather.md new file mode 100644 index 0000000000..d28f22245b --- /dev/null +++ b/pages.es/common/ansiweather.md @@ -0,0 +1,16 @@ +# ansiweather + +> Un script de shell para mostrar las condiciones meteorológicas actuales en tu terminal. +> Más información: . + +- Muestra una previsión en unidades métricas para los próximos cinco días en Rzeszow, Polonia: + +`ansiweather -u {{metric}} -f {{5}} -l {{Rzeszow,PL}}` + +- Mostrar una previsión con símbolos y datos de la luz del día dada tu ubicación actual: + +`ansiweather -s {{true}} -d {{true}}` + +- Muestra una previsión con los datos de viento y humedad dada tu ubicación actual: + +`ansiweather -w {{true}} -h {{true}}` diff --git a/pages.es/common/antibody.md b/pages.es/common/antibody.md new file mode 100644 index 0000000000..9683ed4cd4 --- /dev/null +++ b/pages.es/common/antibody.md @@ -0,0 +1,16 @@ +# antibody + +> "El más rápido" administrador de complementos de shell. +> Más información: . + +- Empaqueta todos los complementos para su carga estática: + +`antibody bundle < {{~/.zsh_plugins.txt}} > {{~/.zsh_plugins.sh}}` + +- Actualiza todos los empaquetados: + +`antibody update` + +- Lista todos los complementos instalados: + +`antibody list` diff --git a/pages.es/common/apg.md b/pages.es/common/apg.md new file mode 100644 index 0000000000..c6fb81d821 --- /dev/null +++ b/pages.es/common/apg.md @@ -0,0 +1,24 @@ +# apg + +> Crea contraseñas aleatorias arbitrariamente complejas. +> Más información: . + +- Crea contraseñas aleatorias (la longitud predeterminada de la contraseña es 8): + +`apg` + +- Crea una contraseña con al menos 1 símbolo (S), 1 número (N), 1 mayúscula (C), 1 minúscula (L): + +`apg -M SNCL` + +- Crea una contraseña con 16 caracteres: + +`apg -m {{16}}` + +- Crea una contraseña con una longitud máxima de 16: + +`apg -x {{16}}` + +- Crea una contraseña que no aparece en un diccionario (se debe proporcionar el archivo del diccionario): + +`apg -r {{ruta/al/archivo_diccionario}}` diff --git a/pages.es/common/apktool.md b/pages.es/common/apktool.md new file mode 100644 index 0000000000..402248fcf0 --- /dev/null +++ b/pages.es/common/apktool.md @@ -0,0 +1,16 @@ +# apktool + +> Ingeniería inversa de archivos APK. +> Más información: . + +- Decodifica un archivo APK: + +`apktool d {{archivo.apk}}` + +- Construye un archivo APK desde un directorio: + +`apktool b {{ruta/al/directorio}}` + +- Instala y almacena un framework: + +`apktool if {{framework.apk}}` diff --git a/pages.es/common/apm.md b/pages.es/common/apm.md new file mode 100644 index 0000000000..751d3c34ae --- /dev/null +++ b/pages.es/common/apm.md @@ -0,0 +1,17 @@ +# apm + +> Editor Atom Package Manager. +> Ver `atom`. +> Más información: . + +- Instala un paquete de o un tema de : + +`apm install {{nombre_de_paquete}}` + +- Elimina un paquete/tema: + +`apm remove {{nombre_de_paquete}}` + +- Actualiza un paquete/tema: + +`apm upgrade {{nombre_de_paquete}}` diff --git a/pages.es/common/apropos.md b/pages.es/common/apropos.md new file mode 100644 index 0000000000..73272a1f6f --- /dev/null +++ b/pages.es/common/apropos.md @@ -0,0 +1,16 @@ +# apropos + +> Busca nombres y descripciones en las páginas del manual. +> Más información: . + +- Busca una palabra clave utilizando una expresión regular: + +`apropos {{expresion_regular}}` + +- Busca sin restringir la salida al ancho de la terminal: + +`apropos -l {{expresion_regular}}` + +- Busca páginas que contengan todas las expresiones dadas: + +`apropos {{expresion_regular_1}} -a {{expresion_regular_2}} -a {{expresion_regular_3}}` diff --git a/pages.es/common/arch.md b/pages.es/common/arch.md new file mode 100644 index 0000000000..b4bdc02faa --- /dev/null +++ b/pages.es/common/arch.md @@ -0,0 +1,9 @@ +# arch + +> Muestra el nombre de la arquitectura del sistema. +> Ver también `uname`. +> Más información: . + +- Muestra la arquitectura del sistema: + +`arch` diff --git a/pages.es/common/argocd-app.md b/pages.es/common/argocd-app.md new file mode 100644 index 0000000000..9f518eb5d4 --- /dev/null +++ b/pages.es/common/argocd-app.md @@ -0,0 +1,36 @@ +# argocd app + +> Interfaz de línea de comandos para gestionar aplicaciones por CD Argo. +> Más información: . + +- Lista aplicaciones: + +`argocd app list --output {{json|yaml|wide}} ` + +- Obtiene detalles de la aplicación: + +`argocd app get {{nombre_de_la_aplicacion}} --output {{json|yaml|wide}}` + +- Despliega la aplicación internamente (en el mismo clúster en el que se ejecuta Argo CD): + +`argocd app create {{nombre_de_la_aplicación}} --repo {{git_repo_url}} --path {{ruta/al/repo}} --dest-server https://kubernetes.default.svc --dest-namespace {{ns}}` + +- Elimina una aplicación: + +`argocd app delete {{nombre_de_la_aplicación}}` + +- Activa la sincronización automática de aplicaciones: + +`argocd app set {{nombre_de_la_aplicacion}} --sync-policy auto --auto-prune --self-heal` + +- Previsualiza la sincronización de aplicaciones sin afectar al clúster: + +`argocd app sync {{nombre_de_la_aplicacion}} --dry-run --prune` + +- Muestra el historial de despliegue de aplicaciones: + +`argocd app history {{nombre_de_la_aplicacion}} --output {{wide|id}}` + +- Retrocede la aplicación a una versión anterior desplegada por ID de historial (eliminando recursos inesperados): + +`argocd app rollback {{nombre_de_la_aplicacion}} {{history_id}} --prune` diff --git a/pages.es/common/argon2.md b/pages.es/common/argon2.md new file mode 100644 index 0000000000..91d711f385 --- /dev/null +++ b/pages.es/common/argon2.md @@ -0,0 +1,20 @@ +# argon2 + +> Calcula hashes criptográficos Argon2. +> Más información: . + +- Calcula un hash con una contraseña y un salt con los parámetros por defecto: + +`echo "{{contraseña}} | argon2 "{{texto_salt}}"` + +- Calcula un hash con el algoritmo especificado: + +`echo "{{contraseña}}" | argon2 "{{texto_sal}}" -{{d|i|id}}` + +- Muestra el hash de salida sin información adicional: + +`echo "{{contraseña}}" | argon2 "{{texto_sal}}" -e` + +- Calcula un hash con una cantidad de i[t]eraciones dada, uso de [m]emoria y parámetros de [p]aralelismo dados: + +`echo "{{contraseña}}" | argon2 "{{texto_sal}}" -t {{5}} -m {{20}} -p {{7}}` diff --git a/pages.es/common/aria2.md b/pages.es/common/aria2.md new file mode 100644 index 0000000000..db0b8db9ca --- /dev/null +++ b/pages.es/common/aria2.md @@ -0,0 +1,7 @@ +# aria2 + +> Este comando es un alias de `aria2c`. + +- Ver documentación para el comando actualizado: + +`tldr aria2c` diff --git a/pages.es/common/aria2c.md b/pages.es/common/aria2c.md new file mode 100644 index 0000000000..e650ca176b --- /dev/null +++ b/pages.es/common/aria2c.md @@ -0,0 +1,37 @@ +# aria2c + +> Utilidad de descarga rápida. +> Soporta HTTP(S), FTP, SFTP, BitTorrent y Metalink. +> Más información: . + +- Descarga un URI específico a un archivo: + +`aria2c "{{url}}"` + +- Descarga un archivo de una URI con un nombre de salida específico: + +`aria2c --out={{ruta/al/archivo}} "{{url}}"` + +- Descarga varios archivos diferentes en paralelo: + +`aria2c --force-sequential {{false}} "{{url1 url2 ...}}"` + +- Descarga desde múltiples fuentes con cada URI apuntando al mismo archivo: + +`aria2c "{{url1 url2 ...}}"` + +- Descarga las URI enumeradas en un archivo con un número determinado de descargas paralelas: + +`aria2c --input-file={{ruta/al/archivo}} --max-concurrent-downloads={{numero_de_descargas}}` + +- Descarga con varias conexiones: + +`aria2c --split={{numero_de_conexiones}} "{{url}}"` + +- Descarga FTP con nombre de usuario y contraseña: + +`aria2c --ftp-user={{nombre_usuario}} --ftp-passwd={{contrasena}} "{{url}}"` + +- Limita la velocidad de descarga en bytes por segundo: + +`aria2c --max-download-limit={{velocidad}} "{{url}}"` diff --git a/pages.es/common/arping.md b/pages.es/common/arping.md new file mode 100644 index 0000000000..628da12107 --- /dev/null +++ b/pages.es/common/arping.md @@ -0,0 +1,29 @@ +# arping + +> Descubrir y sondear hosts en una red utilizando el protocolo ARP. +> Útil para el descubrimiento de direcciones MAC. +> Más información: . + +- Hace ping a un host mediante paquetes de petición ARP: + +`arping {{host_ip}}` + +- Hace ping a un host en una interfaz específica: + +`arping -I {{interfaz}} {{host_ip}}` + +- Hace ping a un host y detenerse en la primera respuesta: + +`arping -f {{host_ip}}` + +- Hace ping a un host un determinado número de veces: + +`arping -c {{cuenta}} {{host_ip}}` + +- Emite paquetes de solicitud ARP para actualizar las cachés ARP de los vecinos: + +`arping -U {{ip_a_retransmitir}}` + +- Detecta direcciones IP duplicadas en la red enviando peticiones ARP con un tiempo de espera de 3 segundos: + +`arping -D -w {{3}} {{ip_a_verificar}}` diff --git a/pages.es/common/asar.md b/pages.es/common/asar.md new file mode 100644 index 0000000000..17c2b216cf --- /dev/null +++ b/pages.es/common/asar.md @@ -0,0 +1,20 @@ +# asar + +> Un archivador de ficheros para la plataforma Electron. +> Más información: . + +- Archiva un fichero o directorio: + +`asar pack {{ruta/al/archivo_o_directorio}} {{archivado.asar}}` + +- Extrae un archivo: + +`asar extract {{archivado.asar}}` + +- Extrae un archivo específico de un archivo: + +`asar extract-file {{archivado.asar}} {{archivo}}` + +- Lista el contenido de un archivo: + +`asar list {{archivado.asar}}` diff --git a/pages.es/common/asciidoctor.md b/pages.es/common/asciidoctor.md new file mode 100644 index 0000000000..e1e5d9fcce --- /dev/null +++ b/pages.es/common/asciidoctor.md @@ -0,0 +1,20 @@ +# asciidoctor + +> Un procesador que convierte archivos AsciiDoc a un formato publicable. +> Más información: . + +- Convierte un archivo `.adoc` específico a HTML (el formato de salida por defecto): + +`asciidoctor {{ruta/al/archivo.adoc}}` + +- Convierte un archivo `.adoc` específico a HTML y vincula una hoja de estilos CSS: + +`asciidoctor -a stylesheet={{ruta/al/stylesheet.css}} {{ruta/al/archivo.adoc}}` + +- Convierte un archivo específico `.adoc` en HTML incrustable, eliminando todo excepto el cuerpo: + +`asciidoctor --embedded {{ruta/al/archivo.adoc}}` + +- Convierte un archivo `.adoc` dado en un PDF utilizando la biblioteca `asciidoctor-pdf`: + +`asciidoctor --backend={{pdf}} --require={{asciidoctor-pdf}} {{ruta/al/archivo.adoc}}` diff --git a/pages.es/common/asciinema.md b/pages.es/common/asciinema.md index 944ac2f46b..8e976d1bf4 100644 --- a/pages.es/common/asciinema.md +++ b/pages.es/common/asciinema.md @@ -1,7 +1,7 @@ # asciinema > Graba y reproduce sesiones de terminal, y opcionalmente compártelas en asciinema.org. -> Más información: . +> Más información: . - Asocia el programa local de `asciinema` con una cuenta de asciinema.org: diff --git a/pages.es/common/assimp.md b/pages.es/common/assimp.md new file mode 100644 index 0000000000..63c179bcdc --- /dev/null +++ b/pages.es/common/assimp.md @@ -0,0 +1,33 @@ +# assimp + +> Cliente de línea de comandos para la biblioteca Open Asset Import. +> Admite la carga de más de 40 formatos de archivo 3D y la exportación a varios formatos 3D populares. +> Más información: . + +- Lista de todos los formatos de importación soportados: + +`assimp listext` + +- Lista de todos los formatos de exportación compatibles: + +`assimp listexport` + +- Convierte un archivo a uno de los formatos de salida soportados, utilizando los parámetros por defecto: + +`assimp export {{archivo_entrada.stl}} {{archivo_salida.obj}}` + +- Convertir un archivo utilizando parámetros personalizados (el archivo dox_cmd.h en el código fuente de assimp enumera los parámetros disponibles): + +`assimp export {{archivo_entrada.stl}} {{archivo_salida.obj}} {{parametros}}` + +- Muestra un resumen del contenido de un archivo 3D: + +`assimp info {{ruta/al/archivo}}` + +- Lista todos los subcomandos ("verbs") soportados: + +`assimp help` + +- Obtener ayuda sobre un subcomando concreto (por ejemplo, los parámetros específicos del mismo): + +`assimp {{subcomando}} --help` diff --git a/pages.es/common/astronomer.md b/pages.es/common/astronomer.md new file mode 100644 index 0000000000..5cbcbd127a --- /dev/null +++ b/pages.es/common/astronomer.md @@ -0,0 +1,16 @@ +# astronomer + +> Herramienta que detecta estrellas ilegítimas de cuentas bot en proyectos de GitHub. +> Más información: . + +- Escanea un repositorio: + +`astronomer {{tldr-pages/tldr-node-client}}` + +- Escanea el máximo de estrellas del repositorio: + +`astronomer {{tldr-pages/tldr-node-client}} --stars {{50}}` + +- Escanea un repositorio incluyendo informes comparativos: + +`astronomer {{tldr-pages/tldr-node-client}} --verbose` diff --git a/pages.es/common/astyle.md b/pages.es/common/astyle.md new file mode 100644 index 0000000000..c2eb5dc15e --- /dev/null +++ b/pages.es/common/astyle.md @@ -0,0 +1,25 @@ +# astyle + +> Indentador, formateador y embellecedor de código fuente para los lenguajes de programación C, C++, C# y Java. +> Al ejecutarse, se crea una copia del archivo original con un ".orig" añadido al nombre del archivo original. +> Más información: . + +- Aplica el estilo por defecto de 4 espacios por sangría y sin cambios de formato: + +`estilo {{archivo_de_origen}}` + +- Aplica el estilo Java con llaves adjuntas: + +`astyle --style=java {{ruta/al/archivo}}` + +- Aplica el estilo allman con llaves discontinuas: + +`astyle --style=allman {{ruta/al/archivo}}` + +- Aplica una sangría personalizada utilizando espacios. Elige entre 2 y 20 espacios: + +`astyle --indent=spaces={{número_de_espacios}} {{ruta/al/archivo}}` + +- Aplica una sangría personalizada utilizando tabuladores. Elige entre 2 y 20 tabulaciones: + +`astyle --indent=tab={{número_de_pestañas}} {{ruta/al/archivo}}` diff --git a/pages.es/common/at.md b/pages.es/common/at.md new file mode 100644 index 0000000000..5a814ce0bd --- /dev/null +++ b/pages.es/common/at.md @@ -0,0 +1,17 @@ +# at + +> Ejecuta comandos una vez en un momento posterior. +> El servicio atd (o atrun) debe estar ejecutándose para las ejecuciones reales. +> Más información: . + +- Ejecuta comandos desde la entrada estándar en 5 minutos (pulsa `Ctrl + D` cuando termines): + +`at now + 5 minutes` + +- Ejecuta un comando desde la entrada estándar a las 10:00 AM de hoy: + +`echo "{{./make_db_backup.sh}}" | at 1000` + +- Ejecuta comandos desde un archivo dado el próximo martes: + +`at -f {{ruta/al/archivo}} 9:30 PM Tue` diff --git a/pages.es/common/atoum.md b/pages.es/common/atoum.md new file mode 100644 index 0000000000..54977c77ab --- /dev/null +++ b/pages.es/common/atoum.md @@ -0,0 +1,36 @@ +# atoum + +> Un framework de pruebas unitarias para PHP sencillo, moderno e intuitivo. +> Más información: . + +- Inicializa un fichero de configuración: + +`atoum --init` + +- Ejecuta todas las pruebas: + +`atoum` + +- Ejecuta pruebas utilizando el archivo de configuración especificado: + +`atoum -c {{ruta/al/archivo}}` + +- Ejecuta un archivo de prueba específico: + +`atoum -f {{ruta/al/archivo}}` + +- Ejecuta un directorio específico de pruebas: + +`atoum -d {{ruta/al/directorio}}` + +- Ejecuta todas las pruebas dado un namespace específico: + +`atoum -ns {{namespace}}` + +- Ejecuta todas las pruebas dada una etiqueta específica: + +`atoum -t {{etiqueta}}` + +- Carga un archivo bootstrap personalizado antes de ejecutar las pruebas: + +`atoum --bootstrap-file {{ruta/al/archivo}}` diff --git a/pages.es/common/audacious.md b/pages.es/common/audacious.md new file mode 100644 index 0000000000..3e0b3ecf19 --- /dev/null +++ b/pages.es/common/audacious.md @@ -0,0 +1,32 @@ +# audacious + +> Un reproductor de audio de código abierto. +> Más información: . + +- Inicia el programa: + +`audacious` + +- Pone en cola un directorio específico de archivos de audio: + +`audacious --enqueue {{ruta/al/directorio}}` + +- Inicia o detiene la reproducción: + +`audacious --play-pause` + +- Avanza o retrocede en la lista de reproducción: + +`audacious --{{fwd|rew}}` + +- Detiene la reproducción: + +`audacious --stop` + +- Inicia una versión acéfala: + +`audacious --headless` + +- Sale en cuanto se detiene la reproducción o mientras no haya nada que reproducir: + +`audacious --quit-after-play` diff --git a/pages.es/common/autoflake.md b/pages.es/common/autoflake.md new file mode 100644 index 0000000000..2374c19d2f --- /dev/null +++ b/pages.es/common/autoflake.md @@ -0,0 +1,20 @@ +# autoflake + +> Una herramienta para eliminar importaciones y variables no utilizadas del código Python. +> Más información: . + +- Elimina las variables no utilizadas de un archivo y muestra la diferencia: + +`autoflake --remove-unused-variables {{ruta/al/archivo.py}}` + +- Elimina las importaciones no utilizadas de varios archivos y muestra las diferencias: + +`autoflake --remove-all-unused-imports {{ruta/al/archivo1.py ruta/al/archivo2.py ...}}` + +- Elimina variables no utilizadas de un fichero, sobrescribiendo el fichero: + +`autoflake --remove-unused-variables --in-place {{ruta/al/archivo.py}}` + +- Elimina recursivamente las variables no utilizadas de todos los archivos de un directorio, sobrescribiendo cada archivo: + +`autoflake --remove-unused-variables --in-place --recursive {{ruta/al/directorio}}` diff --git a/pages.es/common/autopep8.md b/pages.es/common/autopep8.md new file mode 100644 index 0000000000..5924d10053 --- /dev/null +++ b/pages.es/common/autopep8.md @@ -0,0 +1,20 @@ +# autopep8 + +> Formatea el código Python según la guía de estilo PEP 8. +> Más información: . + +- Formatea un archivo a `stdout`, con una longitud de línea máxima personalizada: + +`autopep8 {{ruta/al/archivo.py}} --max-line-length {{length}}` + +- Formatea un fichero, mostrando un diff de los cambios: + +`autopep8 --diff {{ruta/al/archivo}}` + +- Formatea un fichero en su lugar y guarda los cambios: + +`autopep8 --in-place {{ruta/al/archivo.py}}` + +- Formatea recursivamente todos los archivos de un directorio y guarda los cambios: + +`autopep8 --in-place --recursive {{ruta/al/directorio}}` diff --git a/pages.es/common/autossh.md b/pages.es/common/autossh.md new file mode 100644 index 0000000000..b24c90584d --- /dev/null +++ b/pages.es/common/autossh.md @@ -0,0 +1,29 @@ +# autossh + +> Ejecuta, monitorea y reinicia conexiones SSH. +> Auto-reconecta para mantener los túneles de reenvío de puertos. Acepta todas las señales `ssh`. +> Más información: . + +- Inicia una sesión SSH, reiniciando cuando un puerto de monitoreo no retorna datos: + +`autossh -M {{puerto_monitor}} "{{comando_ssh}}"` + +- Reenvía un puerto local a uno remoto, reiniciando cuando sea necesario: + +`autossh -M {{puerto_monitor}} -L {{puerto_local}}:localhost:{{puerto_remoto}} {{usuario}}@{{host}}` + +- Crea un proceso `autossh` en segundo plano antes de ejecutar `ssh` y no abre un shell remoto: + +`autossh -f -M {{puerto_monitor}} -N "{{comando_ssh}}"` + +- Ejecuta en segundo plano, sin puerto de monitorización, y en su lugar envía paquetes SSH keep-alive cada 10 segundos para detectar fallos: + +`autossh -f -M 0 -N -o "ServerAliveInterval 10" -o "ServerAliveCountMax 3" "{{comando_ssh}}"` + +- Ejecuta en segundo plano, sin puerto de monitorización y sin shell remoto, saliendo si falla el reenvío de puerto: + +`autossh -f -M 0 -N -o "ServerAliveInterval 10" -o "ServerAliveCountMax 3" -o ExitOnForwardFailure=yes -L {{local_port}}:localhost:{{puerto_remoto}}} {{usuario}}@{{host}}` + +- Se ejecuta en segundo plano, registrando la salida de depuración `autossh` y la salida detallada `ssh` en archivos: + +`AUTOSSH_DEBUG=1 AUTOSSH_LOGFILE={{ruta/al/autossh_log_file.log}} autossh -f -M {{puerto_monitor}} -v -E {{ruta/al/archivo_ssh_log.log}} {{comando_ssh}}` diff --git a/pages.es/common/avo.md b/pages.es/common/avo.md new file mode 100644 index 0000000000..a688c9567e --- /dev/null +++ b/pages.es/common/avo.md @@ -0,0 +1,36 @@ +# avo + +> La interfaz oficial de línea de comandos para Avo. +> Más información: . + +- Inicializa un espacio de trabajo en el directorio actual: + +`avo init` + +- Inicia sesión en la plataforma Avo: + +`avo login` + +- Cambia a una rama Avo existente: + +`avo checkout {{nombre_rama}}` + +- Extrae las envolturas analíticas de la ruta actual: + +`avo pull` + +- Muestra el estado de la implementación de Avo: + +`avo status` + +- Resuelve conflictos Git en archivos Avo: + +`avo conflict` + +- Abre el espacio de trabajo actual de Avo en el navegador web predeterminado: + +`avo edit` + +- Muestra la ayuda de un subcomando: + +`avo {{subcomando}} --help` diff --git a/pages.es/common/avrdude.md b/pages.es/common/avrdude.md new file mode 100644 index 0000000000..436416e603 --- /dev/null +++ b/pages.es/common/avrdude.md @@ -0,0 +1,20 @@ +# avrdude + +> Programa controlador para la programación de microcontroladores Atmel AVR. +> Más información: . + +- Lee el microcontrolador AVR: + +`avrdude -p {{AVR_dispositivo}} -c {{programador}} -U flash:r:{{file.hex}}:i` + +- Escribe el microcontrolador AVR: + +`avrdude -p {{AVR_dispositivo}} -c {{programador}} -U flash:w:{{file.hex}}` + +- Lista de dispositivos AVR disponibles: + +`avrdude -p \?` + +- Lista de programadores AVR disponibles: + +`avrdude -c \?` diff --git a/pages.es/common/awk.md b/pages.es/common/awk.md index 0ab802554c..31b9de85e5 100644 --- a/pages.es/common/awk.md +++ b/pages.es/common/awk.md @@ -19,7 +19,7 @@ `awk '{s+=$1} END {print s}' {{archivo}}` -- Suma los valores en de la primera columna de un archivo e imprime el total de froma bonita: +- Suma los valores en de la primera columna de un archivo e imprime el total de forma bonita: `awk '{s+=$1; print $1} END {print "--------"; print s}' {{archivo}}` diff --git a/pages.es/common/aws-codecommit.md b/pages.es/common/aws-codecommit.md new file mode 100644 index 0000000000..e2cd3f9a6f --- /dev/null +++ b/pages.es/common/aws-codecommit.md @@ -0,0 +1,12 @@ +# aws codecommit + +> AWS CodeCommit es un servicio de control de origen administrado que aloja repositorios Git privados. +> Más información: . + +- Muestra la ayuda para un comando específico: + +`aws codecommit {{comando}} help` + +- Muestra la ayuda: + +`aws codecommit help` diff --git a/pages.es/common/aws-cognito-idp.md b/pages.es/common/aws-cognito-idp.md new file mode 100644 index 0000000000..3215d66637 --- /dev/null +++ b/pages.es/common/aws-cognito-idp.md @@ -0,0 +1,28 @@ +# aws cognito-idp + +> Administra el grupo de usuarios de Amazon Cognito y sus usuarios y grupos utilizando la CLI. +> Más información: . + +- Crea un nuevo grupo de usuarios de Cognito: + +`aws cognito-idp create-user-pool --pool-name {{nombre}}` + +- Lista todos los grupos de usuarios: + +`aws cognito-idp list-user-pools --max-results {{10}}` + +- Elimina un grupo de usuarios específico: + +`aws cognito-idp delete-user-pool --user-pool-id {{user_pool_id}}` + +- Crea un usuario en un grupo específico: + +`aws cognito-idp admin-create-user --username {{nombre_usuario}} --user-pool-id {{user_pool_id}}` + +- Lista los usuarios de un pool específico: + +`aws cognito-idp list-users --user-pool-id {{user_pool_id}}` + +- Elimina un usuario de un grupo específico: + +`aws cognito-idp admin-delete-user --username {{nombre_usuario}} --user-pool-id {{user_pool_id}}` diff --git a/pages.es/common/aws-configure.md b/pages.es/common/aws-configure.md new file mode 100644 index 0000000000..0ff7167c98 --- /dev/null +++ b/pages.es/common/aws-configure.md @@ -0,0 +1,36 @@ +# aws configure + +> Gestiona la configuración para la CLI de AWS. +> Más información: . + +- Configura AWS CLI interactivamente (crea una nueva configuración o actualiza la predeterminada): + +`aws configure` + +- Configura un perfil con nombre para la CLI de AWS de forma interactiva (crea un perfil nuevo o actualiza uno existente): + +`aws configure --profile {{nombre_del_perfil}}` + +- Muestra el valor de una variable de configuración específica: + +`aws configure get {{nombre}}` + +- Muestra el valor de una variable de configuración en un perfil específico: + +`aws configure get {{nombre}} --profile {{nombre_del_perfil}}` + +- Establece el valor de una variable de configuración específica: + +`aws configure set {{nombre}} {{valor}}` + +- Establece el valor de una variable de configuración en un perfil específico: + +`aws configure set {{nombre}} {{valor}} --profile {{nombre_del_perfil}}` + +- Lista las entradas de configuración: + +`aws configure list` + +- Lista las entradas de configuración para un perfil específico: + +`aws configure list --profile {{nombre_del_perfil}}` diff --git a/pages.es/common/aws-cur.md b/pages.es/common/aws-cur.md new file mode 100644 index 0000000000..46e7ccf666 --- /dev/null +++ b/pages.es/common/aws-cur.md @@ -0,0 +1,16 @@ +# aws cur + +> Crea, solicita y elimina definiciones de informes de uso de AWS. +> Más información: . + +- Crea una definición de informe de costes y uso de AWS a partir de un archivo JSON: + +`aws cur put-report-definition --report-definition file://{{ruta/al/report_definition.json}}` + +- Enumera las definiciones de informes de uso definidas para la cuenta conectada: + +`aws cur describe-report-definitions` + +- Elimina una definición de informe de uso: + +`aws cur --region {{aws_region}} delete-report-definition --report-name {{report}}` diff --git a/pages.es/common/aws-glue.md b/pages.es/common/aws-glue.md new file mode 100644 index 0000000000..7c4dea0ee4 --- /dev/null +++ b/pages.es/common/aws-glue.md @@ -0,0 +1,29 @@ +# aws glue + +> CLI para AWS Glue. +> Define el punto de enlace público para el servicio AWS Glue. +> Más información: . + +- Lista trabajos: + +`aws glue list-jobs` + +- Inicia un trabajo: + +`aws glue start-job-run --job-name {{nombre_del_trabajo}}` + +- Inicia la ejecución de un flujo de trabajo: + +`aws glue start-workflow-run --name {{nombre_del_flujo}}` + +- Lista disparadores: + +`aws glue list-triggers` + +- Inicia un disparador: + +`aws glue start-trigger --name {{nombre_disparador}}` + +- Crea un punto final de desarrollo: + +`aws glue create-dev-endpoint --endpoint-name {{nombre}} --role-arn {{role_arn_usado_por_puntofinal}}` diff --git a/pages.es/common/aws-google-auth.md b/pages.es/common/aws-google-auth.md new file mode 100644 index 0000000000..8a1dddc1da --- /dev/null +++ b/pages.es/common/aws-google-auth.md @@ -0,0 +1,20 @@ +# aws-google-auth + +> Herramienta de línea de comandos para adquirir credenciales temporales de AWS (STS) utilizando Google Apps como proveedor federado (Single Sign-On). +> Más información: . + +- Inicia sesión con Google SSO utilizando los identificadores IDP y SP y establece la duración de las credenciales en una hora: + +`aws-google-auth -u {{ejemplo@ejemplo.com}} -I {{$GOOGLE_IDP_ID}} -S {{$GOOGLE_SP_ID}} -d {{3600}}` + +- Inicia sesión pregunt[a]ndo qué rol usar (en caso de varios roles disponibles SAML): + +`aws-google-auth -u {{ejemplo@ejemplo.com}} -I {{$GOOGLE_IDP_ID}} -S {{$GOOGLE_SP_ID}} -d {{3600}} -a` + +- Resuelve alias para cuentas AWS: + +`aws-google-auth -u {{ejemplo@ejemplo.com}} -I {{$GOOGLE_IDP_ID}} -S {{$GOOGLE_SP_ID}} -d {{3600}} -a --resolve-aliases` + +- Muestra información de ayuda: + +`aws-google-auth -h` diff --git a/pages.es/common/aws-help.md b/pages.es/common/aws-help.md new file mode 100644 index 0000000000..61a4715eba --- /dev/null +++ b/pages.es/common/aws-help.md @@ -0,0 +1,16 @@ +# aws help + +> Muestra información de ayuda sobre la CLI de AWS. +> Más información: . + +- Muestra la ayuda: + +`aws help` + +- Lista todos los temas disponibles: + +`aws help topics` + +- Muestra ayuda sobre un tema específico: + +`aws help {{nombre_tema}}` diff --git a/pages.es/common/aws-iam.md b/pages.es/common/aws-iam.md new file mode 100644 index 0000000000..7911bf1507 --- /dev/null +++ b/pages.es/common/aws-iam.md @@ -0,0 +1,36 @@ +# aws iam + +> CLI para AWS IAM. +> Más información: . + +- Muestra la página de ayuda de `aws iam` (incluyendo todos los comandos iam disponibles): + +`aws iam help` + +- Lista usuarios: + +`aws iam list-users` + +- Lista políticas: + +`aws iam list-policies` + +- Lista grupos: + +`aws iam list-groups` + +- Obtiene los usuarios de un grupo: + +`aws iam get-group --group-name {{nombre_grupo}}` + +- Describe una política IAM: + +`aws iam get-policy --policy-arn arn:aws:iam::aws:policy/{{nombre_de_politica}}` + +- Lista claves de acceso: + +`aws iam list-access-keys` + +- Lista claves de acceso para un usuario específico: + +`aws iam list-access-keys --user-name {{nombre_usuario}}` diff --git a/pages.es/common/aws-kinesis.md b/pages.es/common/aws-kinesis.md new file mode 100644 index 0000000000..9a884e6a00 --- /dev/null +++ b/pages.es/common/aws-kinesis.md @@ -0,0 +1,28 @@ +# aws kinesis + +> CLI oficial de AWS para los servicios de streaming de datos de Amazon Kinesis. +> Más información: . + +- Muestra todos los streams de la cuenta: + +`aws kinesis list-streams` + +- Escribe un registro en un flujo de Kinesis: + +`aws kinesis put-record --stream-name {{nombre}} --partition-key {{clave}} --data {{base64_encoded_message}}` + +- Escribe un registro en un flujo Kinesis con codificación base64 en línea: + +`aws kinesis put-record --stream-name {{nombre}} --partition-key {{clave}} --data "$( echo "{{my raw message}}" | base64 )"` + +- Lista los fragmentos disponibles en un flujo: + +`aws kinesis list-shards --stream-name {{nombre}}` + +- Obtiene un iterador de fragmentos para leer el mensaje más antiguo de un fragmento de flujo: + +`aws kinesis get-shard-iterator --shard-iterator-type TRIM_HORIZON --stream-name {{nombre}} --shard-id {{id}}` + +- Lee registros de un fragmento utilizando un iterador de fragmento: + +`aws kinesis get-records --shard-iterator {{iterador}}` diff --git a/pages.es/common/aws-rds.md b/pages.es/common/aws-rds.md new file mode 100644 index 0000000000..585387eed9 --- /dev/null +++ b/pages.es/common/aws-rds.md @@ -0,0 +1,37 @@ +# aws rds + +> CLI para AWS Relational Database Service. +> Crea y administra bases de datos relacionales. +> Más información: . + +- Muestra ayuda para subcomando RDS específicos: + +`aws rds {{subcommand}} help` + +- Detiene instancia: + +`aws rds stop-db-instance --db-instance-identifier {{identificador_de_instancia}}` + +- Inicia instancia: + +`aws rds start-db-instance --db-instance-identifier {{identificador_de_instancia}}` + +- Modifica una instancia RDS: + +`aws rds modify-db-instance --db-instance-identifier {{identificador_de_instancia}} {{parametros}} --apply-immediately` + +- Aplica actualizaciones a una instancia RDS: + +`aws rds apply-pending-maintenance-action --resource-identifier {{database_arn}} --apply-action {{system-update}} --opt-in-type {{immediate}}` + +- Modifica un identificador de instancia: + +`aws rds modify-db-instance --db-instance-identifier {{antiguo_identificador_instancia}} --new-db-instance-identifier {{nuevo_identificador_instance}}` + +- Reinicia una instancia: + +`aws rds reboot-db-instance --db-instance-identifier {{identificador_de_instancia}}` + +- Eliminar una instancia: + +`aws rds delete-db-instance --db-instance-identifier {{identificador_de_instancia}} --final-db-snapshot-identifier {{identificador_snapshot}} --delete-automated-backups` diff --git a/pages.es/common/aws-route53.md b/pages.es/common/aws-route53.md new file mode 100644 index 0000000000..cc0f33c863 --- /dev/null +++ b/pages.es/common/aws-route53.md @@ -0,0 +1,24 @@ +# aws route53 + +> CLI para AWS Route53 - Route 53 es un servicio web de Sistema de Nombres de Dominio (DNS) altamente disponible y escalable. +> Más información: . + +- Lista todas las zonas alojadas, privadas y públicas: + +`aws route53 list-hosted-zones` + +- Muestra todos los registros de una zona: + +`aws route53 list-resource-record-sets --hosted-zone-id {{zone_id}}` + +- Crea una nueva zona pública utilizando un identificador de solicitud para reintentar la operación de forma segura: + +`aws route53 create-hosted-zone --name {{nombre}} --caller-reference {{identificador_solicitud}}` + +- Elimina una zona (si la zona tiene registros SOA y NS no predeterminados, el comando fallará): + +`aws route53 delete-hosted-zone --id {{zone_id}}` + +- Prueba la resolución DNS por parte de los servidores de Amazon de una zona determinada: + +`aws route53 test-dns-answer --hosted-zone-id {{zone_id}} --record-name {{nombre}} --record-type {{tipo}}` diff --git a/pages.es/common/axel.md b/pages.es/common/axel.md new file mode 100644 index 0000000000..f387ffdb43 --- /dev/null +++ b/pages.es/common/axel.md @@ -0,0 +1,25 @@ +# axel + +> Acelerador de descargas. +> Protocolos soportados HTTP, HTTPS y FTP. +> Más información: . + +- Descarga un archivo alojado en una URL: + +`axel {{url}}` + +- Descarga y especifica un nombre de archivo: + +`axel {{url}} -o {{ruta/al/archivo}}` + +- Descarga con múltiples conexiones: + +`axel -n {{num_conexiones}} {{url}}` + +- Busca copias espejo. + +`axel -S {{num_de_espejos}} {{url}}` + +- Limita la velocidad de descarga (bytes por segundo): + +`axel -s {{velocidad}} {{url}}` diff --git a/pages.es/common/az-account.md b/pages.es/common/az-account.md new file mode 100644 index 0000000000..d28627464b --- /dev/null +++ b/pages.es/common/az-account.md @@ -0,0 +1,25 @@ +# az account + +> Administra la información de una suscripción de Azure. +> Parte de `azure-cli` (también conocido como `az`). +> Más información: . + +- Lista las suscripciones de la cuenta activa: + +`az account list` + +- Establece una `subscription` como la suscripción activa: + +`az account set --subscription {{id_de_suscripción}}` + +- Lista las regiones admitidas para la suscripción activa: + +`az account list-locations` + +- Imprime un token de acceso para usar con la `MS Graph API`: + +`az account get-access-token --resource-type {{ms-graph}}` + +- Imprime los detalles de la suscripción activa actual en un formato específico: + +`az account show --output {{json|tsv|table|yaml}}` diff --git a/pages.es/common/az-apim.md b/pages.es/common/az-apim.md new file mode 100644 index 0000000000..b6a517782c --- /dev/null +++ b/pages.es/common/az-apim.md @@ -0,0 +1,25 @@ +# az apim + +> Administra los servicios de Azure API Management. +> Parte de `azure-cli` (también conocido como `az`). +> Más información: . + +- Enumera las instancias del servicio API Management: + +`az apim list --resource-group {{grupo_de_recursos}}` + +- Crea una instancia de servicio de API Management: + +`az apim create --name {{nombre}} --resource-group {{grupo_de_recursos}} --publisher-email {{email}} --publisher-name {{name}}` + +- Elimina una instancia del servicio de API Management: + +`az apim delete --name {{nombre}} --resource-group {{grupo_de_recursos}}` + +- Muestra detalles de una instancia del servicio de API Management: + +`az apim show --name {{nombre}} --resource-group {{grupo_de_recursos}}` + +- Actualiza una instancia del servicio API Management: + +`az apim update --name {{nombre}} --resource-group {{grupo_de_recursos}}` diff --git a/pages.es/common/az-appconfig.md b/pages.es/common/az-appconfig.md new file mode 100644 index 0000000000..909cfc3e94 --- /dev/null +++ b/pages.es/common/az-appconfig.md @@ -0,0 +1,29 @@ +# az appconfig + +> Administra las configuraciones de aplicaciones en Azure. +> Parte de `azure-cli` (también conocido como `az`). +> Más información: . + +- Crea una configuración de aplicación: + +`az appconfig create --name {{nombre}} --resource-group {{grupo_de_recursos}} --location {{ubicación}}` + +- Elimina una configuración de aplicación específica: + +`az appconfig delete --resource-group {{grupo_de_recursos}} --name {{nombre_de_configuración}}` + +- Lista todas las configuraciones de aplicaciones bajo la suscripción actual: + +`az appconfig list` + +- Lista todas las configuraciones de aplicaciones bajo un grupo de recursos específico: + +`az appconfig list --resource-group {{grupo_de_recursos}}` + +- Muestra las propiedades de una configuración de aplicación: + +`az appconfig show --name {{nombre_de_configuración}}` + +- Actualiza una configuración de aplicación específica: + +`az appconfig update --resource-group {{grupo_de_recursos}} --name {{nombre_de_configuración}}` diff --git a/pages.es/common/az-bicep.md b/pages.es/common/az-bicep.md new file mode 100644 index 0000000000..6c17c77992 --- /dev/null +++ b/pages.es/common/az-bicep.md @@ -0,0 +1,33 @@ +# az bicep + +> Grupo de comandos de la CLI de Bicep. +> Parte de `azure-cli` (también conocido como `az`). +> Más información: . + +- Instala la CLI de Bicep. + +`az bicep install` + +- Crea un archivo de Bicep: + +`az bicep build --file {{ruta/al/archivo.bicep}}` + +- Intenta descompilar un archivo de plantilla ARM a un archivo de Bicep: + +`az bicep decompile --file {{ruta/al/archivo_plantilla.json}}` + +- Actualiza la CLI de Bicep a la última versión: + +`az bicep upgrade` + +- Muestra la versión instalada de la CLI de Bicep: + +`az bicep version` + +- Lista todas las versiones disponibles de la CLI de Bicep: + +`az bicep list-versions` + +- Desinstala la CLI de Bicep: + +`az bicep uninstall` diff --git a/pages.es/common/az-config.md b/pages.es/common/az-config.md new file mode 100644 index 0000000000..95321a016c --- /dev/null +++ b/pages.es/common/az-config.md @@ -0,0 +1,21 @@ +# az config + +> Administra la configuración de Azure CLI. +> Parte de `azure-cli` (también conocido como `az`). +> Más información: . + +- Muestra todas las configuraciones: + +`az config get` + +- Muestra las configuraciones para una sección específica: + +`az config get {{nombre_de_sección}}` + +- Establece una configuración: + +`az config set {{nombre_de_configuración}}={{valor}}` + +- Elimina una configuración: + +`az config unset {{nombre_de_configuración}}` diff --git a/pages.es/common/az-devops.md b/pages.es/common/az-devops.md new file mode 100644 index 0000000000..03b1df1204 --- /dev/null +++ b/pages.es/common/az-devops.md @@ -0,0 +1,25 @@ +# az devops + +> Administra organizaciones de Azure DevOps. +> Parte de `azure-cli` (también conocido como `az`). +> Más información: . + +- Configura el Token de Acceso Personal (PAT) para iniciar sesión en una organización específica: + +`az devops login --organization {{url_de_la_organización}}` + +- Abre un proyecto en el navegador: + +`az devops project show --project {{nombre_de_proyecto}} --open` + +- Lista los miembros de un equipo específico que trabaja en un proyecto en particular: + +`az devops team list-member --project {{nombre_de_proyecto}} --team {{nombre_de_equipo}}` + +- Comprueba la configuración actual de la CLI de Azure DevOps: + +`az devops configure --list` + +- Configura el comportamiento de la CLI de Azure DevOps estableciendo un proyecto predeterminado y una organización predeterminada: + +`az devops configure --defaults project={{nombre_de_proyecto}} organization={{url_de_la_organización}}` diff --git a/pages.es/common/az-feedback.md b/pages.es/common/az-feedback.md new file mode 100644 index 0000000000..30424f6fca --- /dev/null +++ b/pages.es/common/az-feedback.md @@ -0,0 +1,9 @@ +# az feedback + +> Envía comentarios al equipo de Azure CLI. +> Parte de `azure-cli` (también conocido como `az`). +> Más información: . + +- Envía comentarios al equipo de Azure CLI: + +`az feedback` diff --git a/pages.es/common/az-group.md b/pages.es/common/az-group.md new file mode 100644 index 0000000000..e20403cacc --- /dev/null +++ b/pages.es/common/az-group.md @@ -0,0 +1,21 @@ +# az group + +> Administra grupos de recursos e implementaciones de plantillas. +> Parte de `azure-cli` (también conocido como `az`). +> Más información: . + +- Crea un nuevo grupo de recursos: + +`az group create --nombre {{nombre}} --ubicación {{ubicación}}` + +- Comprueba si existe un grupo de recursos: + +`az group exists --nombre {{nombre}}` + +- Elimina un grupo de recursos: + +`az group delete --nombre {{nombre}}` + +- Coloca un grupo de recursos en estado de espera hasta que se cumpla una condición: + +`az group wait --nombre {{nombre}} --{{created|deleted|exists|updated}}` diff --git a/pages.es/common/az-logout.md b/pages.es/common/az-logout.md index b0a7936a55..7f9225efd5 100644 --- a/pages.es/common/az-logout.md +++ b/pages.es/common/az-logout.md @@ -1,8 +1,8 @@ # az logout > Cierra la sesión de una suscripción de Azure. -> Parte de `azure-cli`. -> Más información: . +> Parte de `azure-cli` (también conocido como `az`). +> Más información: . - Cierra la sesión de la cuenta activa: diff --git a/pages.es/common/az-sshkey.md b/pages.es/common/az-sshkey.md index 1dfcba71ff..a673e98dd7 100644 --- a/pages.es/common/az-sshkey.md +++ b/pages.es/common/az-sshkey.md @@ -1,7 +1,7 @@ # az sshkey > Administra claves públicas SSH con máquinas virtuales. -> Parte de `azure-cli`. +> Parte de `azure-cli` (también conocido como `az`). > Más información: . - Crea una nueva clave SSH: diff --git a/pages.es/common/az-storage.md b/pages.es/common/az-storage.md new file mode 100644 index 0000000000..19b31232a8 --- /dev/null +++ b/pages.es/common/az-storage.md @@ -0,0 +1,25 @@ +# az storage + +> Administra los recursos de Azure Cloud Storage. +> Parte de `azure-cli` (también conocido como `az`). +> Más información: . + +- Crea una cuenta de almacenamiento: + +`az storage account create --resource-group {{grupo_de_recursos}} --name {{nombre_de_cuenta}} -l {{ubicación}} --sku {{account_sku}}` + +- Enumera todas las cuentas de almacenamiento de un grupo de recursos: + +`az storage account list --resource-group {{grupo_de_recursos}}` + +- Enumera las claves de acceso de una cuenta de almacenamiento: + +`az storage account keys list --resource-group {{grupo_de_recursos}} --name {{nombre_de_cuenta}}` + +- Elimina una cuenta de almacenamiento: + +`az storage account delete --resource-group {{grupo_de_recursos}} --name {{nombre_de_cuenta}}` + +- Actualiza la versión mínima de TLS para una cuenta de almacenamiento: + +`az storage account update --min-tls-version {TLS1_0|TLS1_1|TLS1_2} --name {{nombre_de_cuenta}} --resource-group {{grupo_de_recursos}}` diff --git a/pages.es/common/az-tag.md b/pages.es/common/az-tag.md new file mode 100644 index 0000000000..41d3c88567 --- /dev/null +++ b/pages.es/common/az-tag.md @@ -0,0 +1,25 @@ +# az tag + +> Administra etiquetas en un recurso de Azure. +> Parte de `azure-cli` (también conocido como `az`). +> Más información: . + +- Crea un valor de etiqueta: + +`az tag add-value --name {{nombre_de_etiqueta}} --value {{valor_de_etiqueta}}` + +- Crea una etiqueta en la suscripción: + +`az tag create --name {{nombre_de_etiqueta}}` + +- Elimina una etiqueta de la suscripción: + +`az tag delete --name {{nombre_de_etiqueta}}` + +- Enumera todas las etiquetas de una suscripción: + +`az tag list --resource-id /subscriptions/{{subscription_id}}` + +- Elimina un valor de etiqueta para un nombre de etiqueta específico: + +`az tag remove-value --name {{nombre_de_etiqueta}} --value {{valor_de_etiqueta}}` diff --git a/pages.es/common/az-upgrade.md b/pages.es/common/az-upgrade.md new file mode 100644 index 0000000000..c5aa34cec0 --- /dev/null +++ b/pages.es/common/az-upgrade.md @@ -0,0 +1,17 @@ +# az upgrade + +> Actualiza Azure CLI y sus extensiones. +> Parte de `azure-cli` (también conocido como `az`). +> Más información: . + +- Actualiza Azure CLI: + +`az upgrade` + +- Actualiza Azure CLI y sus extensiones: + +`az upgrade --all` + +- Actualiza Azure CLI y sus extensiones sin solicitar confirmación: + +`az version --all --yes` diff --git a/pages.es/common/az-vm.md b/pages.es/common/az-vm.md index b29f57d715..f029e27f2e 100644 --- a/pages.es/common/az-vm.md +++ b/pages.es/common/az-vm.md @@ -1,7 +1,7 @@ # az vm > Administra máquinas virtuales en Azure. -> Parte de `azure-cli`. +> Parte de `azure-cli` (también conocido como `az`). > Más información: . - Lista los detalles de las máquinas virtuales disponibles: diff --git a/pages.es/common/az-webapp.md b/pages.es/common/az-webapp.md index 6bff4c5f6c..b481654517 100644 --- a/pages.es/common/az-webapp.md +++ b/pages.es/common/az-webapp.md @@ -1,7 +1,7 @@ # az webapp > Administra aplicaciones web alojadas en Azure Cloud Services. -> Parte de `azure-cli`. +> Parte de `azure-cli` (también conocido como `az`).. > Más información: . - Lista los entornos de ejecución disponibles para una aplicación web: diff --git a/pages.es/common/az.md b/pages.es/common/az.md new file mode 100644 index 0000000000..3935389be1 --- /dev/null +++ b/pages.es/common/az.md @@ -0,0 +1,29 @@ +# az + +> La herramienta de línea de comandos de Azure. +> Algunos subcomandos como `az login` tienen su propia documentación de uso. +> Más información: . + +- Inicia sesión en Azure: + +`az login` + +- Administra la información de la suscripción de Azure: + +`az account` + +- Enumera todos los discos administrados de Azure: + +`az disk list` + +- Enumera todas las máquinas virtuales de Azure: + +`az vm list` + +- Administra los servicios de Kubernetes de Azure: + +`az aks` + +- Administra los recursos de red de Azure: + +`az network` diff --git a/pages.es/common/base64.md b/pages.es/common/base64.md index dbf872f2ec..ddc3ccb086 100644 --- a/pages.es/common/base64.md +++ b/pages.es/common/base64.md @@ -11,10 +11,10 @@ `base64 --decode {{nombre_de_archivo}}` -- Codifica stdin: +- Codifica `stdin`: `{{comando}} | base64` -- Decodifica stdin: +- Decodifica `stdin`: `{{comando}} | base64 --decode` diff --git a/pages.es/common/bash.md b/pages.es/common/bash.md index 53365c0959..e27f18aeb6 100644 --- a/pages.es/common/bash.md +++ b/pages.es/common/bash.md @@ -24,7 +24,7 @@ `bash -e {{archivo.sh}}` -- Ejecuta comandos desde stdin (entrada estándar): +- Ejecuta comandos desde `stdin` (entrada estándar): `bash -s` diff --git a/pages.es/common/bc.md b/pages.es/common/bc.md index b5d530ba2e..84e0bb85d0 100644 --- a/pages.es/common/bc.md +++ b/pages.es/common/bc.md @@ -1,20 +1,29 @@ # bc > Un lenguaje de calculadora de precisión arbitraria. +> Ver también: `dc`. > Más información: . -- Inicia `bc` en el modo interactivo utilizando la biblioteca matemática estándar: +- Inicia una sesión interactiva: -`bc -l` +`bc` -- Calcula el resultado de una expresión: +- Inicia una sesión interactiva con la biblioteca matemática estándar activada: -`bc <<< "(1 + 2) * 2 ^ 2"` +`bc --mathlib` -- Calcula el resultado de una expresión y fuerza a que el resultado tenga 10 cifras decimales: +- Calcula una expresión: -`bc <<< "scale=10; 5 / 3"` +`echo '{{5 / 3}}'' | bc` -- Calcula el resultado de una expresión con el seno y coseno utilizando `mathlib`: +- Ejecuta un script: -`bc -l <<< "s(1) + c(1)"` +`bc {{ruta/al/script.bc}}` + +- Calcula una expresión con la escala especificada: + +`echo 'scale = {{10}}; {{5 / 3}}'' | bc` + +- Calcula una función seno/coseno/arctangente/logaritmo natural/exponencial utilizando `mathlib`: + +`echo '{{s|c|a|l|e}}({{1}})'' | bc --mathlib` diff --git a/pages.es/linux/bpytop.md b/pages.es/common/bpytop.md similarity index 100% rename from pages.es/linux/bpytop.md rename to pages.es/common/bpytop.md diff --git a/pages.es/common/bundler.md b/pages.es/common/bundler.md new file mode 100644 index 0000000000..fefb5332fd --- /dev/null +++ b/pages.es/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> Este comando es un alias de `bundle`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr bundle` diff --git a/pages.es/common/cargo.md b/pages.es/common/cargo.md index 976f31c11f..2ac33da45a 100644 --- a/pages.es/common/cargo.md +++ b/pages.es/common/cargo.md @@ -2,7 +2,7 @@ > Gestiona proyectos Rust y sus dependencias de módulos (crates). > Algunos subcomandos como `cargo build` tienen su propia documentación de uso. -> Más información: . +> Más información: . - Busca crates: diff --git a/pages.es/common/cd.md b/pages.es/common/cd.md index 5b9bf3b1f3..b4c2b89051 100644 --- a/pages.es/common/cd.md +++ b/pages.es/common/cd.md @@ -1,20 +1,28 @@ # cd -> Cambiar el directorio de trabajo. +> Cambia el directorio de trabajo actual. > Más información: . - Accede al directorio especificado: `cd {{ruta/al/directorio}}` -- Accede al directorio *home* del usuario actual: - -`cd` - -- Accede al directorio padre del directorio actual: +- Subir al directorio padre respecto del directorio actual: `cd ..` -- Accede al directorio elegido previamente: +- Accede al directorio raíz del usuario actual: + +`cd` + +- Accede al directorio personal del usuario especificado: + +`cd ~{{nombredeusuario}}` + +- Ir al directorio elegido anteriormente: `cd -` + +- Ir al directorio raíz: + +`cd /` diff --git a/pages.es/common/clamav.md b/pages.es/common/clamav.md new file mode 100644 index 0000000000..f4e47c2f41 --- /dev/null +++ b/pages.es/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> Este comando es un alias de `clamdscan`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr clamdscan` diff --git a/pages.es/common/cron.md b/pages.es/common/cron.md new file mode 100644 index 0000000000..0c3e88e68a --- /dev/null +++ b/pages.es/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> Este comando es un alias de `crontab`. + +- Ver documentación para el comando original: + +`tldr crontab` diff --git a/pages.es/common/cut.md b/pages.es/common/cut.md index 4ebc2bc62d..d659b3dbc6 100644 --- a/pages.es/common/cut.md +++ b/pages.es/common/cut.md @@ -1,28 +1,16 @@ # cut -> Recorta campos provenientes de la entrada estándar o de archivos. +> Corta campos de `stdin` o archivos. > Más información: . -- Recorta los primeros 16 caracteres de cada línea de la entrada estándar: +- Imprime un rango específico de caracteres/campos de cada línea: -`cut -c {{1-16}}` +`{{command}} | cut --{{characters|field}}={{1|1,10|1-10|1-|-10}}` -- Recorta los primeros 16 caracteres de cada línea de los archivos especificados: +- Imprime un rango de cada línea con un delimitador específico: -`cut -c {{1-16}} {{archivo}}` +`{{command}} | cut --delimiter="{{,}}" --{{campos}}={1}}` -- Recorta todo desde el tercer caracter hasta el final de cada línea: +- Imprime un rango de cada línea de un archivo específico: -`cut -c {{3-}}` - -- Recorta el quinto campo de cada línea, usando los dos puntos como delimitadores de campos (por defecto el delimitador es tab): - -`cut -d'{{:}}' -f{{5}}` - -- Recorta el segundo y décimo campo de cada línea, usando los punto y coma como delimitadores: - -`cut -d'{{;}}' -f{{2,10}}` - -- Recorta los campos del tercero al último de cada línea, usando los espacios como delimintadores: - -`cut -d'{{ }}' -f{{3-}}` +`cut --{{caracteres}}={{1}} {{ruta/al/archivo}}` diff --git a/pages.es/common/docker-compose.md b/pages.es/common/docker-compose.md index 32510ac63c..4a7218e335 100644 --- a/pages.es/common/docker-compose.md +++ b/pages.es/common/docker-compose.md @@ -9,15 +9,15 @@ - Crea e inicia todos los contenedores en segundo plano usando el archivo `docker-compose.yml` en el directorio actual: -`docker compose up -d` +`docker compose up --detach` - Inicia todos los contenedores y reconstruye si es ncesario: `docker compose up --build` -- Inicia todos los contenedores usando un archivo compose alternativo: +- Inicia todos los contenedores especificando un nombre de proyecto y usando un archivo compose alternativo: -`docker compose --file {{ruta/al/directorio}} up` +`docker compose -p {{nombre_de_proyecto}} --file {{ruta/al/directorio}} up` - Detiene todos los contenedores en ejecución: diff --git a/pages.es/common/fossil-delete.md b/pages.es/common/fossil-delete.md new file mode 100644 index 0000000000..9145fa9620 --- /dev/null +++ b/pages.es/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> Este comando es un alias de `fossil rm`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr fossil rm` diff --git a/pages.es/common/fossil-forget.md b/pages.es/common/fossil-forget.md new file mode 100644 index 0000000000..d288047078 --- /dev/null +++ b/pages.es/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> Este comando es un alias de `fossil rm`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr fossil rm` diff --git a/pages.es/common/fossil-new.md b/pages.es/common/fossil-new.md new file mode 100644 index 0000000000..04704d77fd --- /dev/null +++ b/pages.es/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> Este comando es un alias de `fossil-init`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr fossil-init` diff --git a/pages.es/common/gh-cs.md b/pages.es/common/gh-cs.md new file mode 100644 index 0000000000..f922e9fac9 --- /dev/null +++ b/pages.es/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> Este comando es un alias de `gh-codespace`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr gh-codespace` diff --git a/pages.es/common/git-check-ignore.md b/pages.es/common/git-check-ignore.md index e5e5530d95..15744ac9dd 100644 --- a/pages.es/common/git-check-ignore.md +++ b/pages.es/common/git-check-ignore.md @@ -11,7 +11,7 @@ `git check-ignore {{ruta/al/archivo}} {{ruta/al/directorio}}` -- Usa nombres de rutas, uno por línea, a partir de la entrada estandar (stdin): +- Usa nombres de rutas, uno por línea, a partir de la entrada estandar (`stdin`): `git check-ignore --stdin < {{ruta/al/archivo_lista}}` diff --git a/pages.es/common/git-cherry-pick.md b/pages.es/common/git-cherry-pick.md index 85c458d7f4..08ebf41528 100644 --- a/pages.es/common/git-cherry-pick.md +++ b/pages.es/common/git-cherry-pick.md @@ -18,4 +18,4 @@ - Añade los cambios de un commit al directorio de trabajo, sin crear un commit: -`git cherry-pick -n {{commit}}` +`git cherry-pick --no-commit {{commit}}` diff --git a/pages.es/common/git-format-patch.md b/pages.es/common/git-format-patch.md index 3ab9d4156f..9fad43762b 100644 --- a/pages.es/common/git-format-patch.md +++ b/pages.es/common/git-format-patch.md @@ -8,7 +8,7 @@ `git format-patch {{origen}}` -- Escribe un archivo `.patch` para todos los commits entre dos revisiones a stdout: +- Escribe un archivo `.patch` para todos los commits entre dos revisiones a `stdout`: `git format-patch {{revisión_1}}..{{revisión_2}}` diff --git a/pages.es/common/gnmic-sub.md b/pages.es/common/gnmic-sub.md new file mode 100644 index 0000000000..71d42c8cdb --- /dev/null +++ b/pages.es/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> Este comando es un alias de `gnmic subscribe`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr gnmic subscribe` diff --git a/pages.es/common/google-chrome.md b/pages.es/common/google-chrome.md new file mode 100644 index 0000000000..b309d80b0a --- /dev/null +++ b/pages.es/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> Este comando es un alias de `chromium`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr chromium` diff --git a/pages.es/common/hx.md b/pages.es/common/hx.md new file mode 100644 index 0000000000..0ef169ecb8 --- /dev/null +++ b/pages.es/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> Este comando es un alias de `helix`. + +- Ver documentación para el comando original: + +`tldr helix` diff --git a/pages.es/common/kafkacat.md b/pages.es/common/kafkacat.md new file mode 100644 index 0000000000..996865a0ba --- /dev/null +++ b/pages.es/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> Este comando es un alias de `kcat`. + +- Ver documentación para el comando original: + +`tldr kcat` diff --git a/pages.es/common/krunvm.md b/pages.es/common/krunvm.md new file mode 100644 index 0000000000..8f84ebe3f1 --- /dev/null +++ b/pages.es/common/krunvm.md @@ -0,0 +1,24 @@ +# krunvm + +> Utilidad basada en CLI para crear micro máquinas virtuales utilizando imagenes OCI. +> Más información: . + +- Crea una micro máquina virtual basada en Fedora: + +`krunvm create {{docker.io/fedora}} --cpus {{numero_de_vcpus}} --mem {{memoria_en_megabytes}} --name "{{nombre}}"` + +- Inicia una imagen especifica: + +`krunvm start "{{nombre}}"` + +- Lista las imagenes existentes: + +`krunvm list` + +- Cambia una imagen especifica: + +`krunvm changevm --cpus {{numero_de_vcpus}} --mem {{memoria_en_megabytes}} --name "{{nuevo_nombre}}" "{{nombre}}"` + +- Borra una imagen especifica: + +`krunvm delete "{{nombre}}"` diff --git a/pages.es/common/lzcat.md b/pages.es/common/lzcat.md new file mode 100644 index 0000000000..9c317dff79 --- /dev/null +++ b/pages.es/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> Este comando es un alias de `xz`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr xz` diff --git a/pages.es/common/lzma.md b/pages.es/common/lzma.md new file mode 100644 index 0000000000..7f2ed2297f --- /dev/null +++ b/pages.es/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> Este comando es un alias de `xz`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr xz` diff --git a/pages.es/common/mid3v2.md b/pages.es/common/mid3v2.md new file mode 100644 index 0000000000..969ea90629 --- /dev/null +++ b/pages.es/common/mid3v2.md @@ -0,0 +1,33 @@ +# mid3v2 + +> Editar etiquetas de audio. +> Ver también: `id3v2`. +> Más información: . + +- Lista de todos los marcos ID3v2.3 o ID3v2.4 admitidos y sus significados: + +`id3v2 --list-frames {{ruta/al/archivo1.mp3 ruta/al/archivo2.mp3 ...}}` + +- Lista de todos los géneros numéricos ID3v1 admitidos: + +`id3v2 --list-genres {{ruta/al/archivo1.mp3 ruta/al/archivo2.mp3 ...}}` + +- Lista todas las etiquetas en archivos específicos: + +`id3v2 --list {{ruta/al/archivo1.mp3 ruta/al/archivo2.mp3 ...}}` + +- Establece información específica sobre artistas, álbumes o canciones: + +`id3v2 {{--artist|--album|--song}}={{string}} {{ruta/al/archivo1.mp3 ruta/al/archivo2.mp3 ...}}` + +- Establece información específica de la imagen: + +`id3v2 --picture={{filename:description:image_type:mime_type}} {{ruta/al/archivo1.mp3 ruta/al/archivo2.mp3 ...}}` + +- Establece información específica del año: + +`id3v2 --year={{YYYY}} {{ruta/al/archivo1.mp3 ruta/al/archivo2.mp3 ...}}` + +- Establece información de fecha específica: + +`id3v2 --date={{YYYY-MM-DD}} {{ruta/al/archivo1.mp3 ruta/al/archivo2.mp3 ...}}` diff --git a/pages.es/common/mv.md b/pages.es/common/mv.md index 47fad17cb5..e457a59e80 100644 --- a/pages.es/common/mv.md +++ b/pages.es/common/mv.md @@ -5,20 +5,20 @@ - Mueve archivos en ubicaciones arbitrarias: -`mv {{origen}} {{destino}}` +`mv {{ruta/al/origen}} {{ruta/al/destino}}` - Mueve sin solicitar confirmación antes de sobrescribir archivos existentes: -`mv -f {{origen}} {{destino}}` +`mv -f {{ruta/al/origen}} {{ruta/al/destino}}` - Solicita confirmación antes de sobrescribir archivos existentes, independientemente de los permisos del archivo: -`mv -i {{origen}} {{destino}}` +`mv -i {{ruta/al/origen}} {{ruta/al/destino}}` - No sobrescribe archivos existentes en el destino: -`mv -n {{origen}} {{destino}}` +`mv -n {{ruta/al/origen}} {{ruta/al/destino}}` - Mueve archivos en modo detallado, mostrando los archivos después de moverlos: -`mv -v {{origen}} {{destino}}` +`mv -v {{ruta/al/origen}} {{ruta/al/destino}}` diff --git a/pages.es/common/nc.md b/pages.es/common/nc.md new file mode 100644 index 0000000000..e7bdc2818a --- /dev/null +++ b/pages.es/common/nc.md @@ -0,0 +1,32 @@ +# nc + +> Netcat es una utilidad versátil para trabajar con datos TCP o UDP. +> Más información: . + +- Escucha en un puerto determinado e imprime cualquier dato recibido: + +`nc -l {{puerto}}` + +- Conecta a un puerto determinado: + +`nc {{direccion_ip}} {{puerto}}` + +- Configura un tiempo máximo de respuesta: + +`nc -w {{tiempo_en_segundos}} {{direccion_ip}} {{puerto}}` + +- Mantiene el servidor activo hasta que el cliente se desconecte: + +`nc -k -l {{puerto}}` + +- Mantiene el cliente activo durante un tiempo después de recibir EOF: + +`nc -q {{tiempo_en_segundos}} {{direccion_ip}}` + +- Escanea puertos abiertos en un determinado host: + +`nc -v -z {{direccion_ip}} {{puerto1 puerto2 ...}}` + +- Actúa como un proxy y redirige los datos desde un puerto TCP local a un host remoto específico: + +`nc -l {{puerto_local}} | nc {{nombre_del_host}} {{puerto_remoto}}` diff --git a/pages.es/common/nm-classic.md b/pages.es/common/nm-classic.md new file mode 100644 index 0000000000..344059e58d --- /dev/null +++ b/pages.es/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> Este comando es un alias de `nm`. + +- Ver documentación para el comando original: + +`tldr nm` diff --git a/pages.es/common/ntl.md b/pages.es/common/ntl.md new file mode 100644 index 0000000000..3a4a2acb5e --- /dev/null +++ b/pages.es/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> Este comando es un alias de `netlify`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr netlify` diff --git a/pages.es/common/ping.md b/pages.es/common/ping.md new file mode 100644 index 0000000000..e6ca6130c1 --- /dev/null +++ b/pages.es/common/ping.md @@ -0,0 +1,28 @@ +# ping + +> Envía paquetes ICMP ECHO_REQUEST (pings) a hosts de la red. +> Más información: . + +- Envía pings a un host: + +`ping {{host}}` + +- Envía un número determinado de pings a un host: + +`ping -c {{numero}} {{host}}` + +- Envía pings a un host especificando el intervalo de tiempo entre peticiones (por defecto 1 segundo): + +`ping -i {{segundos}} {{host}}` + +- Envía pings a un host sin intentar resolver nombres simbólicos de direcciones: + +`ping -n {{host}}` + +- Envía pings a un host y emite un sonido cuando un paquete es recibido (si la terminal lo soporta): + +`ping -a {{host}}` + +- Muestra también un mensaje si no se recibió respuesta: + +`ping -O {{host}}` diff --git a/pages.es/common/ping6.md b/pages.es/common/ping6.md new file mode 100644 index 0000000000..b0c6bdf698 --- /dev/null +++ b/pages.es/common/ping6.md @@ -0,0 +1,24 @@ +# ping6 + +> Envía paquetes ICMP ECHO_REQUEST (pings) a hosts de la red usando direcciones IPv6. +> Más información: . + +- Envía pings a un host: + +`ping6 {{host}}` + +- Envía un número específico de pings a un host: + +`ping6 -c {{numero}} {{host}}` + +- Envía pings a un host, especificando el intervalo de tiempo entre peticiones (por defecto es 1 segundo): + +`ping6 -i {{segundos}} {{host}}` + +- Envía pings a un host sin intentar resolver nombres simbólicos de direcciones: + +`ping6 -n {{host}}` + +- Envía pings a un host y emite un sonido cuando un paquete es recibido (si la terminal lo soporta): + +`ping6 -a {{host}}` diff --git a/pages.es/common/ps.md b/pages.es/common/ps.md new file mode 100644 index 0000000000..d1b774af7c --- /dev/null +++ b/pages.es/common/ps.md @@ -0,0 +1,32 @@ +# ps + +> Información sobre procesos en ejecución. +> Más información: . + +- Lista todos los procesos en ejecución: + +`ps aux` + +- Lista todos los procesos en ejecución incluyendo el comando completo: + +`ps auxww` + +- Busca un proceso que coincida con la cadena de texto: + +`ps aux | grep {{cadena}}` + +- Lista todos los procesos del usuario actual en formato supercompleto: + +`ps --user $(id -u) -F` + +- Lista todos los procesos del usuario actual como un árbol: + +`ps --user $(id -u) f` + +- Obtiene el PID del proceso padre: + +`ps -o ppid= -p {{pid}}` + +- Ordena los procesos por consumo de memoria: + +`ps --sort size` diff --git a/pages.es/common/ptpython3.md b/pages.es/common/ptpython3.md new file mode 100644 index 0000000000..f2c0dd7763 --- /dev/null +++ b/pages.es/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> Este comando es un alias de `ptpython`. + +- Ver documentación para el comando original: + +`tldr ptpython` diff --git a/pages.es/common/python3.md b/pages.es/common/python3.md new file mode 100644 index 0000000000..041bfe0b8f --- /dev/null +++ b/pages.es/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> Este comando es un alias de `python`. + +- Ver documentación para el comando original: + +`tldr python` diff --git a/pages.es/common/rcat.md b/pages.es/common/rcat.md new file mode 100644 index 0000000000..bef79d7162 --- /dev/null +++ b/pages.es/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> Este comando es un alias de `rc`. + +- Ver documentación para el comando original: + +`tldr rc` diff --git a/pages.es/common/ripgrep.md b/pages.es/common/ripgrep.md new file mode 100644 index 0000000000..3ce8aaf7b5 --- /dev/null +++ b/pages.es/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> Este comando es un alias de `rg`. + +- Ver documentación para el comando original: + +`tldr rg` diff --git a/pages.es/common/tail.md b/pages.es/common/tail.md new file mode 100644 index 0000000000..569f93becc --- /dev/null +++ b/pages.es/common/tail.md @@ -0,0 +1,29 @@ +# tail + +> Muestra las últimas líneas de un archivo de texto determinado. +> Ver también: `head`. +> Más información: . + +- Imprime las últimas líneas de 'recuento' de un archivo: + +`tail --lines {{recuento}} {{ruta/al/archivo}}` + +- Imprime un archivo desde una línea específica: + +`tail --lines +{{recuento}} {{ruta/al/archivo}}` + +- Imprime un número específico de bytes desde el final de algún archivo: + +`tail --bytes {{recuento}} {{ruta/al/archivo}}` + +- Imprime las últimas líneas de un archivo en tiempo real hasta presionar `Ctrl + C`: + +`tail --follow {{ruta/al/archivo}}` + +- Mantiene leyendo las últimas líneas de un archivo hasta presionar `Ctrl + C`, aunque el archivo sea inaccesible: + +`tail --retry --follow {{ruta/al/archivo}}` + +- Imprime las últimas líneas de 'recuento' en 'archivo' y se actualiza cada 'n' segundos: + +`tail --lines {{recuento}} --sleep-interval {{segundos}} --follow {{ruta/al/archivo}}` diff --git a/pages.es/common/todoman.md b/pages.es/common/todoman.md new file mode 100644 index 0000000000..8db01f8ac2 --- /dev/null +++ b/pages.es/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> Este comando es un alias de `todo`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr todo` diff --git a/pages.es/common/touch.md b/pages.es/common/touch.md index cf2a549f06..9181f4f14c 100644 --- a/pages.es/common/touch.md +++ b/pages.es/common/touch.md @@ -1,7 +1,7 @@ # touch > Cambia el tiempo de accesso y modificación de un archivo (atime, mtime). -> Más información: . +> Más información: . - Crea un archivo nuevo o cambia los tiempos de archivos existentes al tiempo actual: diff --git a/pages.es/common/transmission.md b/pages.es/common/transmission.md new file mode 100644 index 0000000000..4bbfb53bff --- /dev/null +++ b/pages.es/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> Este comando es un alias de `transmission-daemon`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr transmission-daemon` diff --git a/pages.es/common/unlzma.md b/pages.es/common/unlzma.md new file mode 100644 index 0000000000..798f33e8d4 --- /dev/null +++ b/pages.es/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> Este comando es un alias de `xz`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr xz` diff --git a/pages.es/common/unxz.md b/pages.es/common/unxz.md new file mode 100644 index 0000000000..ccd0affc3e --- /dev/null +++ b/pages.es/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> Este comando es un alias de `xz`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr xz` diff --git a/pages.es/common/wc.md b/pages.es/common/wc.md index 42d3d76cd9..3003ecb39e 100644 --- a/pages.es/common/wc.md +++ b/pages.es/common/wc.md @@ -19,7 +19,7 @@ `wc --chars {{ruta/al/archivo}}` -- Cuenta todas las líneas, palabras y bytes desde stdin: +- Cuenta todas las líneas, palabras y bytes desde `stdin`: `{{find .}} | wc` diff --git a/pages.es/common/xzcat.md b/pages.es/common/xzcat.md new file mode 100644 index 0000000000..c4b36a99b2 --- /dev/null +++ b/pages.es/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> Este comando es un alias de `xz`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr xz` diff --git a/pages.es/linux/a2disconf.md b/pages.es/linux/a2disconf.md new file mode 100644 index 0000000000..75c3c6c7ab --- /dev/null +++ b/pages.es/linux/a2disconf.md @@ -0,0 +1,12 @@ +# a2disconf + +> Deshabilita un archivo de configuración de Apache en sistemas operativos basados en Debian. +> Más información: . + +- Deshabilita un archivo de configuración: + +`sudo a2disconf {{archivo_de_configuración}}` + +- No muestra mensajes informativos: + +`sudo a2disconf --quiet {{archivo_de_configuración}}` diff --git a/pages.es/linux/a2dismod.md b/pages.es/linux/a2dismod.md new file mode 100644 index 0000000000..f875536a00 --- /dev/null +++ b/pages.es/linux/a2dismod.md @@ -0,0 +1,12 @@ +# a2dismod + +> Deshabilita un módulo de Apache en sistemas operativos basados en Debian. +> Más información: . + +- Deshabilita un módulo: + +`sudo a2dismod {{módulo}}` + +- No muestra mensajes informativos: + +`sudo a2dismod --quiet {{módulo}}` diff --git a/pages.es/linux/a2dissite.md b/pages.es/linux/a2dissite.md new file mode 100644 index 0000000000..f7dc4d8d3f --- /dev/null +++ b/pages.es/linux/a2dissite.md @@ -0,0 +1,12 @@ +# a2dissite + +> Deshabilita un servidor virtual Apache en sistemas operativos basados en Debian. +> Más información: . + +- Deshabilita un host virtual: + +`sudo a2dissite {{host_virtual}}` + +- No muestra mensajes informativos: + +`sudo a2dissite --quiet {{host_virtual}}` diff --git a/pages.es/linux/a2enconf.md b/pages.es/linux/a2enconf.md new file mode 100644 index 0000000000..2d206120c6 --- /dev/null +++ b/pages.es/linux/a2enconf.md @@ -0,0 +1,12 @@ +# a2enconf + +> Habilita un archivo de configuración de Apache en sistemas operativos basados en Debian. +> Más información: . + +- Habilita un archivo de configuración: + +`sudo a2enconf {{archivo_de_configuración}}` + +- No muestra mensajes informativos: + +`sudo a2enconf --quiet {{archivo_de_configuración}}` diff --git a/pages.es/linux/a2enmod.md b/pages.es/linux/a2enmod.md new file mode 100644 index 0000000000..3b9f445756 --- /dev/null +++ b/pages.es/linux/a2enmod.md @@ -0,0 +1,12 @@ +# a2enmod + +> Habilita un módulo de Apache en sistemas operativos basados en Debian. +> Más información: . + +- Habilita un módulo: + +`sudo a2enmod {{módulo}}` + +- No muestra mensajes informativos: + +`sudo a2enmod --quiet {{módulo}}` diff --git a/pages.es/linux/a2ensite.md b/pages.es/linux/a2ensite.md new file mode 100644 index 0000000000..edd37d5427 --- /dev/null +++ b/pages.es/linux/a2ensite.md @@ -0,0 +1,12 @@ +# a2ensite + +> Habilita un servidor virtual Apache en sistemas operativos basados en Debian. +> Más información: . + +- Habilita un host virtual: + +`sudo a2ensite {{host_virtual}}` + +- No muestra mensajes informativos: + +`sudo a2ensite --quiet {{host_virtual}}` diff --git a/pages.es/linux/a2query.md b/pages.es/linux/a2query.md new file mode 100644 index 0000000000..618a9788ab --- /dev/null +++ b/pages.es/linux/a2query.md @@ -0,0 +1,24 @@ +# a2query + +> Recupera la configuración en tiempo de ejecución de Apache en sistemas operativos basados en Debian. +> Más información: . + +- Lista módulos de Apache habilitados: + +`sudo a2query -m` + +- Comprueba si un módulo específico está instalado: + +`sudo a2query -m {{nombre_del_módulo}}` + +- Lista hosts virtuales habilitados: + +`sudo a2query -s` + +- Muestra el Módulo de Procesamiento Múltiple actualmente habilitado: + +`sudo a2query -M` + +- Muestra la versión de Apache: + +`sudo a2query -v` diff --git a/pages.es/linux/abbr.md b/pages.es/linux/abbr.md new file mode 100644 index 0000000000..03337f96ae --- /dev/null +++ b/pages.es/linux/abbr.md @@ -0,0 +1,21 @@ +# abbr + +> Administra abreviaturas para el shell fish. +> Las palabras definidas por el usuario se reemplazan con frases más largas después de ingresarlas. +> Más información: . + +- Añade una nueva abreviatura: + +`abbr --add {{nombre_abreviatura}} {{comando}} {{argumentos_del_comando}}` + +- Cambia el nombre de una abreviatura existente: + +`abbr --rename {{nombre_antiguo}} {{nombre_nuevo}}` + +- Borra una abreviatura existente: + +`abbr --erase {{nombre_abreviatura}}` + +- Importa las abreviaturas definidas en otro host a través de SSH: + +`ssh {{nombre_host}} abbr --show | source` diff --git a/pages.es/linux/abroot.md b/pages.es/linux/abroot.md new file mode 100644 index 0000000000..165b8cffd9 --- /dev/null +++ b/pages.es/linux/abroot.md @@ -0,0 +1,33 @@ +# abroot + +> La utilidad ABRoot proporciona inmutabilidad y atomicidad completas al realizar transacciones entre 2 estados de partición raíz (A⟺B). +> También permite transacciones bajo demanda a través de un shell transaccional. +> Más información: . + +- Muestra el estado actual o futuro de la partición raíz: + +`sudo abroot get {{present|future}}` + +- Ingresa el shell transaccional en la partición raíz futura y cambia la raíz en el próximo arranque: + +`sudo abroot shell` + +- Ejecuta un comando específico en el shell transaccional en la futura partición raíz y cambia a él en el siguiente arranque: + +`sudo abroot exec "{{comando}}"` + +- Instala paquetes específicos en el host dentro del shell transaccional en la partición raíz futura y cambia a él en el próximo arranque: + +`sudo abroot exec apt install {{paquete1 paquete2 ...}}` + +- Actualiza la partición de arranque (solo para usuarios avanzados): + +`sudo abroot _update-boot` + +- Muestra la ayuda: + +`abroot --help` + +- Muestra la version: + +`abroot --version` diff --git a/pages.es/linux/ac.md b/pages.es/linux/ac.md new file mode 100644 index 0000000000..2ab3113597 --- /dev/null +++ b/pages.es/linux/ac.md @@ -0,0 +1,24 @@ +# ac + +> Imprime estadísticas sobre cuánto tiempo han estado conectados los usuarios. +> Más información: . + +- Imprime cuánto tiempo ha estado conectado el usuario actual en horas: + +`ac` + +- Imprime cuánto tiempo han estado conectados los usuarios en horas: + +`ac --individual-totals` + +- Imprime cuánto tiempo ha estado conectado un usuario en particular en horas: + +`ac --individual-totals {{nombre_usuario}}` + +- Imprime cuánto tiempo un usuario en particular ha estado conectado en horas por día (en total): + +`ac --daily-totals --individual-totals {{nombre_usuario}}` + +- Muestra también detalles adicionales: + +`ac --compatibility` diff --git a/pages.es/linux/acountry.md b/pages.es/linux/acountry.md new file mode 100644 index 0000000000..5e80308882 --- /dev/null +++ b/pages.es/linux/acountry.md @@ -0,0 +1,16 @@ +# acountry + +> Imprime el país donde se encuentra una dirección IPv4 o el nombre de un host. +> Más información: . + +- Imprime un país donde se encuentra una dirección IPv4 o host: + +`acountry {{ejemplo.com}}` + +- Imprime salida de depuración adicional: + +`acountry -d {{ejemplo.com}}` + +- Imprime información más detallada: + +`acountry -v {{ejemplo.com}}` diff --git a/pages.es/linux/alternatives.md b/pages.es/linux/alternatives.md new file mode 100644 index 0000000000..4bba3b20e7 --- /dev/null +++ b/pages.es/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> Este comando es un alias de `update-alternatives`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr update-alternatives` diff --git a/pages.es/linux/apt-get.md b/pages.es/linux/apt-get.md index bc1c534c3c..f61d54d4c5 100644 --- a/pages.es/linux/apt-get.md +++ b/pages.es/linux/apt-get.md @@ -28,6 +28,6 @@ `apt-get autoremove` -- Actualiza paquetes instalados (como `upgrade`), pero elimina paquete obsoletos e instala paquetes adiciones para satisfacer nuevas dependencias: +- Actualiza paquetes instalados (como `upgrade`), pero elimina paquetes obsoletos e instala paquetes adiciones para satisfacer nuevas dependencias: `apt-get dist-upgrade` diff --git a/pages.es/linux/aptitude.md b/pages.es/linux/aptitude.md index 79531917b7..8a31a4d914 100644 --- a/pages.es/linux/aptitude.md +++ b/pages.es/linux/aptitude.md @@ -31,6 +31,6 @@ `aptitude full-upgrade` -- Mantiente un paquete instalado para que no sea actualizado automáticamente: +- Mantiene un paquete instalado para que no sea actualizado automáticamente: `aptitude hold '?installed({{paquete}})'` diff --git a/pages.es/linux/batcat.md b/pages.es/linux/batcat.md new file mode 100644 index 0000000000..2f199b2bd6 --- /dev/null +++ b/pages.es/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> Este comando es un alias de `bat`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr bat` diff --git a/pages.es/linux/bspwm.md b/pages.es/linux/bspwm.md new file mode 100644 index 0000000000..544ece0147 --- /dev/null +++ b/pages.es/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> Este comando es un alias de `bspc`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr bspc` diff --git a/pages.es/linux/cc.md b/pages.es/linux/cc.md new file mode 100644 index 0000000000..536df67fd8 --- /dev/null +++ b/pages.es/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> Este comando es un alias de `gcc`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr gcc` diff --git a/pages.es/linux/cgroups.md b/pages.es/linux/cgroups.md new file mode 100644 index 0000000000..96e7ba9dfa --- /dev/null +++ b/pages.es/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> Este comando es un alias de `cgclassify`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr cgclassify` diff --git a/pages.es/linux/cpulimit.md b/pages.es/linux/cpulimit.md index 6b8397731f..0bbf5ad5ad 100644 --- a/pages.es/linux/cpulimit.md +++ b/pages.es/linux/cpulimit.md @@ -13,7 +13,7 @@ - Ejecuta un programa determinado y limita su uso a solo el 50% del CPU: -`cpulimit --limit {{50}} -- {{programa arg1 arg2 ...}}` +`cpulimit --limit {{50}} -- {{programa argument1 argument2 ...}}` - Ejecuta un programa, limita el uso del CPU a 50% y corre cpulimit en segundo plano: diff --git a/pages.es/linux/dnf.md b/pages.es/linux/dnf.md index 81ecc0ef4a..897c27ae10 100644 --- a/pages.es/linux/dnf.md +++ b/pages.es/linux/dnf.md @@ -27,6 +27,6 @@ `dnf list --installed` -- Encuentra que paquete provee un archivo determinado: +- Encuentra qué paquete provee un archivo determinado: `dnf provides {{archivo}}` diff --git a/pages.es/linux/grub-mkconfig.md b/pages.es/linux/grub-mkconfig.md new file mode 100644 index 0000000000..38f7dcfcec --- /dev/null +++ b/pages.es/linux/grub-mkconfig.md @@ -0,0 +1,16 @@ +# grub-mkconfig + +> Generar un archivo de configuracion de GRUB. +> Más información: . + +- Ejecutar el comando solo e imprimir la salida a `stdout`: + +`sudo grub-mkconfig` + +- Generar el archivo de configuracion: + +`sudo grub-mkconfig --output={{/boot/grub/grub.cfg}}` + +- Imprimir la pagina de ayuda: + +`grub-mkconfig --help` diff --git a/pages.es/linux/halt.md b/pages.es/linux/halt.md index bcc52e6cb6..cff2af00da 100644 --- a/pages.es/linux/halt.md +++ b/pages.es/linux/halt.md @@ -1,7 +1,7 @@ # halt > Detiene, apaga o reinicia la máquina. -> Más información: . +> Más información: . - Detiene la máquina: diff --git a/pages.es/linux/ip-route-list.md b/pages.es/linux/ip-route-list.md new file mode 100644 index 0000000000..efb26a176d --- /dev/null +++ b/pages.es/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> Este comando es un alias de `ip-route-show`. + +- Ver documentación para el comando original: + +`tldr ip-route-show` diff --git a/pages.es/linux/pkgadd.md b/pages.es/linux/pkgadd.md index aea84c832e..55d7aeb772 100644 --- a/pages.es/linux/pkgadd.md +++ b/pages.es/linux/pkgadd.md @@ -1,7 +1,7 @@ # pkgadd > Añade un paquete a un sistema CRUX. -> Más información: . +> Más información: . - Instala un paquete de software local: diff --git a/pages.es/linux/pkgrm.md b/pages.es/linux/pkgrm.md index 0b28c67d7c..83388fa631 100644 --- a/pages.es/linux/pkgrm.md +++ b/pages.es/linux/pkgrm.md @@ -1,7 +1,7 @@ # pkgrm > Elimina un paquete de un sistema CRUX. -> Más información: . +> Más información: . - Elimina un paquete instalado: diff --git a/pages.es/linux/snake4scores.md b/pages.es/linux/snake4scores.md index f4ce76c7f6..14b829e1f8 100644 --- a/pages.es/linux/snake4scores.md +++ b/pages.es/linux/snake4scores.md @@ -1,7 +1,7 @@ # snake4scores > Muestra las máximas puntuaciones del juego snake4. -> Más información: . +> Más información: . - Muestra las máximas puntuaciones: diff --git a/pages.es/linux/ufw.md b/pages.es/linux/ufw.md index 213d84bc9d..5c1e6abb0b 100644 --- a/pages.es/linux/ufw.md +++ b/pages.es/linux/ufw.md @@ -1,7 +1,7 @@ # ufw > Cortafuegos sin complicaciones (_Uncomplicated Firewall_). -> Interfaz de usuario de iptables para facilitar la configuración de un firewall. +> Interfaz de usuario de `iptables` para facilitar la configuración de un firewall. > Más información: . - Activa ufw: diff --git a/pages.es/osx/aa.md b/pages.es/osx/aa.md new file mode 100644 index 0000000000..20f259bf8d --- /dev/null +++ b/pages.es/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> Este comando es un alias de `yaa`. + +- Ver documentación para el comando original: + +`tldr yaa` diff --git a/pages.es/osx/aiac.md b/pages.es/osx/aiac.md new file mode 100644 index 0000000000..3afadcbe4c --- /dev/null +++ b/pages.es/osx/aiac.md @@ -0,0 +1,24 @@ +# aiac + +> Utiliza OpenAI para generar configuraciones IaC, utilidades, consultas y más. +> Más información: . + +- Genera Terraform para una cuenta de almacenamiento Azure: + +`aiac get terraform {{for an azure storage account}}` + +- Genera un Dockerfile para nginx: + +`aiac get dockerfile {{for a secured nginx}}` + +- Genera una GitHub action que aplica Terraform: + +`aiac get github action {{that plans and applies terraform}}` + +- Genera un escáner de puertos en Python: + +`aiac get python {{code that scans all open ports in my network}}` + +- Genera una consulta MongoDB: + +`aiac get mongo {{query that aggregates all documents by created date}}` diff --git a/pages.es/osx/appsleepd.md b/pages.es/osx/appsleepd.md new file mode 100644 index 0000000000..e9ed8cf212 --- /dev/null +++ b/pages.es/osx/appsleepd.md @@ -0,0 +1,9 @@ +# appsleepd + +> Proporciona servicios de suspensión de aplicaciones. +> No debe invocarse manualmente. +> Más información: . + +- Inicia el daemon: + +`appsleepd` diff --git a/pages.es/osx/auvaltool.md b/pages.es/osx/auvaltool.md new file mode 100644 index 0000000000..3c756f9435 --- /dev/null +++ b/pages.es/osx/auvaltool.md @@ -0,0 +1,12 @@ +# auvaltool + +> Herramienta de validación AudioUnit para Mac. +> Más información: . + +- Lista todas las AudioUnits disponibles de cualquier tipo: + +`auvaltool -a` + +- Lista todas las AudioUnits [a]vailable de cualquier tipo con su [l]ocalización: + +`auvaltool -al` diff --git a/pages.es/osx/base64.md b/pages.es/osx/base64.md index b731214a84..d5d644c91e 100644 --- a/pages.es/osx/base64.md +++ b/pages.es/osx/base64.md @@ -11,10 +11,10 @@ `base64 --decode --input={{base64_archivo}}` -- Codifica desde stdin: +- Codifica desde `stdin`: `echo -n "{{texto_plano}}" | base64` -- Decodifica desde stdin: +- Decodifica desde `stdin`: `echo -n {{base64_texto}} | base64 --decode` diff --git a/pages.es/osx/bc.md b/pages.es/osx/bc.md new file mode 100644 index 0000000000..089e887a8f --- /dev/null +++ b/pages.es/osx/bc.md @@ -0,0 +1,29 @@ +# bc + +> Un lenguaje de calculadora de precisión arbitraria. +> Ver también: `dc`. +> Más información: . + +- Inicia una sesión interactiva: + +`bc` + +- Inicia una sesión interactiva con la biblioteca mathlib estándar activada: + +`bc --mathlib` + +- Calcula una expresión: + +`bc --expression='{{5 / 3}}'` + +- Ejecuta un script: + +`bc {{ruta/al/script.bc}}` + +- Calcula una expresión con la escala especificada: + +`bc --expression='scale = {{10}}; {{5 / 3}}'` + +- Calcula una función seno/coseno/arctangente/logaritmo natural/exponencial utilizando `mathlib`: + +`bc --mathlib --expression='{{s|c|a|l|e}}({{1}})'` diff --git a/pages.es/osx/biomesyncd.md b/pages.es/osx/biomesyncd.md new file mode 100644 index 0000000000..5206ec1908 --- /dev/null +++ b/pages.es/osx/biomesyncd.md @@ -0,0 +1,9 @@ +# biomesyncd + +> Sincroniza datos entre dispositivos registrados en la misma cuenta. +> No debe invocarse manualmente. +> Más información: . + +- Inicia el daemon: + +`biomesyncd` diff --git a/pages.es/osx/bless.md b/pages.es/osx/bless.md new file mode 100644 index 0000000000..23602b52c1 --- /dev/null +++ b/pages.es/osx/bless.md @@ -0,0 +1,20 @@ +# bless + +> Establece la capacidad de arranque del volumen y las opciones del disco de arranque. +> Más información: . + +- Bendice un volumen sólo con Mac OS X o Darwin, y crea los archivos BootX y `boot.efi` según sea necesario: + +`bless --folder {{/Volumes/Mac OS X/System/Library/CoreServices}} --bootinfo --bootefi` + +- Configura un volumen que contenga Mac OS 9 y Mac OS X para que sea el volumen activo: + +`bless --mount {{Volumes/Mac OS}} --setBoot` + +- Configura el sistema como NetBoot y localiza un servidor disponible: + +`bless --netboot --server {{bsdp://255.255.255.255}}` + +- Recopila información sobre el volumen seleccionado actualmente (según lo determinado por el firmware), adecuado para la canalización a un programa capaz de analizar las listas de propiedades: + +`bless --info --plist` diff --git a/pages.es/osx/bnepd.md b/pages.es/osx/bnepd.md new file mode 100644 index 0000000000..ad61dee292 --- /dev/null +++ b/pages.es/osx/bnepd.md @@ -0,0 +1,9 @@ +# bnepd + +> Un servicio que gestiona todas las conexiones de red Bluetooth. +> No debe invocarse manualmente. +> Más información: . + +- Inicia el daemon: + +`bnepd` diff --git a/pages.es/osx/coreaudiod.md b/pages.es/osx/coreaudiod.md new file mode 100644 index 0000000000..000e6d9ef8 --- /dev/null +++ b/pages.es/osx/coreaudiod.md @@ -0,0 +1,9 @@ +# coreaudiod + +> Servicio para Core Audio, el sistema de audio de Apple. +> No debe invocarse manualmente. +> Más información: . + +- Inicia el daemon: + +`coreaudiod` diff --git a/pages.es/osx/cot.md b/pages.es/osx/cot.md new file mode 100644 index 0000000000..c7d1ebd4e8 --- /dev/null +++ b/pages.es/osx/cot.md @@ -0,0 +1,24 @@ +# cot + +> El editor de texto simple para macOS. +> Más información: . + +- Inicia CotEditor: + +`cot` + +- Abre archivos específicos: + +`cot {{ruta/al/archivo1 ruta/al/archivo2 ...}}` + +- Abre un nuevo documento en blanco: + +`cot --new` + +- Abre un archivo específico y bloquea el terminal hasta que se cierre: + +`cot --wait {{ruta/al/archivo}}` + +- Abre un archivo específico con el cursor en una línea y columna específicas: + +`cot --line {{1}} --column {{80}} {{ruta/al/archivo}}` diff --git a/pages.es/osx/csrutil.md b/pages.es/osx/csrutil.md new file mode 100644 index 0000000000..b6aba3300f --- /dev/null +++ b/pages.es/osx/csrutil.md @@ -0,0 +1,28 @@ +# csrutil + +> Gestionar la configuración de la Protección de Integridad del Sistema. +> Más información: . + +- Mstra el estado de la Protección de Integridad del Sistema: + +`csrutil status` + +- Desactiva la Protección de Integridad del Sistema: + +`csrutil disable` + +- Activa la Protección de Integridad del Sistema: + +`csrutil enable` + +- Muestra la lista de fuentes NetBoot permitidas: + +`csrutil netboot list` + +- Añade una dirección IPv4 a la lista de fuentes NetBoot permitidas: + +`csrutil netboot add {{ip}}` + +- Restablece el estado de Protección de integridad del Sistema y borra la lista NetBoot: + +`csrutil clear` diff --git a/pages.es/osx/csshx.md b/pages.es/osx/csshx.md new file mode 100644 index 0000000000..a92bdb0fdb --- /dev/null +++ b/pages.es/osx/csshx.md @@ -0,0 +1,16 @@ +# csshX + +> Herramienta SSH de clúster para macOS. +> Más información: . + +- Conectarse a múltiples hosts: + +`csshX {{nombrehost1}} {{nombrehost2}}` + +- Conectarse a múltiples hosts con una clave SSH dada: + +`csshX {{usuario@nombrehost1}} {{usuario@nombrehost2}} --ssh_args "-i {{ruta/al/archivo_de_clave.pem}}"` + +- Conectarse a un clúster predefinido desde `/etc/clusters`: + +`csshX cluster1` diff --git a/pages.es/osx/ctkd.md b/pages.es/osx/ctkd.md new file mode 100644 index 0000000000..72b6d966cf --- /dev/null +++ b/pages.es/osx/ctkd.md @@ -0,0 +1,9 @@ +# ctkd + +> Daemon de SmartCard. +> No debe invocarse manualmente. +> Más información: . + +- Inicia el daemon: + +`ctkd` diff --git a/pages.es/osx/cut.md b/pages.es/osx/cut.md new file mode 100644 index 0000000000..a972da4de3 --- /dev/null +++ b/pages.es/osx/cut.md @@ -0,0 +1,16 @@ +# cortar + +> Cortar campos sean `stdin` o archivos. +> Más información: . + +- Imprime un rango específico de caracteres/campos de cada línea: + +`{{command}} | cut -{{c|f}} {{1|1,10|1-10|1-|-10}}` + +- Imprime un rango de cada línea con un delimitador específico: + +`{{command}} | cut -d "{{,}}" -{{c}} {{1}}` + +- Imprime un rango de cada línea de un archivo específico: + +`cut -{{c}} {{1}} {{ruta/al/archivo}}` diff --git a/pages.es/osx/dd.md b/pages.es/osx/dd.md new file mode 100644 index 0000000000..fa304585ed --- /dev/null +++ b/pages.es/osx/dd.md @@ -0,0 +1,32 @@ +# dd + +> Convierte y copia un archivo. +> Más información: . + +- Crea una unidad USB de arranque desde un archivo isohybrid (como `archlinux-xxx.iso`) y muestra el progreso: + +`dd if={{ruta/al/archivo.iso}} of={{/dev/dispositivo_usb}} status=progress` + +- Clona una unidad a otra unidad con un bloque de 4 MB, ignora el error y muestra el progreso: + +`dd if={{/dev/dispositivo_de origen}} of={{/dev/dispositivo_de destino}} bs={{4m}} conv={{noerror}} status=progress` + +- Genera un fichero de 100 bytes aleatorios utilizando el controlador aleatorio del kernel: + +`dd if=/dev/urandom of={{ruta/al/archivo_aleatorio}} bs={{100}} count={{1}}` + +- Compara el rendimiento de escritura de un disco: + +`dd if=/dev/zero of={{ruta/para/archivo_1GB}} bs={{1024}} count={{1000000}}` + +- Genera una copia de seguridad del sistema en un archivo IMG y muestra el progreso: + +`dd if=/dev/{{dispositivo_unidad}} of={{ruta/al/archivo.img}} status=progress` + +- Restaura una unidad desde un archivo IMG y muestra el progreso: + +`dd if={{ruta/al/archivo.img}} of={{/dev/unidad_dispositivo}} status=progress` + +- Comprueba el progreso de una operación dd en curso (ejecuta este comando desde otro shell): + +`kill -USR1 $(pgrep ^dd)` diff --git a/pages.es/osx/dhcp6d.md b/pages.es/osx/dhcp6d.md new file mode 100644 index 0000000000..ed68ec3964 --- /dev/null +++ b/pages.es/osx/dhcp6d.md @@ -0,0 +1,13 @@ +# dhcp6d + +> Servidor DHCPv6 sin estado. Ver también: `InternetSharing`. +> No debe invocarse manualmente. +> Más información: . + +- Inicia el daemon: + +`dhcp6d` + +- Utiliza una configuración personalizada: + +`dhcp6d {{ruta/al/archivo_config}}` diff --git a/pages.es/osx/diskutil.md b/pages.es/osx/diskutil.md new file mode 100644 index 0000000000..2e9bb8a8e8 --- /dev/null +++ b/pages.es/osx/diskutil.md @@ -0,0 +1,20 @@ +# diskutil + +> Utilidad para gestionar discos y volúmenes locales. +> Más información: . + +- Lista todos los discos, particiones y volúmenes montados actualmente disponibles: + +`diskutil list` + +- Repara las estructuras de datos del sistema de archivos de un volumen: + +`diskutil repairVolume {{/dev/disk_device}}` + +- Desmonta un volumen: + +`diskutil unmountDisk {{/dev/disk_device}}` + +- Expulsa un CD/DVD (primero lo desmonta): + +`diskutil eject {{/dev/disk_device1}}` diff --git a/pages.es/osx/dot_clean.md b/pages.es/osx/dot_clean.md new file mode 100644 index 0000000000..6a45bf8945 --- /dev/null +++ b/pages.es/osx/dot_clean.md @@ -0,0 +1,28 @@ +# dot_clean + +> Fusiona los archivos ._* con los archivos nativos correspondientes. +> Más información: . + +- Fusiona todos los ficheros `._*` recursivamente: + +`dot_clean {{ruta/al/directorio}}` + +- No fusiona recursivamente todos los `._*` en un directorio (fusión plana): + +`dot_clean -f {{ruta/al/directorio}}` + +- Fusiona y elimina todos los archivos `._*`: + +`dot_clean -m {{ruta/al/directorio}}` + +- Elimina sólo los archivos `._*` si hay un archivo nativo coincidente: + +`dot_clean -n {{ruta/al/directorio}}` + +- Sigue los enlaces simbólicos: + +`dot_clean -s {{ruta/al/directorio}}` + +- Muestra resultados detallados: + +`dot_clean -v {{ruta/al/directorio}}` diff --git a/pages.es/osx/du.md b/pages.es/osx/du.md new file mode 100644 index 0000000000..a7cc9d2856 --- /dev/null +++ b/pages.es/osx/du.md @@ -0,0 +1,28 @@ +# du + +> Uso del disco: estima y resume el uso del espacio de archivos y directorios. +> Más información: . + +- Lista los tamaños de un directorio y de cualquier subdirectorio, en la unidad dada (KiB/MiB/GiB): + +`du -{{k|m|g}} {{ruta/al/directorio}}` + +- Enumera los tamaños de un directorio y sus subdirectorios, de forma legible (es decir, seleccionando automáticamente la unidad adecuada para cada tamaño): + +`du -h {{ruta/al/directorio}}` + +- Muestra el tamaño de un único directorio, en unidades legibles para el ser humano: + +`du -sh {{ruta/al/directorio}}` + +- Muestra los tamaños legibles de un directorio y de todos los archivos y directorios que contiene: + +`du -ah {{ruta/al/directorio}}` + +- Lista los tamaños legibles de un directorio y sus subdirectorios, hasta N niveles de profundidad: + +`du -h -d {{2}} {{ruta/al/directorio}}` + +- Lista el tamaño legible de todos los archivos `.jpg` en los subdirectorios del directorio actual y muestra un total acumulado al final: + +`du -ch {{*/*.jpg}}` diff --git a/pages.es/osx/ed.md b/pages.es/osx/ed.md new file mode 100644 index 0000000000..66e80d013c --- /dev/null +++ b/pages.es/osx/ed.md @@ -0,0 +1,25 @@ +# ed + +> El editor de texto original de Unix. +> Ver también: `awk`, `sed`. +> Más información: . + +- Inicia una sesión de edición interactiva con un documento vacío: + +`ed` + +- Inicia una sesión de editor interactivo con un documento vacío y un [p]rompt específico: + +`ed -p '> '` + +- Inicia una sesión de editor interactivo con un documento vacío y sin diagnósticos, recuento de bytes y prompt '!': + +`ed -s` + +- Edita un archivo específico (muestra el recuento de bytes del archivo cargado): + +`ed {{ruta/al/archivo}}` + +- Reemplaza una cadena con un reemplazo específico para todas las líneas: + +`,s/{{expresión_regular}}/{{reemplazo}}/g` diff --git a/pages.es/osx/emond.md b/pages.es/osx/emond.md new file mode 100644 index 0000000000..29abed46d4 --- /dev/null +++ b/pages.es/osx/emond.md @@ -0,0 +1,17 @@ +# emond + +> Servicio de Monitor de Eventos que acepta eventos de varios servicios, los ejecuta a través de un simple motor de reglas, y toma acciones. +> Las acciones pueden ejecutar comandos, enviar correos electrónicos o mensajes SMS. +> Más información: . + +- Inicia el daemon: + +`emond` + +- Especifica las reglas que emond debe procesar indicando una ruta a un archivo o directorio: + +`emond -r {{ruta/al/archivo_o_directorio}}` + +- Utiliza un archivo de configuración específico: + +`emond -c {{ruta/al/archivo_de_configuración}}` diff --git a/pages.es/osx/fdesetup.md b/pages.es/osx/fdesetup.md new file mode 100644 index 0000000000..aeab60e795 --- /dev/null +++ b/pages.es/osx/fdesetup.md @@ -0,0 +1,24 @@ +# fdesetup + +> Establece y recupera información relacionada con FileVault. +> Más información: . + +- Lista los usuarios actuales habilitados por FileVault: + +`sudo fdesetup list` + +- Obtiene el estado actual de FileVault: + +`fdesetup status` + +- Añade un usuario habilitado para FileVault: + +`sudo fdesetup add -usertoadd usuario1` + +- Habilita FileVault: + +`sudo fdesetup enable` + +- Desactiva FileVault: + +`sudo fdesetup disable` diff --git a/pages.es/osx/fsck.md b/pages.es/osx/fsck.md new file mode 100644 index 0000000000..c71e1dc72f --- /dev/null +++ b/pages.es/osx/fsck.md @@ -0,0 +1,21 @@ +# fsck + +> Comprueba la integridad de un sistema de archivos o los repara. El sistema de ficheros debe estar desmontado en el momento de ejecutar el comando. +> Es una envoltura que llama a `fsck_hfs`, `fsck_apfs`, `fsck_msdos`, `fsck_exfat`, y `fsck_udf` según sea necesario. +> Más información: . + +- Comprueba el sistema de ficheros `/dev/sdX`, informando de cualquier bloque dañado: + +`fsck {{/dev/sdX}}` + +- Comprueba el sistema de ficheros `/dev/sdX` sólo si está limpio, informando de los bloques dañados y dejando que el usuario elija interactivamente si repara cada uno de ellos: + +`fsck -f {{/dev/sdX}}` + +- Comprueba el sistema de archivos `/dev/sdX` sólo si está limpio, informando de los bloques dañados y reparándolos automáticamente: + +`fsck -fy {{/dev/sdX}}` + +- Comprueba el sistema de archivos `/dev/sdX`, informando si se ha desmontado correctamente: + +`fsck -q {{/dev/sdX}}` diff --git a/pages.es/osx/ftxdiff.md b/pages.es/osx/ftxdiff.md new file mode 100644 index 0000000000..517eeaa635 --- /dev/null +++ b/pages.es/osx/ftxdiff.md @@ -0,0 +1,16 @@ +# ftxdiff + +> Compara las diferencias entre dos fuentes. +> Más información: . + +- Envía las diferencias a un archivo de texto específico: + +`ftxdiff --output {{ruta/al/archivo_de_fontdif.txt}} {{ruta/al/archivo_ont_1.ttc}} {{ruta/al/archivo_font_2.ttc}}` + +- Incluir nombres de glifos en la salida: + +`ftxdiff --include-glyph-names` + +- Incluir nombres unicode en la salida: + +`ftxdiff --include-unicode-names` diff --git a/pages.es/osx/g[.md b/pages.es/osx/g[.md new file mode 100644 index 0000000000..8e00aada18 --- /dev/null +++ b/pages.es/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> Este comando es un alias de `-p linux [`. + +- Ver documentación para el comando original: + +`tldr -p linux [` diff --git a/pages.es/osx/gawk.md b/pages.es/osx/gawk.md new file mode 100644 index 0000000000..5d222387fe --- /dev/null +++ b/pages.es/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> Este comando es un alias de `-p linux awk`. + +- Ver documentación para el comando original: + +`tldr -p linux awk` diff --git a/pages.es/osx/gb2sum.md b/pages.es/osx/gb2sum.md new file mode 100644 index 0000000000..74c45e9ca3 --- /dev/null +++ b/pages.es/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> Este comando es un alias de `-p linux b2sum`. + +- Ver documentación para el comando original: + +`tldr -p linux b2sum` diff --git a/pages.es/osx/gbase32.md b/pages.es/osx/gbase32.md new file mode 100644 index 0000000000..d061609341 --- /dev/null +++ b/pages.es/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> Este comando es un alias de `-p linux base32`. + +- Ver documentación para el comando original: + +`tldr -p linux base32` diff --git a/pages.es/osx/gbase64.md b/pages.es/osx/gbase64.md new file mode 100644 index 0000000000..06b6fad1d0 --- /dev/null +++ b/pages.es/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> Este comando es un alias de `-p linux base64`. + +- Ver documentación para el comando original: + +`tldr -p linux base64` diff --git a/pages.es/osx/gbasename.md b/pages.es/osx/gbasename.md new file mode 100644 index 0000000000..add0e33171 --- /dev/null +++ b/pages.es/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> Este comando es un alias de `-p linux basename`. + +- Ver documentación para el comando original: + +`tldr -p linux basename` diff --git a/pages.es/osx/gbasenc.md b/pages.es/osx/gbasenc.md new file mode 100644 index 0000000000..2a6e0ac542 --- /dev/null +++ b/pages.es/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> Este comando es un alias de `-p linux basenc`. + +- Ver documentación para el comando original: + +`tldr -p linux basenc` diff --git a/pages.es/osx/gcat.md b/pages.es/osx/gcat.md new file mode 100644 index 0000000000..0b2d71cd52 --- /dev/null +++ b/pages.es/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> Este comando es un alias de `-p linux cat`. + +- Ver documentación para el comando original: + +`tldr -p linux cat` diff --git a/pages.es/osx/gchcon.md b/pages.es/osx/gchcon.md new file mode 100644 index 0000000000..873974cdd7 --- /dev/null +++ b/pages.es/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> Este comando es un alias de `-p linux chcon`. + +- Ver documentación para el comando original: + +`tldr -p linux chcon` diff --git a/pages.es/osx/gchgrp.md b/pages.es/osx/gchgrp.md new file mode 100644 index 0000000000..fbc1b6e95a --- /dev/null +++ b/pages.es/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> Este comando es un alias de `-p linux chgrp`. + +- Ver documentación para el comando original: + +`tldr -p linux chgrp` diff --git a/pages.es/osx/gchmod.md b/pages.es/osx/gchmod.md new file mode 100644 index 0000000000..ece2209637 --- /dev/null +++ b/pages.es/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> Este comando es un alias de `-p linux chmod`. + +- Ver documentación para el comando original: + +`tldr -p linux chmod` diff --git a/pages.es/osx/gchown.md b/pages.es/osx/gchown.md new file mode 100644 index 0000000000..c7f15b2c1e --- /dev/null +++ b/pages.es/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> Este comando es un alias de `-p linux chown`. + +- Ver documentación para el comando original: + +`tldr -p linux chown` diff --git a/pages.es/osx/gchroot.md b/pages.es/osx/gchroot.md new file mode 100644 index 0000000000..14cc926baf --- /dev/null +++ b/pages.es/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> Este comando es un alias de `-p linux chroot`. + +- Ver documentación para el comando original: + +`tldr -p linux chroot` diff --git a/pages.es/osx/gcksum.md b/pages.es/osx/gcksum.md new file mode 100644 index 0000000000..62963febee --- /dev/null +++ b/pages.es/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> Este comando es un alias de `-p linux cksum`. + +- Ver documentación para el comando original: + +`tldr -p linux cksum` diff --git a/pages.es/osx/gcomm.md b/pages.es/osx/gcomm.md new file mode 100644 index 0000000000..d7d1137ece --- /dev/null +++ b/pages.es/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> Este comando es un alias de `-p linux comm`. + +- Ver documentación para el comando original: + +`tldr -p linux comm` diff --git a/pages.es/osx/gcp.md b/pages.es/osx/gcp.md new file mode 100644 index 0000000000..9c45c6b3fc --- /dev/null +++ b/pages.es/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> Este comando es un alias de `-p linux cp`. + +- Ver documentación para el comando original: + +`tldr -p linux cp` diff --git a/pages.es/osx/gcsplit.md b/pages.es/osx/gcsplit.md new file mode 100644 index 0000000000..6078ba24b4 --- /dev/null +++ b/pages.es/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> Este comando es un alias de `-p linux csplit`. + +- Ver documentación para el comando original: + +`tldr -p linux csplit` diff --git a/pages.es/osx/gcut.md b/pages.es/osx/gcut.md new file mode 100644 index 0000000000..828fb12e25 --- /dev/null +++ b/pages.es/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> Este comando es un alias de `-p linux cut`. + +- Ver documentación para el comando original: + +`tldr -p linux cut` diff --git a/pages.es/osx/gdate.md b/pages.es/osx/gdate.md new file mode 100644 index 0000000000..9f7f7bdbc2 --- /dev/null +++ b/pages.es/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> Este comando es un alias de `-p linux date`. + +- Ver documentación para el comando original: + +`tldr -p linux date` diff --git a/pages.es/osx/gdd.md b/pages.es/osx/gdd.md new file mode 100644 index 0000000000..e8e85be5c4 --- /dev/null +++ b/pages.es/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> Este comando es un alias de `-p linux dd`. + +- Ver documentación para el comando original: + +`tldr -p linux dd` diff --git a/pages.es/osx/gdf.md b/pages.es/osx/gdf.md new file mode 100644 index 0000000000..b5929e2731 --- /dev/null +++ b/pages.es/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> Este comando es un alias de `-p linux df`. + +- Ver documentación para el comando original: + +`tldr -p linux df` diff --git a/pages.es/osx/gdir.md b/pages.es/osx/gdir.md new file mode 100644 index 0000000000..f892f0e172 --- /dev/null +++ b/pages.es/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> Este comando es un alias de `-p linux dir`. + +- Ver documentación para el comando original: + +`tldr -p linux dir` diff --git a/pages.es/osx/gdircolors.md b/pages.es/osx/gdircolors.md new file mode 100644 index 0000000000..0d48484d38 --- /dev/null +++ b/pages.es/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> Este comando es un alias de `-p linux dircolors`. + +- Ver documentación para el comando original: + +`tldr -p linux dircolors` diff --git a/pages.es/osx/gdirname.md b/pages.es/osx/gdirname.md new file mode 100644 index 0000000000..15e8e4c3f6 --- /dev/null +++ b/pages.es/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> Este comando es un alias de `-p linux dirname`. + +- Ver documentación para el comando original: + +`tldr -p linux dirname` diff --git a/pages.es/osx/gdnsdomainname.md b/pages.es/osx/gdnsdomainname.md new file mode 100644 index 0000000000..9defcc8669 --- /dev/null +++ b/pages.es/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> Este comando es un alias de `-p linux dnsdomainname`. + +- Ver documentación para el comando original: + +`tldr -p linux dnsdomainname` diff --git a/pages.es/osx/gecho.md b/pages.es/osx/gecho.md new file mode 100644 index 0000000000..9de89b58c5 --- /dev/null +++ b/pages.es/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> Este comando es un alias de `-p linux echo`. + +- Ver documentación para el comando original: + +`tldr -p linux echo` diff --git a/pages.es/osx/ged.md b/pages.es/osx/ged.md new file mode 100644 index 0000000000..18fdd12e36 --- /dev/null +++ b/pages.es/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> Este comando es un alias de `-p linux ed`. + +- Ver documentación para el comando original: + +`tldr -p linux ed` diff --git a/pages.es/osx/gegrep.md b/pages.es/osx/gegrep.md new file mode 100644 index 0000000000..4f78b71cff --- /dev/null +++ b/pages.es/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> Este comando es un alias de `-p linux egrep`. + +- Ver documentación para el comando original: + +`tldr -p linux egrep` diff --git a/pages.es/osx/genv.md b/pages.es/osx/genv.md new file mode 100644 index 0000000000..238dc32aee --- /dev/null +++ b/pages.es/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> Este comando es un alias de `-p linux env`. + +- Ver documentación para el comando original: + +`tldr -p linux env` diff --git a/pages.es/osx/gexpand.md b/pages.es/osx/gexpand.md new file mode 100644 index 0000000000..605c1b4d90 --- /dev/null +++ b/pages.es/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> Este comando es un alias de `-p linux expand`. + +- Ver documentación para el comando original: + +`tldr -p linux expand` diff --git a/pages.es/osx/gexpr.md b/pages.es/osx/gexpr.md new file mode 100644 index 0000000000..cf9b4a0016 --- /dev/null +++ b/pages.es/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> Este comando es un alias de `-p linux expr`. + +- Ver documentación para el comando original: + +`tldr -p linux expr` diff --git a/pages.es/osx/gfactor.md b/pages.es/osx/gfactor.md new file mode 100644 index 0000000000..576d760086 --- /dev/null +++ b/pages.es/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> Este comando es un alias de `-p linux factor`. + +- Ver documentación para el comando original: + +`tldr -p linux factor` diff --git a/pages.es/osx/gfalse.md b/pages.es/osx/gfalse.md new file mode 100644 index 0000000000..ddb0d5d5ab --- /dev/null +++ b/pages.es/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> Este comando es un alias de `-p linux false`. + +- Ver documentación para el comando original: + +`tldr -p linux false` diff --git a/pages.es/osx/gfgrep.md b/pages.es/osx/gfgrep.md new file mode 100644 index 0000000000..79b17263b3 --- /dev/null +++ b/pages.es/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> Este comando es un alias de `-p linux fgrep`. + +- Ver documentación para el comando original: + +`tldr -p linux fgrep` diff --git a/pages.es/osx/gfind.md b/pages.es/osx/gfind.md new file mode 100644 index 0000000000..3b49040715 --- /dev/null +++ b/pages.es/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> Este comando es un alias de `-p linux find`. + +- Ver documentación para el comando original: + +`tldr -p linux find` diff --git a/pages.es/osx/gfmt.md b/pages.es/osx/gfmt.md new file mode 100644 index 0000000000..42a4b5bb4b --- /dev/null +++ b/pages.es/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> Este comando es un alias de `-p linux fmt`. + +- Ver documentación para el comando original: + +`tldr -p linux fmt` diff --git a/pages.es/osx/gfold.md b/pages.es/osx/gfold.md new file mode 100644 index 0000000000..971f51a530 --- /dev/null +++ b/pages.es/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> Este comando es un alias de `-p linux fold`. + +- Ver documentación para el comando original: + +`tldr -p linux fold` diff --git a/pages.es/osx/gftp.md b/pages.es/osx/gftp.md new file mode 100644 index 0000000000..a9dec215b4 --- /dev/null +++ b/pages.es/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> Este comando es un alias de `-p linux ftp`. + +- Ver documentación para el comando original: + +`tldr -p linux ftp` diff --git a/pages.es/osx/ggrep.md b/pages.es/osx/ggrep.md new file mode 100644 index 0000000000..9ddf9a2169 --- /dev/null +++ b/pages.es/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> Este comando es un alias de `-p linux grep`. + +- Ver documentación para el comando original: + +`tldr -p linux grep` diff --git a/pages.es/osx/ggroups.md b/pages.es/osx/ggroups.md new file mode 100644 index 0000000000..d37dbbe3e6 --- /dev/null +++ b/pages.es/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> Este comando es un alias de `-p linux groups`. + +- Ver documentación para el comando original: + +`tldr -p linux groups` diff --git a/pages.es/osx/ghead.md b/pages.es/osx/ghead.md new file mode 100644 index 0000000000..f830dea32c --- /dev/null +++ b/pages.es/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> Este comando es un alias de `-p linux head`. + +- Ver documentación para el comando original: + +`tldr -p linux head` diff --git a/pages.es/osx/ghostid.md b/pages.es/osx/ghostid.md new file mode 100644 index 0000000000..9328e9c24c --- /dev/null +++ b/pages.es/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> Este comando es un alias de `-p linux hostid`. + +- Ver documentación para el comando original: + +`tldr -p linux hostid` diff --git a/pages.es/osx/ghostname.md b/pages.es/osx/ghostname.md new file mode 100644 index 0000000000..17cf269186 --- /dev/null +++ b/pages.es/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> Este comando es un alias de `-p linux hostname`. + +- Ver documentación para el comando original: + +`tldr -p linux hostname` diff --git a/pages.es/osx/gid.md b/pages.es/osx/gid.md new file mode 100644 index 0000000000..c76af8e934 --- /dev/null +++ b/pages.es/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> Este comando es un alias de `-p linux id`. + +- Ver documentación para el comando original: + +`tldr -p linux id` diff --git a/pages.es/osx/gifconfig.md b/pages.es/osx/gifconfig.md new file mode 100644 index 0000000000..de0d514dd1 --- /dev/null +++ b/pages.es/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> Este comando es un alias de `-p linux ifconfig`. + +- Ver documentación para el comando original: + +`tldr -p linux ifconfig` diff --git a/pages.es/osx/gindent.md b/pages.es/osx/gindent.md new file mode 100644 index 0000000000..48c6018e61 --- /dev/null +++ b/pages.es/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> Este comando es un alias de `-p linux indent`. + +- Ver documentación para el comando original: + +`tldr -p linux indent` diff --git a/pages.es/osx/ginstall.md b/pages.es/osx/ginstall.md new file mode 100644 index 0000000000..68110ed15c --- /dev/null +++ b/pages.es/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> Este comando es un alias de `-p linux install`. + +- Ver documentación para el comando original: + +`tldr -p linux install` diff --git a/pages.es/osx/gjoin.md b/pages.es/osx/gjoin.md new file mode 100644 index 0000000000..f25aeb1de2 --- /dev/null +++ b/pages.es/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> Este comando es un alias de `-p linux join`. + +- Ver documentación para el comando original: + +`tldr -p linux join` diff --git a/pages.es/osx/gkill.md b/pages.es/osx/gkill.md new file mode 100644 index 0000000000..d5a101f9a1 --- /dev/null +++ b/pages.es/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> Este comando es un alias de `-p linux kill`. + +- Ver documentación para el comando original: + +`tldr -p linux kill` diff --git a/pages.es/osx/glibtool.md b/pages.es/osx/glibtool.md new file mode 100644 index 0000000000..b5061d6a54 --- /dev/null +++ b/pages.es/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> Este comando es un alias de `-p linux libtool`. + +- Ver documentación para el comando original: + +`tldr -p linux libtool` diff --git a/pages.es/osx/glibtoolize.md b/pages.es/osx/glibtoolize.md new file mode 100644 index 0000000000..69605077fe --- /dev/null +++ b/pages.es/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> Este comando es un alias de `-p linux libtoolize`. + +- Ver documentación para el comando original: + +`tldr -p linux libtoolize` diff --git a/pages.es/osx/glink.md b/pages.es/osx/glink.md new file mode 100644 index 0000000000..b852f6a244 --- /dev/null +++ b/pages.es/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> Este comando es un alias de `-p linux link`. + +- Ver documentación para el comando original: + +`tldr -p linux link` diff --git a/pages.es/osx/gln.md b/pages.es/osx/gln.md new file mode 100644 index 0000000000..2e8c607661 --- /dev/null +++ b/pages.es/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> Este comando es un alias de `-p linux ln`. + +- Ver documentación para el comando original: + +`tldr -p linux ln` diff --git a/pages.es/osx/glocate.md b/pages.es/osx/glocate.md new file mode 100644 index 0000000000..694da61b10 --- /dev/null +++ b/pages.es/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> Este comando es un alias de `-p linux locate`. + +- Ver documentación para el comando original: + +`tldr -p linux locate` diff --git a/pages.es/osx/glogger.md b/pages.es/osx/glogger.md new file mode 100644 index 0000000000..c1b9b58384 --- /dev/null +++ b/pages.es/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> Este comando es un alias de `-p linux logger`. + +- Ver documentación para el comando original: + +`tldr -p linux logger` diff --git a/pages.es/osx/glogname.md b/pages.es/osx/glogname.md new file mode 100644 index 0000000000..92df45ad8f --- /dev/null +++ b/pages.es/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> Este comando es un alias de `-p linux logname`. + +- Ver documentación para el comando original: + +`tldr -p linux logname` diff --git a/pages.es/osx/gls.md b/pages.es/osx/gls.md new file mode 100644 index 0000000000..b3f679ecc2 --- /dev/null +++ b/pages.es/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> Este comando es un alias de `-p linux ls`. + +- Ver documentación para el comando original: + +`tldr -p linux ls` diff --git a/pages.es/osx/gmake.md b/pages.es/osx/gmake.md new file mode 100644 index 0000000000..1604de18de --- /dev/null +++ b/pages.es/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> Este comando es un alias de `-p linux make`. + +- Ver documentación para el comando original: + +`tldr -p linux make` diff --git a/pages.es/osx/gmd5sum.md b/pages.es/osx/gmd5sum.md new file mode 100644 index 0000000000..0f341b44a7 --- /dev/null +++ b/pages.es/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> Este comando es un alias de `-p linux md5sum`. + +- Ver documentación para el comando original: + +`tldr -p linux md5sum` diff --git a/pages.es/osx/gmkdir.md b/pages.es/osx/gmkdir.md new file mode 100644 index 0000000000..65917f0a81 --- /dev/null +++ b/pages.es/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> Este comando es un alias de `-p linux mkdir`. + +- Ver documentación para el comando original: + +`tldr -p linux mkdir` diff --git a/pages.es/osx/gmkfifo.md b/pages.es/osx/gmkfifo.md new file mode 100644 index 0000000000..47a0b8b87b --- /dev/null +++ b/pages.es/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> Este comando es un alias de `-p linux mkfifo`. + +- Ver documentación para el comando original: + +`tldr -p linux mkfifo` diff --git a/pages.es/osx/gmknod.md b/pages.es/osx/gmknod.md new file mode 100644 index 0000000000..557de620be --- /dev/null +++ b/pages.es/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> Este comando es un alias de `-p linux mknod`. + +- Ver documentación para el comando original: + +`tldr -p linux mknod` diff --git a/pages.es/osx/gmktemp.md b/pages.es/osx/gmktemp.md new file mode 100644 index 0000000000..e37b820c1e --- /dev/null +++ b/pages.es/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> Este comando es un alias de `-p linux mktemp`. + +- Ver documentación para el comando original: + +`tldr -p linux mktemp` diff --git a/pages.es/osx/gmv.md b/pages.es/osx/gmv.md new file mode 100644 index 0000000000..2fb4368d41 --- /dev/null +++ b/pages.es/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> Este comando es un alias de `-p linux mv`. + +- Ver documentación para el comando original: + +`tldr -p linux mv` diff --git a/pages.es/osx/gnice.md b/pages.es/osx/gnice.md new file mode 100644 index 0000000000..d1a89eca97 --- /dev/null +++ b/pages.es/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> Este comando es un alias de `-p linux nice`. + +- Ver documentación para el comando original: + +`tldr -p linux nice` diff --git a/pages.es/osx/gnl.md b/pages.es/osx/gnl.md new file mode 100644 index 0000000000..3e5efec791 --- /dev/null +++ b/pages.es/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> Este comando es un alias de `-p linux nl`. + +- Ver documentación para el comando original: + +`tldr -p linux nl` diff --git a/pages.es/osx/gnohup.md b/pages.es/osx/gnohup.md new file mode 100644 index 0000000000..fd65c2c68c --- /dev/null +++ b/pages.es/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> Este comando es un alias de `-p linux nohup`. + +- Ver documentación para el comando original: + +`tldr -p linux nohup` diff --git a/pages.es/osx/gnproc.md b/pages.es/osx/gnproc.md new file mode 100644 index 0000000000..48a5cf21e8 --- /dev/null +++ b/pages.es/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> Este comando es un alias de `-p linux nproc`. + +- Ver documentación para el comando original: + +`tldr -p linux nproc` diff --git a/pages.es/osx/gnumfmt.md b/pages.es/osx/gnumfmt.md new file mode 100644 index 0000000000..b79ea4841b --- /dev/null +++ b/pages.es/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> Este comando es un alias de `-p linux numfmt`. + +- Ver documentación para el comando original: + +`tldr -p linux numfmt` diff --git a/pages.es/osx/god.md b/pages.es/osx/god.md new file mode 100644 index 0000000000..ff78be55c0 --- /dev/null +++ b/pages.es/osx/god.md @@ -0,0 +1,7 @@ +# god + +> Este comando es un alias de `-p linux od`. + +- Ver documentación para el comando original: + +`tldr -p linux od` diff --git a/pages.es/osx/gpaste.md b/pages.es/osx/gpaste.md new file mode 100644 index 0000000000..7eeaff7b18 --- /dev/null +++ b/pages.es/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> Este comando es un alias de `-p linux paste`. + +- Ver documentación para el comando original: + +`tldr -p linux paste` diff --git a/pages.es/osx/gpathchk.md b/pages.es/osx/gpathchk.md new file mode 100644 index 0000000000..c506446aaa --- /dev/null +++ b/pages.es/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> Este comando es un alias de `-p linux pathchk`. + +- Ver documentación para el comando original: + +`tldr -p linux pathchk` diff --git a/pages.es/osx/gping.md b/pages.es/osx/gping.md new file mode 100644 index 0000000000..06e53e4e9e --- /dev/null +++ b/pages.es/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> Este comando es un alias de `-p linux ping`. + +- Ver documentación para el comando original: + +`tldr -p linux ping` diff --git a/pages.es/osx/gping6.md b/pages.es/osx/gping6.md new file mode 100644 index 0000000000..05ba1b9eb6 --- /dev/null +++ b/pages.es/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> Este comando es un alias de `-p linux ping6`. + +- Ver documentación para el comando original: + +`tldr -p linux ping6` diff --git a/pages.es/osx/gpinky.md b/pages.es/osx/gpinky.md new file mode 100644 index 0000000000..d7db7e5c9f --- /dev/null +++ b/pages.es/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> Este comando es un alias de `-p linux pinky`. + +- Ver documentación para el comando original: + +`tldr -p linux pinky` diff --git a/pages.es/osx/gpr.md b/pages.es/osx/gpr.md new file mode 100644 index 0000000000..468f2b393f --- /dev/null +++ b/pages.es/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> Este comando es un alias de `-p linux pr`. + +- Ver documentación para el comando original: + +`tldr -p linux pr` diff --git a/pages.es/osx/gprintenv.md b/pages.es/osx/gprintenv.md new file mode 100644 index 0000000000..fe6fc7d662 --- /dev/null +++ b/pages.es/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> Este comando es un alias de `-p linux printenv`. + +- Ver documentación para el comando original: + +`tldr -p linux printenv` diff --git a/pages.es/osx/gprintf.md b/pages.es/osx/gprintf.md new file mode 100644 index 0000000000..0acaa5c913 --- /dev/null +++ b/pages.es/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> Este comando es un alias de `-p linux printf`. + +- Ver documentación para el comando original: + +`tldr -p linux printf` diff --git a/pages.es/osx/gptx.md b/pages.es/osx/gptx.md new file mode 100644 index 0000000000..8c4fb3b095 --- /dev/null +++ b/pages.es/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> Este comando es un alias de `-p linux ptx`. + +- Ver documentación para el comando original: + +`tldr -p linux ptx` diff --git a/pages.es/osx/gpwd.md b/pages.es/osx/gpwd.md new file mode 100644 index 0000000000..dff6ffe555 --- /dev/null +++ b/pages.es/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> Este comando es un alias de `-p linux pwd`. + +- Ver documentación para el comando original: + +`tldr -p linux pwd` diff --git a/pages.es/osx/grcp.md b/pages.es/osx/grcp.md new file mode 100644 index 0000000000..b512935cc4 --- /dev/null +++ b/pages.es/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> Este comando es un alias de `-p linux rcp`. + +- Ver documentación para el comando original: + +`tldr -p linux rcp` diff --git a/pages.es/osx/greadlink.md b/pages.es/osx/greadlink.md new file mode 100644 index 0000000000..b358cdbfe7 --- /dev/null +++ b/pages.es/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> Este comando es un alias de `-p linux readlink`. + +- Ver documentación para el comando original: + +`tldr -p linux readlink` diff --git a/pages.es/osx/grealpath.md b/pages.es/osx/grealpath.md new file mode 100644 index 0000000000..112d640b01 --- /dev/null +++ b/pages.es/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> Este comando es un alias de `-p linux realpath`. + +- Ver documentación para el comando original: + +`tldr -p linux realpath` diff --git a/pages.es/osx/grexec.md b/pages.es/osx/grexec.md new file mode 100644 index 0000000000..c1b4efc422 --- /dev/null +++ b/pages.es/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> Este comando es un alias de `-p linux rexec`. + +- Ver documentación para el comando original: + +`tldr -p linux rexec` diff --git a/pages.es/osx/grlogin.md b/pages.es/osx/grlogin.md new file mode 100644 index 0000000000..ef01e5c038 --- /dev/null +++ b/pages.es/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> Este comando es un alias de `-p linux rlogin`. + +- Ver documentación para el comando original: + +`tldr -p linux rlogin` diff --git a/pages.es/osx/grm.md b/pages.es/osx/grm.md new file mode 100644 index 0000000000..716b3fca4c --- /dev/null +++ b/pages.es/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> Este comando es un alias de `-p linux rm`. + +- Ver documentación para el comando original: + +`tldr -p linux rm` diff --git a/pages.es/osx/grmdir.md b/pages.es/osx/grmdir.md new file mode 100644 index 0000000000..a7609f025f --- /dev/null +++ b/pages.es/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> Este comando es un alias de `-p linux rmdir`. + +- Ver documentación para el comando original: + +`tldr -p linux rmdir` diff --git a/pages.es/osx/grsh.md b/pages.es/osx/grsh.md new file mode 100644 index 0000000000..fb5a93f3f7 --- /dev/null +++ b/pages.es/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> Este comando es un alias de `-p linux rsh`. + +- Ver documentación para el comando original: + +`tldr -p linux rsh` diff --git a/pages.es/osx/gruncon.md b/pages.es/osx/gruncon.md new file mode 100644 index 0000000000..ca84623ddf --- /dev/null +++ b/pages.es/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> Este comando es un alias de `-p linux runcon`. + +- Ver documentación para el comando original: + +`tldr -p linux runcon` diff --git a/pages.es/osx/gsed.md b/pages.es/osx/gsed.md new file mode 100644 index 0000000000..5508071440 --- /dev/null +++ b/pages.es/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> Este comando es un alias de `-p linux sed`. + +- Ver documentación para el comando original: + +`tldr -p linux sed` diff --git a/pages.es/osx/gseq.md b/pages.es/osx/gseq.md new file mode 100644 index 0000000000..6688b32d29 --- /dev/null +++ b/pages.es/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> Este comando es un alias de `-p linux seq`. + +- Ver documentación para el comando original: + +`tldr -p linux seq` diff --git a/pages.es/osx/gsha1sum.md b/pages.es/osx/gsha1sum.md new file mode 100644 index 0000000000..e0f95cd7e1 --- /dev/null +++ b/pages.es/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> Este comando es un alias de `-p linux sha1sum`. + +- Ver documentación para el comando original: + +`tldr -p linux sha1sum` diff --git a/pages.es/osx/gsha224sum.md b/pages.es/osx/gsha224sum.md new file mode 100644 index 0000000000..6e690b03ab --- /dev/null +++ b/pages.es/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> Este comando es un alias de `-p linux sha224sum`. + +- Ver documentación para el comando original: + +`tldr -p linux sha224sum` diff --git a/pages.es/osx/gsha256sum.md b/pages.es/osx/gsha256sum.md new file mode 100644 index 0000000000..572ab421de --- /dev/null +++ b/pages.es/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> Este comando es un alias de `-p linux sha256sum`. + +- Ver documentación para el comando original: + +`tldr -p linux sha256sum` diff --git a/pages.es/osx/gsha384sum.md b/pages.es/osx/gsha384sum.md new file mode 100644 index 0000000000..c538aee8be --- /dev/null +++ b/pages.es/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> Este comando es un alias de `-p linux sha384sum`. + +- Ver documentación para el comando original: + +`tldr -p linux sha384sum` diff --git a/pages.es/osx/gsha512sum.md b/pages.es/osx/gsha512sum.md new file mode 100644 index 0000000000..397b264484 --- /dev/null +++ b/pages.es/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> Este comando es un alias de `-p linux sha512sum`. + +- Ver documentación para el comando original: + +`tldr -p linux sha512sum` diff --git a/pages.es/osx/gshred.md b/pages.es/osx/gshred.md new file mode 100644 index 0000000000..abb8334ebf --- /dev/null +++ b/pages.es/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> Este comando es un alias de `-p linux shred`. + +- Ver documentación para el comando original: + +`tldr -p linux shred` diff --git a/pages.es/osx/gshuf.md b/pages.es/osx/gshuf.md new file mode 100644 index 0000000000..ddeeb47d2a --- /dev/null +++ b/pages.es/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> Este comando es un alias de `-p linux shuf`. + +- Ver documentación para el comando original: + +`tldr -p linux shuf` diff --git a/pages.es/osx/gsleep.md b/pages.es/osx/gsleep.md new file mode 100644 index 0000000000..e81b1277d2 --- /dev/null +++ b/pages.es/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> Este comando es un alias de `-p linux sleep`. + +- Ver documentación para el comando original: + +`tldr -p linux sleep` diff --git a/pages.es/osx/gsort.md b/pages.es/osx/gsort.md new file mode 100644 index 0000000000..ec6f12461c --- /dev/null +++ b/pages.es/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> Este comando es un alias de `-p linux sort`. + +- Ver documentación para el comando original: + +`tldr -p linux sort` diff --git a/pages.es/osx/gsplit.md b/pages.es/osx/gsplit.md new file mode 100644 index 0000000000..765fd4f814 --- /dev/null +++ b/pages.es/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> Este comando es un alias de `-p linux split`. + +- Ver documentación para el comando original: + +`tldr -p linux split` diff --git a/pages.es/osx/gstat.md b/pages.es/osx/gstat.md new file mode 100644 index 0000000000..731b526ec7 --- /dev/null +++ b/pages.es/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> Este comando es un alias de `-p linux stat`. + +- Ver documentación para el comando original: + +`tldr -p linux stat` diff --git a/pages.es/osx/gstdbuf.md b/pages.es/osx/gstdbuf.md new file mode 100644 index 0000000000..a31d4c785c --- /dev/null +++ b/pages.es/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> Este comando es un alias de `-p linux stdbuf`. + +- Ver documentación para el comando original: + +`tldr -p linux stdbuf` diff --git a/pages.es/osx/gstty.md b/pages.es/osx/gstty.md new file mode 100644 index 0000000000..994f9daf8d --- /dev/null +++ b/pages.es/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> Este comando es un alias de `-p linux stty`. + +- Ver documentación para el comando original: + +`tldr -p linux stty` diff --git a/pages.es/osx/gsum.md b/pages.es/osx/gsum.md new file mode 100644 index 0000000000..c1929e6654 --- /dev/null +++ b/pages.es/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> Este comando es un alias de `-p linux sum`. + +- Ver documentación para el comando original: + +`tldr -p linux sum` diff --git a/pages.es/osx/gsync.md b/pages.es/osx/gsync.md new file mode 100644 index 0000000000..ebc560c452 --- /dev/null +++ b/pages.es/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> Este comando es un alias de `-p linux sync`. + +- Ver documentación para el comando original: + +`tldr -p linux sync` diff --git a/pages.es/osx/gtac.md b/pages.es/osx/gtac.md new file mode 100644 index 0000000000..0f44e25402 --- /dev/null +++ b/pages.es/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> Este comando es un alias de `-p linux tac`. + +- Ver documentación para el comando original: + +`tldr -p linux tac` diff --git a/pages.es/osx/gtail.md b/pages.es/osx/gtail.md new file mode 100644 index 0000000000..7020c8957d --- /dev/null +++ b/pages.es/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> Este comando es un alias de `-p linux tail`. + +- Ver documentación para el comando original: + +`tldr -p linux tail` diff --git a/pages.es/osx/gtalk.md b/pages.es/osx/gtalk.md new file mode 100644 index 0000000000..0a0ff1cc1a --- /dev/null +++ b/pages.es/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> Este comando es un alias de `-p linux talk`. + +- Ver documentación para el comando original: + +`tldr -p linux talk` diff --git a/pages.es/osx/gtar.md b/pages.es/osx/gtar.md new file mode 100644 index 0000000000..0634b5815f --- /dev/null +++ b/pages.es/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> Este comando es un alias de `-p linux tar`. + +- Ver documentación para el comando original: + +`tldr -p linux tar` diff --git a/pages.es/osx/gtee.md b/pages.es/osx/gtee.md new file mode 100644 index 0000000000..636e36c6c1 --- /dev/null +++ b/pages.es/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> Este comando es un alias de `-p linux tee`. + +- Ver documentación para el comando original: + +`tldr -p linux tee` diff --git a/pages.es/osx/gtelnet.md b/pages.es/osx/gtelnet.md new file mode 100644 index 0000000000..a480e275e2 --- /dev/null +++ b/pages.es/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> Este comando es un alias de `-p linux telnet`. + +- Ver documentación para el comando original: + +`tldr -p linux telnet` diff --git a/pages.es/osx/gtest.md b/pages.es/osx/gtest.md new file mode 100644 index 0000000000..e3a4a19e7d --- /dev/null +++ b/pages.es/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> Este comando es un alias de `-p linux test`. + +- Ver documentación para el comando original: + +`tldr -p linux test` diff --git a/pages.es/osx/gtftp.md b/pages.es/osx/gtftp.md new file mode 100644 index 0000000000..a66d76db25 --- /dev/null +++ b/pages.es/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> Este comando es un alias de `-p linux tftp`. + +- Ver documentación para el comando original: + +`tldr -p linux tftp` diff --git a/pages.es/osx/gtime.md b/pages.es/osx/gtime.md new file mode 100644 index 0000000000..ae8e39db1a --- /dev/null +++ b/pages.es/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> Este comando es un alias de `-p linux time`. + +- Ver documentación para el comando original: + +`tldr -p linux time` diff --git a/pages.es/osx/gtimeout.md b/pages.es/osx/gtimeout.md new file mode 100644 index 0000000000..9c9e9acd8c --- /dev/null +++ b/pages.es/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> Este comando es un alias de `-p linux timeout`. + +- Ver documentación para el comando original: + +`tldr -p linux timeout` diff --git a/pages.es/osx/gtouch.md b/pages.es/osx/gtouch.md new file mode 100644 index 0000000000..c4420a0920 --- /dev/null +++ b/pages.es/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> Este comando es un alias de `-p linux touch`. + +- Ver documentación para el comando original: + +`tldr -p linux touch` diff --git a/pages.es/osx/gtr.md b/pages.es/osx/gtr.md new file mode 100644 index 0000000000..3f0acb9b01 --- /dev/null +++ b/pages.es/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> Este comando es un alias de `-p linux tr`. + +- Ver documentación para el comando original: + +`tldr -p linux tr` diff --git a/pages.es/osx/gtraceroute.md b/pages.es/osx/gtraceroute.md new file mode 100644 index 0000000000..f9e612825b --- /dev/null +++ b/pages.es/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> Este comando es un alias de `-p linux traceroute`. + +- Ver documentación para el comando original: + +`tldr -p linux traceroute` diff --git a/pages.es/osx/gtrue.md b/pages.es/osx/gtrue.md new file mode 100644 index 0000000000..59338d4aea --- /dev/null +++ b/pages.es/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> Este comando es un alias de `-p linux true`. + +- Ver documentación para el comando original: + +`tldr -p linux true` diff --git a/pages.es/osx/gtruncate.md b/pages.es/osx/gtruncate.md new file mode 100644 index 0000000000..1e81714344 --- /dev/null +++ b/pages.es/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> Este comando es un alias de `-p linux truncate`. + +- Ver documentación para el comando original: + +`tldr -p linux truncate` diff --git a/pages.es/osx/gtsort.md b/pages.es/osx/gtsort.md new file mode 100644 index 0000000000..9341f44d10 --- /dev/null +++ b/pages.es/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> Este comando es un alias de `-p linux tsort`. + +- Ver documentación para el comando original: + +`tldr -p linux tsort` diff --git a/pages.es/osx/gtty.md b/pages.es/osx/gtty.md new file mode 100644 index 0000000000..9e6a797cc4 --- /dev/null +++ b/pages.es/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> Este comando es un alias de `-p linux tty`. + +- Ver documentación para el comando original: + +`tldr -p linux tty` diff --git a/pages.es/osx/guname.md b/pages.es/osx/guname.md new file mode 100644 index 0000000000..7165a0f4c1 --- /dev/null +++ b/pages.es/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> Este comando es un alias de `-p linux uname`. + +- Ver documentación para el comando original: + +`tldr -p linux uname` diff --git a/pages.es/osx/gunexpand.md b/pages.es/osx/gunexpand.md new file mode 100644 index 0000000000..b7029919d3 --- /dev/null +++ b/pages.es/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> Este comando es un alias de `-p linux unexpand`. + +- Ver documentación para el comando original: + +`tldr -p linux unexpand` diff --git a/pages.es/osx/guniq.md b/pages.es/osx/guniq.md new file mode 100644 index 0000000000..e490cab420 --- /dev/null +++ b/pages.es/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> Este comando es un alias de `-p linux uniq`. + +- Ver documentación para el comando original: + +`tldr -p linux uniq` diff --git a/pages.es/osx/gunits.md b/pages.es/osx/gunits.md new file mode 100644 index 0000000000..f4974400ad --- /dev/null +++ b/pages.es/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> Este comando es un alias de `-p linux units`. + +- Ver documentación para el comando original: + +`tldr -p linux units` diff --git a/pages.es/osx/gunlink.md b/pages.es/osx/gunlink.md new file mode 100644 index 0000000000..ef7e067313 --- /dev/null +++ b/pages.es/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> Este comando es un alias de `-p linux unlink`. + +- Ver documentación para el comando original: + +`tldr -p linux unlink` diff --git a/pages.es/osx/gupdatedb.md b/pages.es/osx/gupdatedb.md new file mode 100644 index 0000000000..284fbc170d --- /dev/null +++ b/pages.es/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> Este comando es un alias de `-p linux updatedb`. + +- Ver documentación para el comando original: + +`tldr -p linux updatedb` diff --git a/pages.es/osx/guptime.md b/pages.es/osx/guptime.md new file mode 100644 index 0000000000..b50d43bcb8 --- /dev/null +++ b/pages.es/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> Este comando es un alias de `-p linux uptime`. + +- Ver documentación para el comando original: + +`tldr -p linux uptime` diff --git a/pages.es/osx/gusers.md b/pages.es/osx/gusers.md new file mode 100644 index 0000000000..14bd1f53a2 --- /dev/null +++ b/pages.es/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> Este comando es un alias de `-p linux users`. + +- Ver documentación para el comando original: + +`tldr -p linux users` diff --git a/pages.es/osx/gvdir.md b/pages.es/osx/gvdir.md new file mode 100644 index 0000000000..49c2864cf3 --- /dev/null +++ b/pages.es/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> Este comando es un alias de `-p linux vdir`. + +- Ver documentación para el comando original: + +`tldr -p linux vdir` diff --git a/pages.es/osx/gwc.md b/pages.es/osx/gwc.md new file mode 100644 index 0000000000..a16efd3d3c --- /dev/null +++ b/pages.es/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> Este comando es un alias de `-p linux wc`. + +- Ver documentación para el comando original: + +`tldr -p linux wc` diff --git a/pages.es/osx/gwhich.md b/pages.es/osx/gwhich.md new file mode 100644 index 0000000000..34814e38a3 --- /dev/null +++ b/pages.es/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> Este comando es un alias de `-p linux which`. + +- Ver documentación para el comando original: + +`tldr -p linux which` diff --git a/pages.es/osx/gwho.md b/pages.es/osx/gwho.md new file mode 100644 index 0000000000..ca7dfb76c3 --- /dev/null +++ b/pages.es/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> Este comando es un alias de `-p linux who`. + +- Ver documentación para el comando original: + +`tldr -p linux who` diff --git a/pages.es/osx/gwhoami.md b/pages.es/osx/gwhoami.md new file mode 100644 index 0000000000..d9d9b99842 --- /dev/null +++ b/pages.es/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> Este comando es un alias de `-p linux whoami`. + +- Ver documentación para el comando original: + +`tldr -p linux whoami` diff --git a/pages.es/osx/gwhois.md b/pages.es/osx/gwhois.md new file mode 100644 index 0000000000..06679e64a0 --- /dev/null +++ b/pages.es/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> Este comando es un alias de `-p linux whois`. + +- Ver documentación para el comando original: + +`tldr -p linux whois` diff --git a/pages.es/osx/gxargs.md b/pages.es/osx/gxargs.md new file mode 100644 index 0000000000..bc3db2a12b --- /dev/null +++ b/pages.es/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> Este comando es un alias de `-p linux xargs`. + +- Ver documentación para el comando original: + +`tldr -p linux xargs` diff --git a/pages.es/osx/gyes.md b/pages.es/osx/gyes.md new file mode 100644 index 0000000000..20c9485d96 --- /dev/null +++ b/pages.es/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> Este comando es un alias de `-p linux yes`. + +- Ver documentación para el comando original: + +`tldr -p linux yes` diff --git a/pages.es/osx/hidd.md b/pages.es/osx/hidd.md new file mode 100644 index 0000000000..eab9e957f8 --- /dev/null +++ b/pages.es/osx/hidd.md @@ -0,0 +1,9 @@ +# hidd + +> Daemon userland de la librería HID. +> No debe invocarse manualmente. +> Más información: . + +- Inicia el daemon: + +`hidd` diff --git a/pages.es/osx/internetsharing.md b/pages.es/osx/internetsharing.md new file mode 100644 index 0000000000..cf78fafcbc --- /dev/null +++ b/pages.es/osx/internetsharing.md @@ -0,0 +1,9 @@ +# Compartir Internet + +> Configura Internet Sharing. +> No debe invocarse manualmente. +> Más información: . + +- Inicia el daemon: + +`InternetSharing` diff --git a/pages.es/osx/java_home.md b/pages.es/osx/java_home.md new file mode 100644 index 0000000000..b62853b97a --- /dev/null +++ b/pages.es/osx/java_home.md @@ -0,0 +1,24 @@ +# java_home + +> Devuelve un valor para $JAVA_HOME o ejecuta un comando usando esta variable. +> Más información: . + +- Lista JVMs basadas en una versión específica: + +`java_home --version {{1.5+}}` + +- Lista JVMs basadas en una [arch]itectura específica: + +`java_home --arch {{i386}}` + +- Lista JVMs basadas en tareas específicas (por defecto `CommandLine`): + +`java_home --datamodel {{Applets|WebStart|BundledApp|JNI|CommandLine}}` + +- Lista JVMs en formato XML: + +`java_home --xml` + +- Muestra la ayuda: + +`java_home --help` diff --git a/pages.es/osx/launchd.md b/pages.es/osx/launchd.md new file mode 100644 index 0000000000..a94d4db773 --- /dev/null +++ b/pages.es/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> Este comando es un alias de `launchctl`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr launchctl` diff --git a/pages.es/osx/lex.md b/pages.es/osx/lex.md new file mode 100644 index 0000000000..35d7cc4355 --- /dev/null +++ b/pages.es/osx/lex.md @@ -0,0 +1,17 @@ +# lex + +> Generador de analizadores léxicos. +> Dada la especificación de un analizador léxico, genera código C implementándolo. +> Más información: . + +- Genera un analizador a partir de un fichero Lex: + +`lex {{analyzer.l}}` + +- Especifica el fichero de salida: + +`lex {{analyzer.l}} --outfile {{analyzer.c}}` + +- Compila un archivo C generado por Lex: + +`cc {{ruta/hacia/lex.yy.c}} --output {{ejecutable}}` diff --git a/pages.es/osx/lipo.md b/pages.es/osx/lipo.md new file mode 100644 index 0000000000..4dca56b21e --- /dev/null +++ b/pages.es/osx/lipo.md @@ -0,0 +1,20 @@ +# lipo + +> Herramienta para el manejo de binarios universales Mach-O. +> Más información: . + +- Crea un archivo universal a partir de dos archivos de una sola arquitectura: + +`lipo {{ruta/al/archivo/binario.x86_64}} {{ruta/al/archivo_binario.arm64e}} -create -output {{ruta/al/archivo_binario}}` + +- Lista todas las arquitecturas contenidas en un archivo universal: + +`lipo {{ruta/al/archivo_binario}} -archs` + +- Muestra información detallada sobre un archivo universal: + +`lipo {{ruta/al/archivo_binario}} -detailed_info` + +- Extrae un archivo de arquitectura única de un archivo universal: + +`lipo {{ruta/al/archivo_binario}} -thin {{arm64e}} -output {{ruta/al/archivo_binario.arm64e}}` diff --git a/pages.es/osx/lldb.md b/pages.es/osx/lldb.md new file mode 100644 index 0000000000..3e3dc7d1ff --- /dev/null +++ b/pages.es/osx/lldb.md @@ -0,0 +1,16 @@ +# lldb + +> El depurador de bajo nivel LLVM. +> Más información: . + +- Depura un ejecutable: + +`lldb "{{ejecutable}}"` + +- Adjunta `lldb` a un proceso en ejecución con un PID dado: + +`lldb -p {{pid}}` + +- Espera a que se inicie un nuevo proceso con un nombre determinado y adjuntarlo al mismo: + +`lldb -w -n "{{nombre_proceso}}"` diff --git a/pages.es/osx/llvm-lipo.md b/pages.es/osx/llvm-lipo.md new file mode 100644 index 0000000000..c20da65522 --- /dev/null +++ b/pages.es/osx/llvm-lipo.md @@ -0,0 +1,7 @@ +# llvm-lipo + +> Este comando es un alias de `lipo`. + +- Ver documentación para el comando original: + +`tldr lipo` diff --git a/pages.es/osx/m.md b/pages.es/osx/m.md new file mode 100644 index 0000000000..9d73c11aa6 --- /dev/null +++ b/pages.es/osx/m.md @@ -0,0 +1,24 @@ +# m + +> Navaja suiza para macOS. +> Más información: . + +- Obtener el estado de la batería: + +`m battery status` + +- Desactivar Bluetooth: + +`m bluetooth off` + +- Lista los sistemas de archivos disponibles para formatear: + +`m disk filesystems` + +- Activa la función de ocultación automática del Dock: + +`m dock autohide YES` + +- Desactiva el cortafuegos: + +`m firewall disable` diff --git a/pages.es/osx/md5.md b/pages.es/osx/md5.md new file mode 100644 index 0000000000..afd65d1358 --- /dev/null +++ b/pages.es/osx/md5.md @@ -0,0 +1,20 @@ +# md5 + +> Calcula sumas de comprobación criptográficas MD5. +> Más información: . + +- Calcula la suma de comprobación MD5 de un archivo: + +`md5 {{ruta/al/archivo}}` + +- Calcula sumas de comprobación MD5 para varios archivos: + +`md5 {{ruta/al/archivo1 ruta/al/archivo2 ...}}` + +- Obtiene sólo la suma de comprobación md5 (sin nombre de archivo): + +`md5 -q {{ruta/al/archivo}}` + +- Imprime una suma de comprobación de la cadena dada: + +`md5 -s "{{cadena}}"` diff --git a/pages.es/osx/mdfind.md b/pages.es/osx/mdfind.md new file mode 100644 index 0000000000..a03740f29d --- /dev/null +++ b/pages.es/osx/mdfind.md @@ -0,0 +1,16 @@ +# mdfind + +> Lista los archivos que coinciden con una consulta dada. +> Más información: . + +- Busca un archivo por su nombre: + +`mdfind -name {{archivo}}` + +- Busca un archivo por su contenido: + +`mdfind "{{consulta}}"` + +- Busca un archivo que contenga una cadena, en un directorio determinado: + +`mdfind -onlyin {{directorio}} "{{consulta}}"` diff --git a/pages.es/osx/nettop.md b/pages.es/osx/nettop.md new file mode 100644 index 0000000000..2df713cc2b --- /dev/null +++ b/pages.es/osx/nettop.md @@ -0,0 +1,36 @@ +# nettop + +> Muestra información actualizada sobre la red. +> Más información: . + +- Monitoriza los sockets TCP y UDP de todas las interfaces: + +`nettop` + +- Monitoriza sockets TCP desde interfaces Loopback: + +`nettop -m {{tcp}} -t {{loopback}}` + +- Supervisa un proceso específico: + +`nettop -p "{{process_id|process_name}}"` + +- Muestra un resumen por proceso: + +`nettop -P` + +- Imprime 10 muestras de información de red: + +`nettop -l {{10}}` + +- Monitoriza los cambios cada 5 segundos: + +`nettop -d -s {{5}}` + +- Mientras se ejecuta nettop, lista los comandos interactivos: + +`h` + +- Muestra ayuda: + +`nettop -h` diff --git a/pages.es/osx/nvram.md b/pages.es/osx/nvram.md new file mode 100644 index 0000000000..a8bad612fd --- /dev/null +++ b/pages.es/osx/nvram.md @@ -0,0 +1,28 @@ +# nvram + +> Manipula variables del firmware. +> Más información: . + +- Im[p]rime todas las variables almacenadas en la NVRAM: + +`nvram -p` + +- Im[p]rime todas las variables almacenadas en la NVRAM usando el formato [x]ML: + +`nvram -xp` + +- Modifica el valor de una variable del firmware: + +`sudo nvram {{nombre}}="{{valor}}"` + +- Elimina una variable de firmware: + +`sudo nvram -d {{nombre}}` + +- [c]larifica todas las variables de firmware: + +`sudo nvram -c` + +- Establece una variable de firmware de un [x]ML [f]ile específico: + +`sudo nvram -xf {{ruta/al/archivo.xml}}` diff --git a/pages.es/osx/open.md b/pages.es/osx/open.md new file mode 100644 index 0000000000..b23e2e42a8 --- /dev/null +++ b/pages.es/osx/open.md @@ -0,0 +1,32 @@ +# open + +> Abre archivos, directorios y aplicaciones. +> Más información: . + +- Abre un archivo con la aplicación asociada: + +`open {{archivo.ext}}` + +- Ejecuta una [a]plicación gráfica de macOS: + +`open -a "{{aplicacion}}"` + +- Ejecuta una aplicación gráfica de macOS basada en el identificador [b]undle (consulta `osascript` para obtenerlo fácilmente): + +`open -b {{com.domain.application}}` + +- Abre el directorio actual en Finder: + +`open .` + +- Abre un archivo en Finder: + +`open -R {{ruta/al/archivo}}` + +- Abre todos los archivos de una extensión determinada en el directorio actual con la aplicación asociada: + +`open {{*.ext}}` + +- Abre una [n]ueva instancia de una aplicación especificada mediante un identificador [b]undle: + +`open -n -b {{com.domain.application}}` diff --git a/pages.es/osx/opensnoop.md b/pages.es/osx/opensnoop.md new file mode 100644 index 0000000000..02db27403a --- /dev/null +++ b/pages.es/osx/opensnoop.md @@ -0,0 +1,20 @@ +# opensnoop + +> Herramienta que rastrea las aperturas de archivos en tu sistema. +> Más información: . + +- Imprime todos los archivos abiertos a medida que ocurren: + +`sudo opensnoop` + +- Rastrea todos los archivos abiertos por un proceso por su nombre: + +`sudo opensnoop -n "{{nombre_proceso}}"` + +- Rastrea todos los archivos abiertos por un proceso por PID: + +`sudo opensnoop -p {{PID}}` + +- Seguimiento de los procesos que abren un archivo especificado: + +`sudo opensnoop -f {{ruta/al/archivo}}` diff --git a/pages.es/osx/osascript.md b/pages.es/osx/osascript.md new file mode 100644 index 0000000000..6248068ef9 --- /dev/null +++ b/pages.es/osx/osascript.md @@ -0,0 +1,28 @@ +# osascript + +> Ejecuta AppleScript o JavaScript for Automation (JXA) desde la línea de comandos. +> Más información: . + +- Ejecuta un comando AppleScript: + +`osascript -e "{{say 'Hello world'}}"` + +- Ejecuta varios comandos AppleScript: + +`osascript -e "{{say 'Hello'}}" -e "{{say 'world'}}"` + +- Ejecuta un archivo AppleScript compilado (`*.scpt`), empaquetado (`*.scptd`) o un archivo Applescript en texto plano (`*.applescript`): + +`osascript {{ruta/al/apple.scpt}}` + +- Obtiene el identificador del paquete de una aplicación (útil para `open -b`): + +`osascript -e 'id of app "{{Application}}"'` + +- Ejecuta un comando JavaScript: + +`osascript -l JavaScript -e "{{console.log('Hola mundo');}}"` + +- Ejecuta un archivo JavaScript: + +`osascript -l JavaScript {{ruta/al/script.js}}` diff --git a/pages.es/osx/pbcopy.md b/pages.es/osx/pbcopy.md new file mode 100644 index 0000000000..fb922163af --- /dev/null +++ b/pages.es/osx/pbcopy.md @@ -0,0 +1,13 @@ +# pbcopy + +> Copia datos de `stdin` al portapapeles. +> Comparable a pulsar Cmd + C en el teclado. +> Más información: . + +- Coloca el contenido de un archivo específico en el portapapeles: + +`pbcopy < {{ruta/al/archivo}}` + +- Coloca los resultados de un comando específico en el portapapeles: + +`find . -type t -name "*.png" | pbcopy` diff --git a/pages.es/osx/pbpaste.md b/pages.es/osx/pbpaste.md new file mode 100644 index 0000000000..94814a4753 --- /dev/null +++ b/pages.es/osx/pbpaste.md @@ -0,0 +1,13 @@ +# pbpaste + +> Envía el contenido del portapapeles a la salida estándar. +> Comparable a pulsar Cmd + V en el teclado. +> Más información: . + +- Escribe el contenido del portapapeles en un archivo: + +`pbpaste > {{ruta/al/archivo}}` + +- Utiliza el contenido del portapapeles como entrada de un comando: + +`pbpaste | grep foo` diff --git a/pages.es/osx/photoanalysisd.md b/pages.es/osx/photoanalysisd.md new file mode 100644 index 0000000000..0ccac34187 --- /dev/null +++ b/pages.es/osx/photoanalysisd.md @@ -0,0 +1,9 @@ +# photoanalysisd + +> Analiza las bibliotecas de fotos para Memorias, Personas, y búsquedas basadas en escenas u objetos. +> No debe invocarse manualmente. +> Más información: . + +- Inicia el daemon: + +`photoanalysisd` diff --git a/pages.es/osx/ping.md b/pages.es/osx/ping.md new file mode 100644 index 0000000000..481b4d2cc7 --- /dev/null +++ b/pages.es/osx/ping.md @@ -0,0 +1,28 @@ +# ping + +> Envía paquetes ICMP ECHO_REQUEST a hosts de la red. +> Más información: . + +- Ping al host especificado: + +`ping "{{hostname}}"` + +- Ping a un host un número determinado de veces: + +`ping -c {{cuenta}} "{{host}}"` + +- Ping al `host`, especificando el intervalo en `segundos` entre peticiones (por defecto es 1 segundo): + +`ping -i {{segundos}} "{{host}}"` + +- Ping a `host` sin intentar buscar nombres simbólicos para las direcciones: + +`ping -n "{{host}}"` + +- Ping al `host` y hace sonar la campana cuando se recibe un paquete (si tu terminal lo soporta): + +`ping -a "{{host}}"` + +- Ping al `host` y muestra la hora en la que se ha recibido un paquete (esta opción es un añadido de Apple): + +`ping --apple-time "{{host}}"` diff --git a/pages.es/osx/readlink.md b/pages.es/osx/readlink.md new file mode 100644 index 0000000000..17a186f27f --- /dev/null +++ b/pages.es/osx/readlink.md @@ -0,0 +1,8 @@ +# readlink + +> Sigue enlaces simbólicos y obtiene información sobre enlaces simbólicos. +> Más información: . + +- Imprime la ruta absoluta a la que apunta el enlace simbólico: + +`readlink {{ruta/al/archivo_symlink}}` diff --git a/pages.es/osx/reboot.md b/pages.es/osx/reboot.md new file mode 100644 index 0000000000..173ea81f37 --- /dev/null +++ b/pages.es/osx/reboot.md @@ -0,0 +1,12 @@ +# reboot + +> Reinicia el sistema. +> Más información: . + +- Reinicia inmediatamente: + +`sudo reboot` + +- Reinicia inmediatamente sin apagar el sistema: + +`sudo reboot -q` diff --git a/pages.es/osx/route.md b/pages.es/osx/route.md new file mode 100644 index 0000000000..9c58aeb6fd --- /dev/null +++ b/pages.es/osx/route.md @@ -0,0 +1,29 @@ +# route + +> Manipula manualmente las tablas de enrutamiento. +> Necesita ser root. +> Más información: . + +- Añade una ruta a un destino a través de una puerta de enlace: + +`sudo route add "{{dirección_ip_destino}}" "{{dirección_puerta}}"` + +- Añade una ruta a una subred /24 a través de una puerta de enlace: + +`sudo route add "{{dirección_ip_subred}}/24" "{{dirección_puerta}}"` + +- Ejecuta en modo de prueba (no hace nada, sólo imprime): + +`sudo route -t add "{{dirección_ip_destino}}/24" "{{dirección_puerta}}"` + +- Elimina todas las rutas: + +`sudo route flush` + +- Elimina una ruta específica: + +`sudo route delete "{{dirección_ip_destino}}/24"` + +- Busca y muestra la ruta de un destino (nombre de host o dirección IP): + +`sudo route get "{{destino}}"` diff --git a/pages.es/osx/safeejectgpu.md b/pages.es/osx/safeejectgpu.md new file mode 100644 index 0000000000..3ff6a6e1dd --- /dev/null +++ b/pages.es/osx/safeejectgpu.md @@ -0,0 +1,28 @@ +# SafeEjectGPU + +> Expulsa una GPU de forma segura. +> Más información: . + +- Expulsa todas las GPUs: + +`SafeEjectGPU Eject` + +- Lista todas las GPUs conectadas: + +`SafeEjectGPU gpus` + +- Lista de aplicaciones que utilizan una GPU: + +`SafeEjectGPU gpuid {{GPU_ID}} apps` + +- Obtiene el estado de una GPU: + +`SafeEjectGPU gpuid {{GPU_ID}} status` + +- Expulsa una GPU: + +`SafeEjectGPU gpuid {{GPU_ID}} Eject` + +- Inicia una aplicación en una GPU: + +`SafeEjectGPU gpuid {{GPU_ID}} LaunchOnGPU {{ruta/al/App.app}}` diff --git a/pages.es/osx/shortcuts.md b/pages.es/osx/shortcuts.md new file mode 100644 index 0000000000..47d5be47eb --- /dev/null +++ b/pages.es/osx/shortcuts.md @@ -0,0 +1,20 @@ +# shortcuts + +> Gestiona los accesos directos desde la línea de comandos en lugar de la aplicación `Shortcuts`. +> Más información: . + +- Ejecuta el atajo especificado (`Contar vacaciones`): + +`shortcuts run "{{Contar vacaciones}}"` + +- Muestra todos los atajos: + +`shortcuts list` + +- Muestra todas las carpetas de accesos directos: + +`shortcuts list --folders` + +- Abre el acceso directo especificado (`Contar vacaciones`) en el editor `Shortcuts`: + +`shortcuts view "{{Contar vacaciones}}"` diff --git a/pages.es/osx/shuf.md b/pages.es/osx/shuf.md new file mode 100644 index 0000000000..1161f593d1 --- /dev/null +++ b/pages.es/osx/shuf.md @@ -0,0 +1,20 @@ +# shuf + +> Genera permutaciones aleatorias. +> Más información: . + +- Ordena aleatoriamente las líneas de un fichero y muestra el resultado: + +`shuf {{nombre_archivo}}` + +- Sólo muestra las 5 primeras entradas del resultado: + +`shuf --head-count={{5}} {{nombre_archivo}}` + +- Escribe el resultado en otro archivo: + +`shuf {{nombre_archivo}} --output={{nombre_archivo_salida}}` + +- Genera números aleatorios en el rango 1-10: + +`shuf --input-range={{1-10}}` diff --git a/pages.es/osx/sips.md b/pages.es/osx/sips.md new file mode 100644 index 0000000000..38d216639e --- /dev/null +++ b/pages.es/osx/sips.md @@ -0,0 +1,29 @@ +# sips + +> Sistema de procesamiento de imágenes Apple Scriptable. +> Imágenes Raster/Query y Perfiles ICC ColorSync. +> Más información: . + +- Especifica un directorio de salida para que los originales no se modifiquen: + +`sips --out {{ruta/al/directorio_salida}}` + +- Remuestrea la imagen al tamaño especificado, la relación de aspecto de la imagen puede verse alterada: + +`sips --resampleHeightWidth {{1920}}} {{300}} {{archivo_imagen.ext}}` + +- Remuestrea la imagen para que la altura y la anchura no superen el tamaño especificado (fíjate en la Z mayúscula): + +`sips --resampleHeightWidthMax {{1920}}} {{300}} {{archivo_imagen.ext}}` + +- Remuestrea todas las imágenes de un directorio para que se ajusten a una anchura de 960px (respetando la relación de aspecto): + +`sips --resampleWidth {{960}} {{ruta/al/imágenes}}` + +- Convierte una imagen de CMYK a RGB: + +`sips --matchTo "/System/Library/ColorSync/Profiles/Generic RGB Profile.icc" {{ruta/al/imagen.ext}} {{ruta/al/directorio_salida}}` + +- Elimina el perfil ICC ColorSync de una imagen: + +`sips --deleteProperty profile --deleteColorManagementProperties {{ruta/al/archivo_de_imagen.ext}}` diff --git a/pages.es/osx/spctl.md b/pages.es/osx/spctl.md new file mode 100644 index 0000000000..f4b73ae62b --- /dev/null +++ b/pages.es/osx/spctl.md @@ -0,0 +1,21 @@ +# spctl + +> Gestiona el subsistema de políticas de evaluación de seguridad. +> Utilidad para gestionar Gatekeeper en macOS. +> Más información: . + +- Desactiva Gatekeeper: + +`spctl --master-disable` + +- Añade una regla para permitir la ejecución de una aplicación (el etiquetado de la regla es opcional): + +`spctl --add --label {{nombre_regla}} {{ruta/al/archivo}}` + +- Activa Gatekeeper: + +`spctl --master-enable` + +- Lista todas las reglas del sistema: + +`spctl --list` diff --git a/pages.es/osx/sw_vers.md b/pages.es/osx/sw_vers.md new file mode 100644 index 0000000000..0f819a6700 --- /dev/null +++ b/pages.es/osx/sw_vers.md @@ -0,0 +1,16 @@ +# sw_vers + +> Imprime información sobre la versión del sistema operativo macOS. +> Más información: . + +- Imprime toda la información disponible (nombre del sistema operativo, número de versión y compilación): + +`sw_vers` + +- Imprime sólo el número de versión del sistema operativo: + +`sw_vers -productVersion` + +- Imprime sólo el identificador de compilación: + +`sw_vers -buildVersion` diff --git a/pages.es/osx/tart.md b/pages.es/osx/tart.md new file mode 100644 index 0000000000..9561eebc1e --- /dev/null +++ b/pages.es/osx/tart.md @@ -0,0 +1,36 @@ +# tart + +> Crea, ejecuta y gestiona máquinas virtuales (VM) macOS y Linux en Apple Silicon. +> Más información: . + +- Extrae una imagen de VM remota: + +`tart pull {{acme.io/org/nombre:tag}}` + +- Clona una VM desde una fuente de imagen local o remota: + +`tart clone {{source-vm}} {{nombre-vm}}` + +- Crea una nueva Mac VM a partir de un archivo ipsw específico: + +`tart create --from-ipsw={{ultima|ruta/al/archivo.ipsw}} {{nombre-de-la-vm}}` + +- Ejecuta una máquina virtual existente: + +`tart run {{nombre-de-la-vm}}` + +- Ejecuta una máquina virtual existente con un directorio específico montado: + +`tart run --dir={{ruta/al/directorio}}:{{ruta/a/directorio local}} {{nombre-de-la-vm}}` + +- Lista máquinas virtuales: + +`tart list` + +- Obtiene la dirección IP de una máquina virtual en ejecución: + +`tart ip {{nombre-de-la-vm}}` + +- Cambia la resolución de pantalla de una máquina virtual: + +`tart set {{nombre-de-la-vm}} --display {{640}}x{{400}}` diff --git a/pages.es/osx/terminal-notifier.md b/pages.es/osx/terminal-notifier.md new file mode 100644 index 0000000000..936336d130 --- /dev/null +++ b/pages.es/osx/terminal-notifier.md @@ -0,0 +1,20 @@ +# terminal-notifier + +> Envia notificaciones de usuario en macOS. +> Más información: . + +- Envia una notificación (sólo se requiere el mensaje): + +`terminal-notifier -group {{tldr-info}} -title {{TLDR}} -mensaje '{{TLDR mola}}'` + +- Muestra datos canalizados con un sonido: + +`echo '{{¡Datos de mensajes canalizados!}}'' | terminal-notifier -sound {{default}}` + +- Abre una URL al hacer clic en la notificación: + +`terminal-notifier -message '{{¡Comprueba tus acciones de Apple!}}' -open '{{! -open '{{http://finance.yahoo.com/q?s=AAPL}}'` + +- Abre una aplicación al hacer clic en la notificación: + +`terminal-notifier -message '{{Se importaron 42 contactos.}}' -activate {{com.apple.AddressBook}}` diff --git a/pages.es/osx/top.md b/pages.es/osx/top.md new file mode 100644 index 0000000000..addb95a130 --- /dev/null +++ b/pages.es/osx/top.md @@ -0,0 +1,24 @@ +# top + +> Muestra información dinámica en tiempo real sobre los procesos en ejecución. +> Más información: . + +- Inicia top, todas las opciones están disponibles en la interfaz: + +`top` + +- Inicia top ordenando los procesos por tamaño de memoria interna (orden por defecto - ID del proceso): + +`top -o mem` + +- Inicia top ordenando los procesos primero por CPU, luego por tiempo de ejecución: + +`top -o cpu -O time` + +- Inicia top mostrando sólo los procesos que pertenecen a un usuario determinado: + +`top -user {{nombre_usuario}}` + +- Obtener ayuda sobre comandos interactivos: + +`?` diff --git a/pages.es/osx/uname.md b/pages.es/osx/uname.md new file mode 100644 index 0000000000..0975dc4c8f --- /dev/null +++ b/pages.es/osx/uname.md @@ -0,0 +1,25 @@ +# uname + +> Imprime detalles sobre la máquina actual y el sistema operativo que se ejecuta en ella. +> Nota: para obtener información adicional sobre el sistema operativo, pruebe el comando `sw_vers`. +> Más información: . + +- Imprime el nombre del kernel: + +`uname` + +- Muestra la arquitectura del sistema y la información del procesador: + +`uname -mp` + +- Muestra el nombre, la versión y la versión del kernel: + +`uname -srv` + +- Muestra el nombre de host del sistema: + +`uname -n` + +- Muestra toda la información disponible del sistema: + +`uname -a` diff --git a/pages.es/osx/uptime.md b/pages.es/osx/uptime.md new file mode 100644 index 0000000000..9a5f0f22a2 --- /dev/null +++ b/pages.es/osx/uptime.md @@ -0,0 +1,8 @@ +# uptime + +> Indica cuánto tiempo lleva funcionando el sistema y otras informaciones. +> Más información: . + +- Imprime la hora actual, el tiempo de actividad, el número de usuarios conectados y otras informaciones: + +`uptime` diff --git a/pages.es/osx/usernoted.md b/pages.es/osx/usernoted.md new file mode 100644 index 0000000000..3ea1a662e9 --- /dev/null +++ b/pages.es/osx/usernoted.md @@ -0,0 +1,9 @@ +# usernoted + +> Proporciona servicios de notificación. +> No debe invocarse manualmente. +> Más información: . + +- Inicia el daemon: + +`usernoted` diff --git a/pages.es/osx/valet.md b/pages.es/osx/valet.md new file mode 100644 index 0000000000..cb9abe22ed --- /dev/null +++ b/pages.es/osx/valet.md @@ -0,0 +1,24 @@ +# valet + +> Un entorno de desarrollo Laravel que permite alojar sitios a través de túneles locales en `http://.test`. +> Más información: . + +- Inicia el daemon valet: + +`valet start` + +- Registra el directorio de trabajo actual como ruta en la que Valet debe buscar sitios: + +`valet park` + +- Ver las rutas 'aparcadas': + +`valet paths` + +- Sirve un único sitio en lugar de un directorio completo: + +`valet link {{nombre_aplicacion}}` + +- Compartir un proyecto a través de un túnel Ngrok: + +`valet share` diff --git a/pages.es/osx/vm_stat.md b/pages.es/osx/vm_stat.md new file mode 100644 index 0000000000..bc5846f47c --- /dev/null +++ b/pages.es/osx/vm_stat.md @@ -0,0 +1,12 @@ +# vm_stat + +> Muestra estadísticas de memoria virtual. +> Más información: . + +- Muestra estadísticas de memoria virtual: + +`vm_stat` + +- Muestra informes cada 2 segundos durante 5 veces: + +`vm_stat -c {{5}} {{2}}` diff --git a/pages.es/osx/w.md b/pages.es/osx/w.md new file mode 100644 index 0000000000..6a26de6202 --- /dev/null +++ b/pages.es/osx/w.md @@ -0,0 +1,17 @@ +# w + +> Muestra quién está conectado y qué está haciendo. +> Imprime el inicio de sesión del usuario, TTY, host remoto, tiempo de inicio de sesiòn, tiempo de inactividad, proceso actual. +> Más información: . + +- Muestra información de los usuarios conectados: + +`w` + +- Muestra información de usuarios conectados sin encabezado: + +`w -h` + +- Muestra información sobre los usuarios conectados, ordenados por su tiempo de inactividad: + +`w -i` diff --git a/pages.es/osx/warmd.md b/pages.es/osx/warmd.md new file mode 100644 index 0000000000..7ede3ae3df --- /dev/null +++ b/pages.es/osx/warmd.md @@ -0,0 +1,9 @@ +# warmd + +> Controla las cachés utilizadas durante el arranque y el inicio de sesión. +> No debe invocarse manualmente. +> Más información: . + +- Inicia el daemon: + +`warmd` diff --git a/pages.es/osx/webinspectord.md b/pages.es/osx/webinspectord.md new file mode 100644 index 0000000000..0d63f5b63c --- /dev/null +++ b/pages.es/osx/webinspectord.md @@ -0,0 +1,9 @@ +# webinspectord + +> Transmite comandos entre Web Inspector y objetos remotos como WKWebView. +> No debe invocarse manualmente. +> Más información: . + +- Inicia el daemon: + +`webinspectord` diff --git a/pages.es/osx/whatis.md b/pages.es/osx/whatis.md new file mode 100644 index 0000000000..cd56c317de --- /dev/null +++ b/pages.es/osx/whatis.md @@ -0,0 +1,12 @@ +# whatis + +> Herramienta que busca palabras clave en un conjunto de archivos de base de datos que contienen descripciones breves de comandos del sistema. +> Más información: . + +- Busca información sobre palabra clave: + +`whatis {{palabra_clave}}` + +- Busca información sobre varias palabras clave: + +`whatis {{palabra_clave1}} {{palabra_clave2}}` diff --git a/pages.es/osx/whence.md b/pages.es/osx/whence.md new file mode 100644 index 0000000000..3b0a0395fc --- /dev/null +++ b/pages.es/osx/whence.md @@ -0,0 +1,24 @@ +# whence + +> Un comando integrado de zsh para indicar cómo se interpretaría un comando dado. +> Más información: . + +- Interpreta {{comando}}, con expansión si se define como un `alias` (similar al `command -v` integrado): + +`whence "{{comando}}"` + +- Muestra tipo de {{comando}}, con localización si se define como una función, o binario (equivalente a los `type` y `command -V` integrados): + +`whence -v "{{comando}}"` + +- Igual que el anterior, excepto que muestra el contenido de las funciones del shell en lugar de la ubicación (equivalente al `which` integrado): + +`whence -c "{{comando}}"` + +- Igual que el anterior, pero muestra todas las apariciones en la ruta del comando (equivalente al `where` integrado): + +`whence -ca "{{comando}}"` + +- Buscar sólo el `PATH`para {{comando}}, ignorando los buildins, aliases o funciones del shell (equivalente al comando `where`): + +`whence -p "{{comando}}"` diff --git a/pages.es/osx/wifivelocityd.md b/pages.es/osx/wifivelocityd.md new file mode 100644 index 0000000000..685c428c65 --- /dev/null +++ b/pages.es/osx/wifivelocityd.md @@ -0,0 +1,9 @@ +# wifivelocityd + +> Asistente XPC para realizar acciones de contexto de sistema para el framework WiFiVelocity. +> No debe invocarse manualmente. +> Más información: . + +- Inicia el daemon: + +`wifivelocityd` diff --git a/pages.es/osx/wps.md b/pages.es/osx/wps.md new file mode 100644 index 0000000000..370d9c5e3c --- /dev/null +++ b/pages.es/osx/wps.md @@ -0,0 +1,9 @@ +# wps + +> Ayuda a AirPort a conectarse a una red mediante la Configuración inalámbrica protegida. +> No debe invocarse manualmente. +> Más información: . + +- Inicia el daemon: + +`wps` diff --git a/pages.es/osx/wwand.md b/pages.es/osx/wwand.md new file mode 100644 index 0000000000..d75ab1ff82 --- /dev/null +++ b/pages.es/osx/wwand.md @@ -0,0 +1,9 @@ +# wwand + +> Daemon de configuración del dispositivo USB WWAN. +> No debe invocarse manualmente. +> Más información: . + +- Inicia el daemon: + +`wwand` diff --git a/pages.es/osx/xartstorageremoted.md b/pages.es/osx/xartstorageremoted.md new file mode 100644 index 0000000000..f8ac767444 --- /dev/null +++ b/pages.es/osx/xartstorageremoted.md @@ -0,0 +1,9 @@ +# xartstorageremoted + +> El Daemon de Almacenamiento Remoto xART. Recibe las solicitudes de guardar/obtener del CoProcesador. +> No debe ser invocado manualmente. +> Más información: . + +- Inicia el daemon: + +`xartstorageremoted` diff --git a/pages.es/osx/xattr.md b/pages.es/osx/xattr.md new file mode 100644 index 0000000000..e9db515137 --- /dev/null +++ b/pages.es/osx/xattr.md @@ -0,0 +1,24 @@ +# xattr + +> Utilidad para trabajar con atributos extendidos del sistema de ficheros. +> Más información: . + +- Lista atributos extendidos clave:valor para un archivo dado: + +`xattr -l {{archivo}}` + +- Escribe un atributo para un archivo determinado: + +`xattr -w {{atributo_clave}} {{atributo_valor}} {{archivo}}` + +- Elimina un atributo de un archivo determinado: + +`xattr -d {{com.apple.quarantine}}} {{archivo}}` + +- Elimina todos los atributos extendidos de un archivo determinado: + +`xattr -c {{archivo}}` + +- Elimina recursivamente un atributo en un directorio determinado: + +`xattr -rd {{clave_atributo}} {{directorio}}` diff --git a/pages.es/osx/xcode-select.md b/pages.es/osx/xcode-select.md new file mode 100644 index 0000000000..f8d60be959 --- /dev/null +++ b/pages.es/osx/xcode-select.md @@ -0,0 +1,25 @@ +# xcode-select + +> Cambia entre diferentes versiones de Xcode y las herramientas incluidas para desarrolladores. +> También se utiliza para actualizar la ruta a Xcode si se mueve después de la instalación. +> Más información: . + +- Instala las herramientas de línea de comandos de Xcode: + +`xcode-select --install` + +- Selecciona una ruta determinada como directorio de desarrollador activo: + +`xcode-select --switch {{ruta/al/Xcode.app/Contents/Developer}}` + +- Selecciona una instancia de Xcode determinada y utiliza su directorio de desarrollador como directorio activo: + +`xcode-select --switch {{ruta/al/archivo/Xcode_file.app}}` + +- Muestra el directorio de desarrollador seleccionado: + +`xcode-select --print-path` + +- Descarta cualquier directorio de desarrolladores especificado por el usuario para que se encuentre mediante el mecanismo de búsqueda predeterminado: + +`sudo xcode-select --reset` diff --git a/pages.es/osx/xcodes-runtimes.md b/pages.es/osx/xcodes-runtimes.md new file mode 100644 index 0000000000..587a61ef03 --- /dev/null +++ b/pages.es/osx/xcodes-runtimes.md @@ -0,0 +1,16 @@ +# xcodes runtimes + +> Gestiona los tiempos de ejecución de Xcode Simulator. +> Más información: . + +- Muestra todos los tiempos de ejecución del simulador disponibles: + +`xcodes runtimes --include-betas` + +- Descarga un simulador de un tiempo de ejecución: + +`xcodes runtimes download {{nombre_del_tiempo_de_ejecución}}` + +- Descarga e instala un simulador de un tiempo de ejecución: + +`xcodes runtimes install {{nombre_del_tiempo_de_ejecución}}` diff --git a/pages.es/osx/xcrun.md b/pages.es/osx/xcrun.md new file mode 100644 index 0000000000..31fd239c72 --- /dev/null +++ b/pages.es/osx/xcrun.md @@ -0,0 +1,28 @@ +# xcrun + +> Ejecuta o localiza herramientas de desarrollo y propiedades. +> Más información: . + +- Localiza y ejecuta una herramienta desde el directorio activo de desarrolladores: + +`xcrun {{herramienta}} {{argumentos}}` + +- Muestra resultados detallados: + +`xcrun {{herramienta}} {{argumentos}} --verbose` + +- Busca una herramienta para un SDK determinado: + +`xcrun --sdk {{nombre_sdk}}` + +- Busca una herramienta para una cadena de herramientas determinada: + +`xcrun --toolchain {{nombre}}` + +- Muestra versión: + +`xcrun --version` + +- Muestra ayuda: + +`xcrun --help` diff --git a/pages.es/osx/xctool.md b/pages.es/osx/xctool.md new file mode 100644 index 0000000000..f6c8fc4856 --- /dev/null +++ b/pages.es/osx/xctool.md @@ -0,0 +1,16 @@ +# xctool + +> Herramienta para construir proyectos Xcode. +> Más información: . + +- Construye un proyecto sin ningún espacio de trabajo: + +`xctool -project {{TuProyecto.xcodeproj}} -scheme {{SuEsquema}} build` + +- Construye un proyecto que forma parte de un espacio de trabajo: + +`xctool -workspace {{TuEspacioDeTrabajo.xcworkspace}} -scheme {{TuEsquema}} build` + +- Limpia, construye y ejecuta todas las pruebas: + +`xctool -workspace {{TuEspacioTrabajo.xcworkspace}} -scheme {{TuEsquema}} clean build test` diff --git a/pages.es/osx/xed.md b/pages.es/osx/xed.md new file mode 100644 index 0000000000..3d7420fae0 --- /dev/null +++ b/pages.es/osx/xed.md @@ -0,0 +1,16 @@ +# xed + +> Abre archivos para editarlos en Xcode. +> Más información: . + +- Abre archivo en Xcode: + +`xed {{archivo1}}` + +- Abre archivo(s) en Xcode, lo crea si no existe: + +`xed --create {{nombre_archivo1}}` + +- Abre un archivo en Xcode y salta a la línea número 75: + +`xed --line 75 {{nombre_archivo}}` diff --git a/pages.es/osx/xip.md b/pages.es/osx/xip.md new file mode 100644 index 0000000000..865caf83d7 --- /dev/null +++ b/pages.es/osx/xip.md @@ -0,0 +1,9 @@ +# xip + +> Crea o expande archivos comprimidos en un archivo xip seguro. +> Sólo los archivos firmados por Apple son de confianza, por lo que esta herramienta no debe utilizarse para crear archivos comprimidos. +> Más información: . + +- Expande el archivo en el directorio de trabajo actual: + +`xip --expand {{ruta/al/archivo.xip}}` diff --git a/pages.es/osx/xml2man.md b/pages.es/osx/xml2man.md new file mode 100644 index 0000000000..2509e9e1df --- /dev/null +++ b/pages.es/osx/xml2man.md @@ -0,0 +1,16 @@ +# xml2man + +> Compila MPGL a mdoc. +> Más información: . + +- Compila un archivo MPGL a una página man visible: + +`xml2man {{ruta/al/archivo_de_comando.mxml}}` + +- Compila un archivo MPGL a un archivo de salida específico: + +`xml2man {{ruta/al/archivo_servicio.mxml}} {{ruta/al/archivo_servicio.7}}` + +- Compila un archivo MPGL a un archivo de salida específico, sobrescribiéndolo si ya existe: + +`xml2man -f {{ruta/al/archivo_funcion.mxml}} {{ruta/al/archivo_de_funcion.3}}` diff --git a/pages.es/osx/xsand.md b/pages.es/osx/xsand.md new file mode 100644 index 0000000000..bf33661f03 --- /dev/null +++ b/pages.es/osx/xsand.md @@ -0,0 +1,9 @@ +# xsand + +> Daemon de gestión del sistema de archivos Xsan. Proporciona servicios para el sistema de archivos Xsan. +> No debe invocarse manualmente. +> Más información: . + +- Inicia el daemon: + +`xsand` diff --git a/pages.es/osx/xsltproc.md b/pages.es/osx/xsltproc.md new file mode 100644 index 0000000000..0ce122bdb8 --- /dev/null +++ b/pages.es/osx/xsltproc.md @@ -0,0 +1,12 @@ +# xsltproc + +> Transforma XML con XSLT para producir una salida (normalmente HTML o XML). +> Más información: . + +- Transforma un archivo XML con una hoja de estilos XSLT específica: + +`xsltproc --output {{ruta/al/archivo_salida.html}} {{ruta/al/archivo_hoja_estilo.xslt}} {{ruta/al/archivo.xml}}` + +- Pasa un valor a un parámetro de la hoja de estilos: + +`xsltproc --output {{ruta/al/archivo_salida.html}} --stringparam "{{nombre}}" "{{value}}" {{ruta/al/archivo_hoja_estilo.xslt}} {{ruta/al/archivo_xml.xml}}` diff --git a/pages.es/osx/yaa.md b/pages.es/osx/yaa.md new file mode 100644 index 0000000000..26b572a258 --- /dev/null +++ b/pages.es/osx/yaa.md @@ -0,0 +1,28 @@ +# yaa + +> Crea y manipula archivos YAA. +> Más información: . + +- Crea un archivo a partir de un directorio: + +`yaa archive -d {{ruta/al/directorio}} -o {{ruta/al/archivo_de_salida.yaa}}` + +- Crea un archivo a partir de un fichero: + +`yaa archive -i {{ruta/al/archivo}} -o {{ruta/al/archivo_de_salida.yaa}}` + +- Extrae un archivo al directorio actual: + +`yaa extract -i {{ruta/al/archivo.yaa}}` + +- Lista el contenido de un archivo: + +`yaa list -i {{ruta/al/archivo.yaa}}` + +- Crea un archivo con un algoritmo de compresión específico: + +`yaa archive -a {{algorithm}} -d {{ruta/al/directorio}} -o {{ruta/al/archivo_de_salida.yaa}}` + +- Crea un archivo con un tamaño de bloque de 8 MB: + +`yaa archive -b {{8m}}} -d {{ruta/al/directorio}} -o {{ruta/al/archivo_de_salida.yaa}}` diff --git a/pages.es/windows/cd.md b/pages.es/windows/cd.md new file mode 100644 index 0000000000..c09772eb27 --- /dev/null +++ b/pages.es/windows/cd.md @@ -0,0 +1,24 @@ +# cd + +> Muestra información sobre el directorio actual y le permite moverse a otro. +> Más informaciones: . + +- Muestra la ruta (path) del directorio actual: + +`cd` + +- Ir a la raíz de la unidad actual: + +`cd \` + +- Mover al directorio superior: + +`cd ..` + +- Mover a un directorio específico en el mismo disco: + +`cd {{ruta\al\directorio}}` + +- Mover a un directorio específico en otro disco: + +`cd /d {{C}}:{{ruta\al\directorio}}` diff --git a/pages.es/windows/chrome.md b/pages.es/windows/chrome.md new file mode 100644 index 0000000000..b933900b39 --- /dev/null +++ b/pages.es/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> Este comando es un alias de `chromium`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr chromium` diff --git a/pages.es/windows/curl.md b/pages.es/windows/curl.md new file mode 100644 index 0000000000..b5ff81680c --- /dev/null +++ b/pages.es/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> Este comando es un alias de `curl -p common`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr curl -p common` diff --git a/pages.es/windows/getmac.md b/pages.es/windows/getmac.md new file mode 100644 index 0000000000..80a6f313e3 --- /dev/null +++ b/pages.es/windows/getmac.md @@ -0,0 +1,28 @@ +# getmac + +> Muestra las direcciones MAC de un sistema. +> Más información: . + +- Muestra las direcciones MAC del sistema actual: + +`getmac` + +- Muestra los detalles en un formato específico: + +`getmac /fo {{table|list|csv}}` + +- Excluye la cabecera en la lista de salida: + +`getmac /nh` + +- Muestra las direcciones MAC de un equipo remoto: + +`getmac /s {{nombre_host}} /u {{nombredeusuario}} /p {{contraseña}}` + +- Muestra las direcciones MAC con información detallada: + +`getmac /v` + +- Muestra información de uso detallada: + +`getmac /?` diff --git a/pages.es/windows/iwr.md b/pages.es/windows/iwr.md new file mode 100644 index 0000000000..69a339305f --- /dev/null +++ b/pages.es/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> Este comando es un alias de `invoke-webrequest`. + +- Ver documentación para el comando original: + +`tldr invoke-webrequest` diff --git a/pages.es/windows/pwsh-where.md b/pages.es/windows/pwsh-where.md new file mode 100644 index 0000000000..2a6481a9a5 --- /dev/null +++ b/pages.es/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> Este comando es un alias de `Where-Object`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr Where-Object` diff --git a/pages.es/windows/rd.md b/pages.es/windows/rd.md new file mode 100644 index 0000000000..f1cb5fa44c --- /dev/null +++ b/pages.es/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> Este comando es un alias de `rmdir`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr rmdir` diff --git a/pages.es/windows/sls.md b/pages.es/windows/sls.md new file mode 100644 index 0000000000..f85e2cd1e5 --- /dev/null +++ b/pages.es/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> Este comando es un alias de `where-object`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr where-object` diff --git a/pages.es/windows/wget.md b/pages.es/windows/wget.md new file mode 100644 index 0000000000..1c0515afa8 --- /dev/null +++ b/pages.es/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> Este comando es un alias de `wget -p common`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr wget -p common` diff --git a/pages.fa/android/am.md b/pages.fa/android/am.md new file mode 100644 index 0000000000..1cb5ce9f33 --- /dev/null +++ b/pages.fa/android/am.md @@ -0,0 +1,20 @@ +# am + +> مدیر فعالیت های اندروید +> اطلاعات بیشتر: . + +- یک فعالیت خاص رو شروع کن : + +`am start -n {{com.android.settings/.Settings}}` + +- یک فعالیت خاص رو شروع کن و داده به آن ارسال کن : + +`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}` + +- فعالیتی که با دسته بندی و عمل خاصی مطابقت داره رو شروع کن : + +`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}` + +- یک اینتنت رو به یک URI تبدیل میکنه : + +`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}` diff --git a/pages.fa/android/bugreport.md b/pages.fa/android/bugreport.md new file mode 100644 index 0000000000..af34025675 --- /dev/null +++ b/pages.fa/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> نمایش یک گزارش خطا اندروید. +> این دستور فقط از طریق `adb shell` قابل اجراست. +> اطلاعات بیشتر: . + +- یک گزارش خطای کامل از دستگاه مورد نظر نمایش میدهد : + +`bugreport` diff --git a/pages.fa/android/bugreportz.md b/pages.fa/android/bugreportz.md new file mode 100644 index 0000000000..c3e2b2c686 --- /dev/null +++ b/pages.fa/android/bugreportz.md @@ -0,0 +1,21 @@ +# bugreportz + +> تولید یک گزارش خطای اندروید فشرده شده. +> این دستور فقط از طریق `adb shell` قابل اجراست. +> اطلاعات بیشتر: . + +- تولید که گزارش خطای کامل از یک دستگاه اندرویدی : + +`bugreportz` + +- نمایش فرایند اجرای دستور `bugreportz` : + +`bugreportz -p` + +- نمایش نسخه `bugreportz` : + +`bugreportz -v` + +- نمایش راهنمایی : + +`bugreportz -h` diff --git a/pages.fa/android/cmd.md b/pages.fa/android/cmd.md new file mode 100644 index 0000000000..d878681ab5 --- /dev/null +++ b/pages.fa/android/cmd.md @@ -0,0 +1,16 @@ +# cmd + +> مدیر سرویس اندروید. +> اطلاعات بیشتر: . + +- فهرست تمام سرویس های درحال اجرا : + +`cmd -l` + +- فراخوان یک سرویس : + +`cmd {{سرویس}}` + +- فراخوان یک سرویس با مقادیر ورودی : + +`cmd {{سرویس}} {{استدلال 1 استدلال 2 ...}}` diff --git a/pages.fa/android/dalvikvm.md b/pages.fa/android/dalvikvm.md new file mode 100644 index 0000000000..6de73a9a85 --- /dev/null +++ b/pages.fa/android/dalvikvm.md @@ -0,0 +1,8 @@ +# dalvikvm + +> ماشین مجازی اندروید. +> اطلاعات بیشتر: . + +- اجرای یک برنامه جاوا : + +`dalvikvm -classpath {{مسیر/به/فایل.jar}} {{classname}}` diff --git a/pages.fa/android/dumpsys.md b/pages.fa/android/dumpsys.md new file mode 100644 index 0000000000..e46622ada2 --- /dev/null +++ b/pages.fa/android/dumpsys.md @@ -0,0 +1,29 @@ +# dumpsys + +> ارائه اطلاعات درباره سیستم سرویس اندروید. +> این دستور فقط از طریق `adb shell` قابل اجراست. +> اطلاعات بیشتر: . + +- دریافت اطلاعات عیب بای تمامی سرویس های سیستمی : + +`dumpsys` + +- دریافت اطلاعات عیب یابی یک سرویس سیستمی مشخص : + +`dumpsys {{سرویس}}` + +- فهرستی از تمامی سرویس هایی که `dumpsys` میتواند اطلاعات بدهد : + +`dumpsys -l` + +- ورودی های یک سرویس مشخص را فهرست میکند : + +`dumpsys {{سرویس}} -h` + +- حذف یک سرویس مشخص از خروجی عیب یابی : + +`dumpsys --skip {{سرویس}}` + +- تعیین فرصت زمانی بر مبنای ثانیه (پیش فرض 10ثانیه) : + +`dumpsys -t {{8}}` diff --git a/pages.fa/android/getprop.md b/pages.fa/android/getprop.md new file mode 100644 index 0000000000..149be92b1f --- /dev/null +++ b/pages.fa/android/getprop.md @@ -0,0 +1,32 @@ +# getprop + +> نمایش اطلاعات مربوط به مشخصات سیستم اندروید. +> اطلاعات بیشتر: . + +- نمایش اطلاعات مربوط به مشخصات سیستم اندروید : + +`getprop` + +- نمایش اطلاعات مربوط به یک مشخصه : + +`getprop {{ویژگی}}` + +- نمایش سطح SDK رابط برنامه نویسی : + +`getprop {{ro.build.version.sdk}}` + +- نمایش نسخه اندروید : + +`getprop {{ro.build.version.release}}` + +- نمایش مدل دستگاه اندروید : + +`getprop {{ro.vendor.product.model}}` + +- نمایش اطلاعات قفل OEM : + +`getprop {{ro.oem_unlock_supported}}` + +- نمایش آدرس مک کارت وای فای اندروید : + +`getprop {{ro.boot.wifimacaddr}}` diff --git a/pages.fa/android/input.md b/pages.fa/android/input.md new file mode 100644 index 0000000000..301d230414 --- /dev/null +++ b/pages.fa/android/input.md @@ -0,0 +1,25 @@ +# input + +> ارسال کد رویداد یا ورودی صفحه نمایش به یک دستگاه اندروید. +> این دستور فقط از طریق `adb shell` قابل اجراست. +> اطلاعات بیشتر: . + +- ارسال کد رویداد یک کاراکتر به یک دستگاه اندروید : + +`input keyevent {{event_code}}` + +- ارسال یک متن به یک دستگاه اندروید (`%s` نمایانگر فاصله است) : + +`input text "{{متن}}"` + +- ارسال یک ضربه به یک دستگاه اندروید : + +`input tap {{x_position}} {{y_position}}` + +- ارسال حرکت افقی عمودی به یک دستگاه اندروید : + +`input swipe {{x_start}} {{y_start}} {{x_end}} {{y_end}} {{duration_in_ms}}` + +- ارسال یک نگهداشتن بلند مدت به یک دستگاه اندرویدی از طریق حرکت افقی عمودی : + +`input swipe {{x_position}} {{y_position}} {{x_position}} {{y_position}} {{duration_in_ms}}` diff --git a/pages.fa/android/logcat.md b/pages.fa/android/logcat.md new file mode 100644 index 0000000000..827bd885bc --- /dev/null +++ b/pages.fa/android/logcat.md @@ -0,0 +1,24 @@ +# logcat + +> تخلیه یک لاگ از پیاهم های سیستمی، شامل پشته رهگیری زمان وقوع خطا، و اطلاعات پیام های لاگ شده توسط برنامه ها. +> اطلاعات بیشتر: . + +- نمایش لاگ سیستمی : + +`logcat` + +- نوشتن لاگ سیستمی به یک فایل : + +`logcat -f {{مسیر/به/فایل}}` + +- نمایش خطاهای منطبق با الگوی ورودی : + +`logcat --regex {{regular_expression}}` + +- نمایش لاگ های مربوط به یک PID مشخص : + +`logcat --pid={{pid}}` + +- نمایش لاگ های پروسه های مربوط به یک بسته مشخص : + +`logcat --pid=$(pidof -s {{بسته}})` diff --git a/pages.fa/android/pkg.md b/pages.fa/android/pkg.md new file mode 100644 index 0000000000..2995d377a3 --- /dev/null +++ b/pages.fa/android/pkg.md @@ -0,0 +1,24 @@ +# pkg + +> ابزار مدیر بسته ها برای ترماکس. +> اطلاعات بیشتر: . + +- ارتقا تمامی بسته های نصب شده : + +`pkg upgrade` + +- نصب یک بسته : + +`pkg install {{بسته}}` + +- حذف یک بسته : + +`pkg uninstall {{بسته}}` + +- نصب دوباره یک بسته : + +`pkg reinstall {{بسته}}` + +- جستجوی یک بسته : + +`pkg search {{بسته}}` diff --git a/pages.fa/android/pm.md b/pages.fa/android/pm.md new file mode 100644 index 0000000000..7ce8936885 --- /dev/null +++ b/pages.fa/android/pm.md @@ -0,0 +1,24 @@ +# pm + +> نمایش اطلاعات مربوط به برنامه های یک دستگاه اندروید. +> اطلاعات بیشتر: . + +- فهرست تمامی برنامه های نصب شده : + +`pm list packages` + +- فهرست تمامی برنامه های سیستمی نصب شده : + +`pm list packages -s` + +- فهرست تمامی برنامه های نصب شده شخض ثالث : + +`pm list packages -3` + +- فهرست برنامه های منطبق با کلید واژه(ها) : + +`pm list packages {{کلمه کلیدی 1 کلمه کلیدی 2 ...}}` + +- نمایش مسیر فایل APK یک برنامه مشخص : + +`pm path {{app}}` diff --git a/pages.fa/android/screencap.md b/pages.fa/android/screencap.md new file mode 100644 index 0000000000..f490c7e067 --- /dev/null +++ b/pages.fa/android/screencap.md @@ -0,0 +1,9 @@ +# screencap + +> ضبط یک اسکرین شات از صفحه یک موبایل. +> این دستور فقط از طریق `adb shell` قابل اجراست. +> اطلاعات بیشتر: . + +- ضبط یک اسکرین شات : + +`screencap {{مسیر/به/فایل}}` diff --git a/pages.fa/android/settings.md b/pages.fa/android/settings.md new file mode 100644 index 0000000000..62621f4369 --- /dev/null +++ b/pages.fa/android/settings.md @@ -0,0 +1,20 @@ +# settings + +> دریافت اطلاعات مربوط به سیستم عامل اندروید. +> اطلاعات بیشتر: . + +- نمایش یک فهرست از تنظیمات داخل فضای نام `global` : + +`settings list {{global}}` + +- دریافت مقدار یک تنظیم مشخص : + +`settings get {{global}} {{airplane_mode_on}}` + +- انتصاب یک مقدار مشخص به یک تنظیم : + +`settings put {{system}} {{screen_brightness}} {{42}}` + +- حذف یک تنظیم مشخص : + +`settings delete {{secure}} {{screensaver_enabled}}` diff --git a/pages.fa/android/wm.md b/pages.fa/android/wm.md new file mode 100644 index 0000000000..e7383bf788 --- /dev/null +++ b/pages.fa/android/wm.md @@ -0,0 +1,13 @@ +# wm + +> نمایش اطلاعات مربوط به صفحه نمایش یک دستگاه اندروید. +> این دستور فقط از طریق `adb shell` قابل اجراست. +> اطلاعات بیشتر: . + +- نمایش اندازه فیزیکی صفحه نمایش یک دستگاه اندروید : + +`wm {{size}}` + +- نمایش فشردگی پیکسل فیزیکی صفحه نمایش یک دستگاه اندروید : + +`wm {{density}}` diff --git a/pages.fa/common/2to3.md b/pages.fa/common/2to3.md new file mode 100644 index 0000000000..0a72f492bb --- /dev/null +++ b/pages.fa/common/2to3.md @@ -0,0 +1,32 @@ +# 2to3 + +> تبدیل خودکار کد پایتون نسخه 2 به 3 +> اطلاعات بیشتر: . + +- نمایش تغییرات که در حال حاضر انجام میشود بدون اجرای آن (dry-run) : + +`2to3 {{مسیر/به/فایل.py}}` + +- تبدیل فایل پایتون نسخه 2 به 3 : + +`2to3 --write {{مسیر/به/فایل.py}}` + +- تبدیل قابلیت های خاص پایتون نسخه 2 به 3 : + +`2to3 --write {{مسیر/به/فایل.py}} --fix={{raw_input}} --fix={{print}}` + +- تبدیل تمامی قابلیت های نسخه 2 به 3 بغیر از ویژگی های معیین شده : + +`2to3 --write {{مسیر/به/فایل.py}} --nofix={{has_key}} --nofix={{isinstance}}` + +- نمایش لیست قابلیت های زبان پایتون نسخه 2 که قابلیت تبدیل به نسخه 3 را دارند : + +`2to3 --list-fixes` + +- تبدیل تمامی فایل های پایتون نسخه 2 به 3 در یک مسیر : + +`2to3 --output-dir={{مسیر/به/پوشه_پایتون_3}} --write-unchanged-files --nobackups {{مسیر/به/پوشه_پایتون_2}}` + +- اجرای همزان(چند رشته ای) دستور 2 به 3 : + +`2to3 --processes={{4}} --output-dir={{مسیر/به/پوشه_پایتون_3}} --write --nobackups --no-diff {{مسیر/به/پوشه_پایتون_2}}` diff --git a/pages.fa/common/7z.md b/pages.fa/common/7z.md index 238a935f02..f0d5b7db5b 100644 --- a/pages.fa/common/7z.md +++ b/pages.fa/common/7z.md @@ -1,36 +1,36 @@ # 7z > آرشیو کننده فایل با نسبت فشرده سازی بالا. -> اطلاعات بیشتر: . +> اطلاعات بیشتر: . -- آرشیو کننده فایل یا دایرکتوری: +- آرشیو کننده فایل یا دایرکتوری : `7z a {{7z.مسیر فایل آرشیو}} {{مسیر فایل یا دایرکتوری}}` -- رمزگذاری بر روی فایل آرشیو موجود(ازجمله نام فایل ها): +- رمزگذاری بر روی فایل آرشیو موجود(ازجمله نام فایل ها) : `7z a {{7z.مسیر فایل آرشیو رمزگذاری شده}} -p{{رمز عبور}} -mhe=on {{7z.مسیر فایل آرشیو}}` -- خارج کردن فایل از حالت آرشیو با حفظ ساختار دایرکتوری ها: +- خارج کردن فایل از حالت آرشیو با حفظ ساختار دایرکتوری ها : `7z x {{7z.مسیر فایل آرشیو}}` -- خارج کردن یک فایل از حالت آرشیو در یک دایرکتوری خاص: +- خارج کردن یک فایل از حالت آرشیو در یک دایرکتوری خاص : `7z x {{7z.مسیر فایل آرشیو}} -o{{مسیر دایرکتوری خروجی}}` -- خارج کردن یک فایل از حالت آرشیو و انتقال آن به stdout: +- خارج کردن یک فایل از حالت آرشیو و انتقال آن به `stdout` : `7z x {{7z.مسیر فایل آرشیو}} -so` -- آرشیو کردن با یک فرمت خاص: +- آرشیو کردن با یک فرمت خاص : `7z a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{7z.مسیر فایل آرشیو}} {{مسیر فایل یا دایرکتوری}}` -- نمایش محتویات یک فایل آرشیو: +- نمایش محتویات یک فایل آرشیو : `7z l {{7z.مسیر فایل آرشیو}}` -- نمایش فرمت های در دسترسی: +- نمایش فرمت های در دسترسی : `7z i` diff --git a/pages.fa/common/7za.md b/pages.fa/common/7za.md new file mode 100644 index 0000000000..1da1ed4ad4 --- /dev/null +++ b/pages.fa/common/7za.md @@ -0,0 +1,37 @@ +# 7za + +> بایگانی کننده فایل با ضریب فشرده سازی بالا. +> مشابه `7z` با قابلیت پشتیبانی از انواع فایل کمتر ولی قابلیت پشتیبانی از چندین سیستم عامل. +> اطلاعات بیشتر: . + +- بایگانی یک فایل یا یک پوشه : + +`7za a {{مسیر/به/بایگانی.7z}} {{مسیر/به/فایل_یا_پوشه}}` + +- رمزگذاری یک بایگانی (با نام فایل ها) موجود : + +`7za a {{مسیر/به/رمزگذاری_شده.7z}} -p{{گذرواژه}} -mhe={{on}} {{مسیر/به/بایگانی.7z}}` + +- استخراج یک بایگانی با نگهداری ساختار پوشه مبدا : + +`7za x {{مسیر/به/بایگانی.7z}}` + +- استخراج یک بایگانی به یک پوشه معین : + +`7za x {{مسیر/به/بایگانی.7z}} -o{{مسیر/به/خروجی}}` + +- استخراج یک بایگانی به خروجی استاندارد : + +`7za x {{مسیر/به/بایگانی.7z}} -so` + +- بایگانی با نوع فایل مشخص شده : + +`7za a -t{{7z|bzip2|gzip|lzip|tar|...}} {{مسیر/به/بایگانی.7z}} {{مسیر/به/فایل_یا_پوشه}}` + +- فهرست کردن محتویات یک بایگانی : + +`7za l {{مسیر/به/بایگانی.7z}}` + +- فهرست کردن نوع های بایگانی موجود در سیستم عامل : + +`7za i` diff --git a/pages.fa/common/7zr.md b/pages.fa/common/7zr.md new file mode 100644 index 0000000000..568aff7491 --- /dev/null +++ b/pages.fa/common/7zr.md @@ -0,0 +1,33 @@ +# 7zr + +> بایگانی کننده فایل با فشرده سازی بالا. +> مشابه `7z` منحصر به پشتیبانی از فایل های `.7z`. +> اطلاعات بیشتر: . + +- بایگانی کردن یک فایل یا پوشه : + +`7zr a {{مسیر/به/بایگانی.7z}} {{مسیر/به/فایل_یا_پوشه}}` + +- رمزگذاری یک بایگانی (همراه با نام فایل ها) موجود : + +`7zr a {{مسیر/به/فایل_رمزگذاری_شده.7z}} -p{{گذرواژه}} -mhe={{on}} {{مسیر/به/بایگانی.7z}}` + +- استخراج یک بایگانی با نگهداری ساختار پوشه اصلی : + +`7zr x {{مسیر/به/بایگانی.7z}}` + +- استخراج یک بایگانی به پوشه معین : + +`7zr x {{مسیر/به/بایگانی.7z}} -o{{مسیر/به/خروجی}}` + +- استخراج یک بایگانی به خروجی استاندارد `stdout` : + +`7zr x {{مسیر/به/بایگانی.7z}} -so` + +- فهرست نمودن محتویات یک بایگانی : + +`7zr l {{مسیر/به/بایگانی.7z}}` + +- فهرست نمودن انواع بایگانی های موجود : + +`7zr i` diff --git a/pages.fa/common/[.md b/pages.fa/common/[.md new file mode 100644 index 0000000000..219ce5517f --- /dev/null +++ b/pages.fa/common/[.md @@ -0,0 +1,33 @@ +# [ + +> بررسی نوع فایل و مقایسه مقدار ها +> عدد 0 برمیگرداند اگر شرط درست باشد و 1 اگر شرط نادرست باشد +> اطلاعات بیشتر : . + +- بررسی میکند که آیا یک متغییر با رشته معین برابر است یا نابرابر : + +`[ "${{متغییر}}" {{==|!=}} "{{رشته}}" ]` + +- اینکه متغییری برابر/ نابرابر/ بزرگتر از/ کوچکتر از/ برابر یا بزرگتر/ کوچکتر یا برابر با عددی است را بررسی میکند : + +`[ "${{متغییر}}" -{{eq|ne|gt|lt|ge|le}} {{عدد_صحیح}} ]` + +- اینکه متغییر با مقدار معین دارد یا مقدار نا معین دارد را بررسی میکند : + +`[ -n "${{متغییر}}" ]` + +- اینکه متغییری مقدار تهی دارد را بررسی میکند : + +`[ -z "${{متغییر}}" ]` + +- اینکه فایل معینی وجود دارد یا خیر را بررسی میکند : + +`[ -f {{مسیر/به/فایل}} ]` + +- اینکه دایرکتوری معینی وجود دارد یا خیر را بررسی میکند : + +`[ -d {{مسیر/به/پوشه}} ]` + +- اینکه فایل یا دایرکتوری معینی وجود دارد یا خیر را بررسی میکند : + +`[ -e {{مسیر/به/فایل_یا_پوشه}} ]` diff --git a/pages.fa/common/[[.md b/pages.fa/common/[[.md new file mode 100644 index 0000000000..a023b1c9c7 --- /dev/null +++ b/pages.fa/common/[[.md @@ -0,0 +1,37 @@ +# [[ + +> نوع فایل و مقادیر را بررسی میکند. +> عدد 0 برمیگرداند اگر حاصل عبارت شرط درست باشد و 1 اگر نادرست باشد. +> اطلاعات بیشتر: . + +- اینکه متغییری برابر/نابرابر با رشته ای معین است را بررسی میکند : + +`[[ ${{متغییر}} {{==|!=}} "{{رشته}}" ]]` + +- اینکه متغییری از الگوی معین شده پیروی میکند را بررسی میکند : + +`[[ ${{متغییر}} {{==|=~}} {{الگو}} ]]` + +- اینکه متغییری برابر/ نابرابر/ بزرگتر از/ کوچکتر از/ برابر یا بزرگتر/ کوچکتر یا برابر با عددی است را بررسی میکند : + +`[[ ${{متغییر}} -{{eq|ne|gt|lt|ge|le}} {{عدد_صحیح}} ]]` + +- اینکه متغییری مقدار غیرتهی دارد را بررسی میکند : + +`[[ -n ${{متغییر}} ]]` + +- اینکه متغییری مقدار تهی دارد را بررسی میکند : + +`[[ -z ${{متغییر}} ]]` + +- وجود فایلی را بررسی میکند : + +`[[ -f {{مسیر/به/فایل}} ]]` + +- وجود پوشه ای را بررسی میکند : + +`[[ -d {{مسیر/به/پوشه}} ]]` + +- وجود پوشه یا فایلی را بررسی میکند : + +`[[ -e {{مسیر/به/فایل_یا_پوشه}} ]]` diff --git a/pages.fa/common/chmod.md b/pages.fa/common/chmod.md new file mode 100644 index 0000000000..faa2078c96 --- /dev/null +++ b/pages.fa/common/chmod.md @@ -0,0 +1,36 @@ +# chmod + +> تغییر مجوز(ها)ی دسترسی به یک فایل یا پوشه +> اطلاعات بیشتر : . + +- به مالک فایل دسترسی اجرا میدهد + +`chmod u+x {{مسیر/به/فایل}}` + +- به کابر مالک دسترسی خواند|نوشتن یک فایل|پوشه را میدهد + +`chmod u+rw {{مسیر/به/فایل_یا_پوشه}}` + +- دسترسی اجرا را از گروه صلب میکند + +`chmod g-x {{مسیر/به/فایل}}` + +- به تمامی کاربرها دسترسی خواندن و اجرا میدهد + +`chmod a+rx {{مسیر/به/فایل}}` + +- به دیگران(کاربرانی که صاحب فایل نیستند) دسترسی های گروه را میدهد + +`chmod o=g {{مسیر/به/فایل}}` + +- به همگان همه دسترسی(ها) را میدهد + +`chmod o= {{مسیر/به/فایل}}` + +- به صورت بازگشتی به گروه و دیگران دسترسی نوشتن میدهد + +`chmod -R g+w,o+w {{مسیر/به/پوشه}}` + +- به صورت بازگشتی در پوشه و زیرپوشه(ها) دسترسی اجرا و خواندن فایل(ها) را میدهد + +`chmod -R a+rX {{مسیر/به/پوشه}}` diff --git a/pages.fa/common/chown.md b/pages.fa/common/chown.md new file mode 100644 index 0000000000..83ed6b486e --- /dev/null +++ b/pages.fa/common/chown.md @@ -0,0 +1,24 @@ +# chown + +> مالک فایل یا پوشه را تغییر میدهد +> اطلاعات بیشتر: . + +- تغییر مالک یه فایل یا پوشه: + +`chown {{کاربر}} {{مسیر/به/فایل_یا_پوشه}}` + +- تغییر کاربر و گروه مالک فایل + +`chown {{کاربر}}:{{گروه}} {{مسیر/به/فایل_یا_پوشه}}` + +- تغییر بازگشتی مالک یه پوشه و محتویات آن + +`chown -R {{کاربر}} {{مسیر/به/پوشه}}` + +- تغییر مالک یک فایل میانبر(به فایل دیگری اشاره میکند) : + +`chown -h {{کاربر}} {{مسیر/به/فایل_میانبر}}` + +- تغییر مالک یک فایل/پوشه برای همسان شدن با فایل مرجع + +`chown --reference={{مسیر/به/فایل_مرجع}} {{مسیر/به/فایل_یا_پوشه}}` diff --git a/pages.fa/common/clear.md b/pages.fa/common/clear.md new file mode 100644 index 0000000000..17df52b07b --- /dev/null +++ b/pages.fa/common/clear.md @@ -0,0 +1,20 @@ +# clear + +> پاک کردن صفحه ترمینال +> اطلاعات بیشتر: . + +- پاک کردن صفحه (معادل فشردن کلیدهای کنترل+ال در پوسته بش) : + +`clear` + +- پاک کردن صفحه ترمینال با نگاه داشتن حافظه : + +`clear -x` + +- مشخص نمودن نوع ترمینال برای پاکسازی (مقدار پیشفرض در متغییر عمومی `Term`) + +`clear -T {{نوع_ترمینال}}` + +- نمایش نسخه `ncurses` استفاده شده در `clear` : + +`clear -V` diff --git a/pages.fa/common/cmp.md b/pages.fa/common/cmp.md new file mode 100644 index 0000000000..ce3384677e --- /dev/null +++ b/pages.fa/common/cmp.md @@ -0,0 +1,20 @@ +# cmp + +> مقایسه بایت به بایت دو فایل. +> اطلاعات بیشتر: . + +- نمایش کارکتر و خطی که اولین تفاوت دو فایل در آن یافت شد + +`cmp {{مسیر/به/فایل_اول}} {{مسیر/به/فایل_دوم}}` + +- نمایش اطلاعات اولین تفاوت پیدا شده: کاراکتر، شماره خط، بایت ها، و مقادیر آنها + +`cmp --print-bytes {{مسیر/به/فایل_اول}} {{مسیر/به/فایل_دوم}}` + +- نمایش شماره بایتها و مقادیر تمامی تفاوت ها + +`cmp --verbose {{مسیر/به/فایل_اول}} {{مسیر/به/فایل_دوم}}` + +- مقایسه فایلها در حالت خاموش، تنها مقدار خروجی برنامه در ترمینال در دسترس است + +`cmp --quiet {{مسیر/به/فایل_اول}} {{مسیر/به/فایل_دوم}}` diff --git a/pages.fa/common/dd.md b/pages.fa/common/dd.md new file mode 100644 index 0000000000..59f20061f0 --- /dev/null +++ b/pages.fa/common/dd.md @@ -0,0 +1,28 @@ +# dd + +> تبدیل و کپی یک فایل. +> بیشتر اطلاعات: . + +- یک حافظه قابل حمل با قابلیت بوت شدن میسازد، برای مثال `archlinux-xxx.iso` : + +`dd if={{مسیر/فایل}} of=/dev/{{نام/دستگاه/قابل/حمل}}` + +- محتویات یک درایو را در مکانی دیگر با بلوک های 4 مگابایتی کپی و همچنین از خطاها صرف نظر میکند + +`dd if=/dev/{{حافظه/منبع}} of=/dev/{{درایو/مقصد}} bs={{4194304}} conv={{noerror}}` + +- یک فایل ۱۰۰ بایتی تصادفی با استفاده از درایور تصادفی هسته بسازید: + +`dd if=/dev/urandom of={{مسیر/به/فایلی/تصادفی}} bs={{100}} count={{1}}` + +- عملکرد نوشتن دیسک را بسنجید: + +`dd if=/dev/zero of={{مسیر/فایل_1_گیگابایتی}} bs={{1024}} count={{1000000}}` + +- یک پشتیبان از سیستم را در یک فایل IMG میسازد : + +`dd if={{/dev/drive_device}} of={{مسیر/به/فایل.img}}` + +- یک درایو را از یک فایل IMG بازیابی کنید: + +`dd if={{مسیر/به/فایل.img}} of={{/dev/drive_device}}` diff --git a/pages.fa/common/df.md b/pages.fa/common/df.md new file mode 100644 index 0000000000..b890a913f3 --- /dev/null +++ b/pages.fa/common/df.md @@ -0,0 +1,24 @@ +# df + +> یک نمای کلی از میزان استفاده فضای دیسک و سیستم فایل ارائه می‌دهد. +> اطلاعات بیشتر: . + +- نمایش تمامی سیستم‌های فایل و فضای دیسک آن‌ها : + +`df` + +- نمایش تمامی سیستم‌های فایل و استفاده از حالت خوانا برای فضای دیسک آن‌ها : + +`df -h` + +- نمایش سیستم‌فایل و فضای دیسک آن شامل فایل یا دایرکتوری داده شده : + +`df {{مسیر/به/فایل_یا_پوشه}}` + +- نمایش آمار تعداد درایوهای آزاد : + +`df -i` + +- نمایش سیستم‌های فایل با حذف انواع مشخص شده : + +`df -x {{squashfs}} -x {{tmpfs}}` diff --git a/pages.fa/common/diff.md b/pages.fa/common/diff.md new file mode 100644 index 0000000000..42eebc74a4 --- /dev/null +++ b/pages.fa/common/diff.md @@ -0,0 +1,32 @@ +# diff + +> مقایسه فایل(ها) و پوشه(ها). +> اطلاعات بیشتر: . + +- مقایسه فایل ها (فهرست تغییرات فایل های قدیمی به جدید) : + +`diff {{فایل قدیمی}} {{فایل_جدید}}` + +- مقایسه فایل ها، با صرف نظر از فاصله های خالی + +`diff --ignore-all-space {{فایل قدیمی}} {{فایل_جدید}}` + +- مقایسه فایل ها، با نمایش تفاوت ها در کنار هم + +`diff --side-by-side {{فایل قدیمی}} {{فایل_جدید}}` + +- مقایسه فایل ها، به نمایش تفاوت ها به صورت یکپارچه (همانند `git diff`) : + +`diff --unified {{فایل قدیمی}} {{فایل_جدید}}` + +- مقایسه بازگشتی پوشه ها (نمایش اسامی متفاوت فایل ها و پوشه ها و همچنین تغییرات فایل ها) + +`diff --recursive {{پوشه_قدیمی}} {{پوشه_جدید}}` + +- نمایش نام فایل های متفاوت مقایسه شده + +`diff --recursive --brief {{پوشه_قدیمی}} {{پوشه_جدید}}` + +- از تفاوت دو فایل متنی یک بروزرسانی میسازد، فایل های ناموجود را خالی فرض میکند : + +`diff --text --unified --new-file {{فایل قدیمی}} {{فایل_جدید}} > {{تفاوت.patch}}` diff --git a/pages.fa/common/echo.md b/pages.fa/common/echo.md new file mode 100644 index 0000000000..801c34070c --- /dev/null +++ b/pages.fa/common/echo.md @@ -0,0 +1,28 @@ +# echo + +> چاپ ورودی داده شده. +> اطلاعات بیشتر: . + +- چاپ پیام ورودی. نکته : استفاده از علامت نقل قول انتخابی است + +`echo "{{سلام دنیا}}"` + +- چاپ یک پیام حاوی متغییرهای سیستمی + +`echo "{{مسیر سیستم من $PATH است.}}"` + +- چاپ یک پیام بدون انتقال به خط جدید + +`echo -n "{{سلام دنیا}}"` + +- افزودن یک پیام به انتهای یک فایل + +`echo "{{سلام دنیا}}" >> {{فایل.متنی}}` + +- فعال کردن تفسیر کاراکترهای خاص، برای مثال tab + +`echo -e "{{ستون 1\tستون 2}}"` + +- چاپ وضعیت خروج آخرین دستور اجرا شده (نکته: معادل های این دستور در ویندور به ترتیب echo %errorlevel% و $lastexitcode هستند.) : + +`echo $?` diff --git a/pages.fa/common/export.md b/pages.fa/common/export.md new file mode 100644 index 0000000000..5bc5ba3282 --- /dev/null +++ b/pages.fa/common/export.md @@ -0,0 +1,20 @@ +# export + +> دستور تغییر متغییرهای محلی سیستم موجود برای پروسه های جدید +> اطلاعات بیشتر: . + +- ایجاد و تعیین مقدار یک متغییر جدید + +`export {{متغییر}}={{مقدار}}` + +- حذف یک متغییر سیستمی + +`export -n {{متغییر}}` + +- افزودن یک تابع شل به متغییر سیستمی + +`export -f {{نام تابع}}` + +- افزودن یک مسیر به متغییر $PATH + +`export PATH=$PATH:{{مسیر/برای/افزودن}}` diff --git a/pages.fa/common/grep.md b/pages.fa/common/grep.md new file mode 100644 index 0000000000..c62b19bda1 --- /dev/null +++ b/pages.fa/common/grep.md @@ -0,0 +1,36 @@ +# grep + +> یافتن الگو در فایل ها به کمک عبارات با قاعده +> اطلاعات بیشتر : . + +- جستجو یک الگو در یک فایل : + +`grep "{{الگو_جستجو}}" {{مسیر/به/فایل}}` + +- جستجو یک عبارت خاص (معادل مقایسه رشته ای) : + +`grep --fixed-strings "{{رشته_مورد_نظر}}" {{مسیر/به/فایل}}` + +- جستجو بازگشتی یک الگو در تمامی فایل های یک پوشه، نمایش تمامی خطوط منطبق، فایل های باینری را رد میکند + +`grep --recursive --line-number --binary-files={{without-match}} "{{الگو_جستجو}}" {{مسیر/به/پوشه}}` + +- استفاده از عبارات با قاعده توسعه یافته (با پشتیبانی از `?`، `+`، `{}`، `()` و `|`)، در حالت حساس به بزرگی کوچکی کاراکتر ها : + +`grep --extended-regexp --ignore-case "{{الگو_جستجو}}" {{مسیر/به/فایل}}` + +- چاپ 3 خط از قبل و بعد محل انطباق + +`grep --{{context|before-context|after-context}}={{3}} "{{الگو_جستجو}}" {{مسیر/به/فایل}}` + +- چاپ نام فایل و شماره خط برای هر انطباق با رنگبندی : + +`grep --with-filename --line-number --color=always "{{الگو_جستجو}}" {{مسیر/به/فایل}}` + +- جستجوی خطوط منطبق، چاپ متن منطبق : + +`grep --only-matching "{{الگو_جستجو}}" {{مسیر/به/فایل}}` + +- ورودی استاندارد (stdin) رو برای الگوهایی که منطبق نیستند جستجو میکند : + +`cat {{مسیر/به/فایل}} | grep --invert-match "{{الگوی_جستجو}}"` diff --git a/pages.fa/common/head.md b/pages.fa/common/head.md new file mode 100644 index 0000000000..c2353f7cad --- /dev/null +++ b/pages.fa/common/head.md @@ -0,0 +1,8 @@ +# head + +> نمایش محتوای ابتدایی یک فایل +> اطلاعات بیشتر: . + +- نمایش چند خط اول یک فایل + +`head -n {{تعداد}} {{مسیر/فایل}}` diff --git a/pages.fa/common/ifconfig.md b/pages.fa/common/ifconfig.md new file mode 100644 index 0000000000..5b995308a4 --- /dev/null +++ b/pages.fa/common/ifconfig.md @@ -0,0 +1,24 @@ +# ifconfig + +> تنظیم کننده رابط های شبکه. +> اطلاعات بیشتر: . + +- نمایش تنظیمات شبکه یک کارت شبکه : + +`ifconfig eth0` + +- نمایش جزئیات تمامی رابط ها، مشمول رابط های غیرفعال میشود : + +`ifconfig -a` + +- غیرفعال کردن رابط eth0 : + +`ifconfig eth0 down` + +- فعال کردن رابط eth0 : + +`ifconfig eth0 up` + +- اختصاص آدرس ای پی به رابط eth0 : + +`ifconfig eth0 {{آدرس_ای_پی}}` diff --git a/pages.fa/linux/apt-get.md b/pages.fa/linux/apt-get.md new file mode 100644 index 0000000000..73d2f8c5f8 --- /dev/null +++ b/pages.fa/linux/apt-get.md @@ -0,0 +1,37 @@ +# apt-get + +> ابزار مدیریت بسته‌های دبیان و اوبونتو. +> جستجو در بسته‌ها با استفاده از `apt-cache`. +> اطلاعات بیشتر: . + +- به‌روز‌رسانی لیست بسته‌ها و نسخه‌های موجود (توصیه می‌شود که این دستور را قبل از دیگر دستورات `apt-get` اجرا کنید): + +`apt-get update` + +- نصب یک بسته یا به روزرسانی آن به آخرین نسخه موجود: + +`apt-get install {{بسته}}` + +- حذف یک بسته: + +`apt-get remove {{بسته}}` + +- حذف یک بسته و فایل‌های پیکربندی آن: + +`apt-get purge {{بسته}}` + +- ارتقاء تمامی بسته‌های نصب شده به آخرین نسخه‌های موجود: + +`apt-get upgrade` + +- پاکسازی مخزن محلی - حذف فایل‌های بسته (`.deb`) از دانلودهای متوقف شده که دیگر قابل دانلود نیستند: + +`apt-get autoclean` + +- حذف تمام بسته‌هایی که دیگر نیازی به آن‌ها نیست: + +`apt-get autoremove` + +- ارتقاء بسته‌های نصب شده (مانند `upgrade`) اما با حذف بسته‌های قدیمی و نصب بسته‌های اضافی برای برآورده کردن وابستگی‌های جدید: + +`apt-get dist-upgrade` diff --git a/pages.fr/android/bugreport.md b/pages.fr/android/bugreport.md index 746cc662be..859c34d3ca 100644 --- a/pages.fr/android/bugreport.md +++ b/pages.fr/android/bugreport.md @@ -1,8 +1,8 @@ # bugreport > Affiche un rapport de bug Android. -> Cette commande peut être utilisé uniquement depuis `adb shell`. -> Plus d'informations : . +> Cette commande peut être utilisée uniquement depuis `adb shell`. +> Plus d'informations : . - Affiche un rapport de bug d'un appareil Android : diff --git a/pages.fr/android/bugreportz.md b/pages.fr/android/bugreportz.md index 7db27267c6..a3bd759111 100644 --- a/pages.fr/android/bugreportz.md +++ b/pages.fr/android/bugreportz.md @@ -1,8 +1,8 @@ # bugreportz > Génère une archive d'un rapport de bug Android. -> Cette commande peut être utilisé uniquement depuis `adb shell`. -> Plus d'informations : . +> Cette commande peut être utilisée uniquement depuis `adb shell`. +> Plus d'informations : . - Génère une archive à partir d'un rapport de bug d'un appareil Android : diff --git a/pages.fr/android/cmd.md b/pages.fr/android/cmd.md index 5b8ab12b7e..7dae56efc7 100644 --- a/pages.fr/android/cmd.md +++ b/pages.fr/android/cmd.md @@ -1,7 +1,7 @@ # cmd > Manager de service Android. -> Plus d'informations : . +> Plus d'informations : . - Liste tous les services en cours d'exécution : diff --git a/pages.fr/android/dumpsys.md b/pages.fr/android/dumpsys.md index 8a09a73247..3eefc01a3c 100644 --- a/pages.fr/android/dumpsys.md +++ b/pages.fr/android/dumpsys.md @@ -24,6 +24,6 @@ `dumpsys --skip {{service}}` -- Spécifie un temps limite en secondes (10s par défault) : +- Spécifie un temps limite en secondes (10s par défaut) : `dumpsys -t {{seconds}}` diff --git a/pages.fr/android/input.md b/pages.fr/android/input.md index 9ea812811d..1dfce84b4d 100644 --- a/pages.fr/android/input.md +++ b/pages.fr/android/input.md @@ -1,8 +1,7 @@ # input -> Send event codes or touchscreen gestures to an Android device. > Envoie à un appareil Android des codes événements ou des gestes d'écran tactile. -> Cette commande peut être utilisé uniquement depuis `adb shell`. +> Cette commande peut être utilisée uniquement depuis `adb shell`. > Plus d'informations : . - Envoie un code événement (un seul caractère) à un appareil Android : diff --git a/pages.fr/android/pm.md b/pages.fr/android/pm.md index 8e624e4498..3b8fa03fad 100644 --- a/pages.fr/android/pm.md +++ b/pages.fr/android/pm.md @@ -7,7 +7,7 @@ `pm list packages` -- Affiche une liste de toutes les applications système instalées : +- Affiche une liste de toutes les applications système installées : `pm list packages -s` diff --git a/pages.fr/android/screencap.md b/pages.fr/android/screencap.md index efc455a9e2..d60a113ac1 100644 --- a/pages.fr/android/screencap.md +++ b/pages.fr/android/screencap.md @@ -2,7 +2,7 @@ > Prenez une capture d'écran d'un écran mobile. > Cette commande ne peut être utilisée que via `adb shell`. -> Plus d'information : . +> Plus d'informations : . - Prendre une capture d'écran : diff --git a/pages.fr/android/wm.md b/pages.fr/android/wm.md index bef29d02d3..0ac166bc5a 100644 --- a/pages.fr/android/wm.md +++ b/pages.fr/android/wm.md @@ -1,7 +1,7 @@ # wm > Affiche les informations de l'écran d'un appareil Android. -> Cette commande peut être utilisé uniquement depuis `adb shell`. +> Cette commande peut être utilisée uniquement depuis `adb shell`. > Plus d'informations : . - Affiche la taille physique de l'écran d'un appareil Android : diff --git a/pages.fr/common/2to3.md b/pages.fr/common/2to3.md index 99efc470f4..3249664ff8 100644 --- a/pages.fr/common/2to3.md +++ b/pages.fr/common/2to3.md @@ -1,6 +1,6 @@ # 2to3 -> Conversion automatisé de code python 2 vers 3. +> Conversion automatisé de code Python 2 vers 3. > Plus d'informations : . - Afficher les changements qui seront effectués sans les effectuer (coup d'essai) : diff --git a/pages.fr/common/7z.md b/pages.fr/common/7z.md index 80c15d3335..d3432c7857 100644 --- a/pages.fr/common/7z.md +++ b/pages.fr/common/7z.md @@ -1,7 +1,7 @@ # 7z > Un archiveur de fichiers avec un haut taux de compression. -> Plus d'informations : . +> Plus d'informations : . - Compresser un fichier ou un dossier : diff --git a/pages.fr/common/7za.md b/pages.fr/common/7za.md index 10a4315b14..bf2dced072 100644 --- a/pages.fr/common/7za.md +++ b/pages.fr/common/7za.md @@ -2,7 +2,7 @@ > Un archiveur de fichiers avec un haut taux de compression. > Similaire à `7z` sauf qu'il supporte moins de type de fichiers mais il est multi-plateforme. -> Plus d'informations : . +> Plus d'informations : . - Compresse un fichier ou un dossier : diff --git a/pages.fr/common/7zr.md b/pages.fr/common/7zr.md index fd535cd0c4..4052799de9 100644 --- a/pages.fr/common/7zr.md +++ b/pages.fr/common/7zr.md @@ -2,7 +2,7 @@ > Un archiveur de fichiers avec un haut taux de compression. > Similaire à `7z` sauf qu'il supporte que les fichiers `.7z`. -> Plus d'informations : . +> Plus d'informations : . - Compresse un fichier ou un dossier : @@ -10,7 +10,7 @@ - Chiffre une archive existante (en incluant les en-têtes) : -`7zr a {{chemin/vers/archive_chiffree.7z}} -p{{password}} -mhe=on {{chemin/vers/archive.7z}}` +`7zr a {{chemin/vers/archive_chiffree.7z}} -p{{password}} -mhe={{on}} {{chemin/vers/archive.7z}}` - Extrait une archive en conservant l'arborescence des fichiers : diff --git a/pages.fr/common/age.md b/pages.fr/common/age.md index 5574ae01e6..38467e533f 100644 --- a/pages.fr/common/age.md +++ b/pages.fr/common/age.md @@ -7,7 +7,7 @@ `age --passphrase --output {{chemin/vers/fichier_crypté}} {{chemin/vers/fichier_non_crypté}}` -- Générer une paire de clés, en enregistrant la clé privée dans un fichier non crypté et en imprimant la clé publique sur stdout: +- Générer une paire de clés, en enregistrant la clé privée dans un fichier non crypté et en imprimant la clé publique sur `stdout`: `age-keygen --output {{chemin/vers/fichier}}` diff --git a/pages.fr/common/amass.md b/pages.fr/common/amass.md index 2f703b15b3..129443663c 100644 --- a/pages.fr/common/amass.md +++ b/pages.fr/common/amass.md @@ -4,9 +4,9 @@ > Certaines commandes comme `amass db` ont leur propre documentation. > Plus d'informations : . -- Affiche la version de Amass : +- Exécute une sous-commande Amass : -`amass -version` +`amass {{sous_commande}}` - Affiche l'aide général : @@ -16,6 +16,6 @@ `amass -help {{sous_commande}}` -- Exécute une sous-commande Amass : +- Affiche la version : -`amass {{sous_commande}}` +`amass -version` diff --git a/pages.fr/common/apg.md b/pages.fr/common/apg.md index 9ade5bf262..7d25a9f10c 100644 --- a/pages.fr/common/apg.md +++ b/pages.fr/common/apg.md @@ -21,4 +21,4 @@ - Crée un mot de passe qui n'apparaît pas dans le dictionnaire (le fichier de dictionnaire doit être donné) : -`apg -r {{fichier_dictionnaire}}` +`apg -r {{chemin/vers/fichier_dictionnaire}}` diff --git a/pages.fr/common/apm.md b/pages.fr/common/apm.md index 37abebff95..ea3800bee7 100644 --- a/pages.fr/common/apm.md +++ b/pages.fr/common/apm.md @@ -4,7 +4,7 @@ > Voir `atom`. > Plus d'informations : . -- Installe un paquet depuis http://atom.io/packages ou un thème depuis http://atom.io/themes : +- Installe un paquet depuis ou un thème depuis : `apm install {{nom_du_paquet}}` diff --git a/pages.fr/common/arp.md b/pages.fr/common/arp.md index 7b5d7a3f34..6ebb383ce3 100644 --- a/pages.fr/common/arp.md +++ b/pages.fr/common/arp.md @@ -7,10 +7,6 @@ `arp -a` -- Nettoie le cache : - -`sudo arp -a -d` - - Supprime une entrée spécifique : `arp -d {{adresse}}` diff --git a/pages.fr/common/arping.md b/pages.fr/common/arping.md index 93be972465..42d0220922 100644 --- a/pages.fr/common/arping.md +++ b/pages.fr/common/arping.md @@ -20,7 +20,7 @@ `arping -c {{nombre_d_appel}} {{ip_hôte}}` -- Diffuse les paquets de requête ARP pour mettre à hour les caches ARP voisin : +- Diffuse les paquets de requête ARP pour mettre à jour les caches ARP voisin : `arping -U {{ip_à_diffuser}}` diff --git a/pages.fr/common/asciinema.md b/pages.fr/common/asciinema.md index a0b6d933e4..410af2ccc9 100644 --- a/pages.fr/common/asciinema.md +++ b/pages.fr/common/asciinema.md @@ -1,7 +1,7 @@ # asciinema > Enregistre et rejoue les sessions de terminal, et également partageable sur asciinema.org. -> Plus d'informations : . +> Plus d'informations : . - Associe l’installation locale de `asciinema` avec un compte asciinema.org : diff --git a/pages.fr/common/assimp.md b/pages.fr/common/assimp.md index 80db31f380..d51c8bf77e 100644 --- a/pages.fr/common/assimp.md +++ b/pages.fr/common/assimp.md @@ -2,7 +2,7 @@ > Client en ligne de commande pour l'Open Asset Import Library. > Supporte le chargement de plus de 40 formats de fichiers 3D, et exporte vers quelques formats 3D populaire. -> Plus d'informations : . +> Plus d'informations : . - Liste tous les formats d'import supportés : diff --git a/pages.fr/common/astyle.md b/pages.fr/common/astyle.md index 7fcb9d6e92..cd4eff04d7 100644 --- a/pages.fr/common/astyle.md +++ b/pages.fr/common/astyle.md @@ -2,7 +2,7 @@ > Indente, formate, et embelli du code source pour des languages de programmation comme C, C++, C# et Java. > Pendant l'exécution, une copie du fichier original est créé avec un ".orig" suffixé au nom de fichier original. -> Plus d'informations : . +> Plus d'informations : . - Applique le style par défaut de 4 espaces pour l'indentation et pas de changement de formatage : diff --git a/pages.fr/common/autoflake.md b/pages.fr/common/autoflake.md index fe8e566353..c9817786bd 100644 --- a/pages.fr/common/autoflake.md +++ b/pages.fr/common/autoflake.md @@ -5,15 +5,15 @@ - Enlève les variables non-utilisées d'un fichier et affiche la différence : -`autoflake --remove-unused-variables {{fichier.py}}` +`autoflake --remove-unused-variables {{chemin/vers/fichier.py}}` - Enlève les imports non-utilisés de plusieurs fichiers et affiche la différence : -`autoflake --remove-all-unused-imports {{fichier1.py}} {{fichier2.py}} {{fichier3.py}}` +`autoflake --remove-all-unused-imports {{chemin/vers/fichier1.py chemin/vers/fichier2.py ...}}` - Enlève les variables non-utilisées d'un fichier, surcharge ce dernier : -`autoflake --remove-unused-variables --in-place {{fichier.py}}` +`autoflake --remove-unused-variables --in-place {{chemin/vers/fichier.py}}` - Enlève les variables non-utilisées de tous les fichiers d'un dossier de manière récursive, en les surchargeant : diff --git a/pages.fr/common/az.md b/pages.fr/common/az.md index c758400dd9..d4dfba4f0a 100644 --- a/pages.fr/common/az.md +++ b/pages.fr/common/az.md @@ -2,7 +2,7 @@ > La CLI officielle de Microsoft Azure. > Certaines commandes comme `az login` ont leur propre documentation. -> Plus d'informations : . +> Plus d'informations : . - Connexion à Azure : diff --git a/pages.fr/common/b2sum.md b/pages.fr/common/b2sum.md index e1bc2c87d6..e1d3e6e7c7 100644 --- a/pages.fr/common/b2sum.md +++ b/pages.fr/common/b2sum.md @@ -11,7 +11,7 @@ `b2sum {{chemin/vers/fichier1}} {{chemin/vers/fichier2}}` -- Calcule la somme de contrôle BLAKE2 depuis stdin : +- Calcule la somme de contrôle BLAKE2 depuis `stdin` : `{{commande}} | b2sum` diff --git a/pages.fr/common/base32.md b/pages.fr/common/base32.md index daeb853352..6cf9323f03 100644 --- a/pages.fr/common/base32.md +++ b/pages.fr/common/base32.md @@ -11,10 +11,10 @@ `base32 --decode {{fichier}}` -- Encode depuis stdin : +- Encode depuis `stdin` : `{{commande}} | base32` -- Décode depuis stdin : +- Décode depuis `stdin` : `{{commande}} | base32 --decode` diff --git a/pages.fr/common/base64.md b/pages.fr/common/base64.md index ec91e42589..ba2e8df339 100644 --- a/pages.fr/common/base64.md +++ b/pages.fr/common/base64.md @@ -11,10 +11,10 @@ `base64 --decode {{fichier}}` -- Encode depuis stdin : +- Encode depuis `stdin` : `{{une_commande}} | base64` -- Décode depuis stdin : +- Décode depuis `stdin` : `{{une_commande}} | base64 --decode` diff --git a/pages.fr/common/bun.md b/pages.fr/common/bun.md new file mode 100644 index 0000000000..99649554fb --- /dev/null +++ b/pages.fr/common/bun.md @@ -0,0 +1,37 @@ +# bun + +> Moteur d'exécution et boîte à outils JavaScript. +> Comprend un empaqueteur, un exécuteur de tests et un gestionnaire de paquets. +> Plus d'informations : . + +- Exécute un fichier JavaScript ou un script référencé dans `package.json` : + +`bun run {{chemin/vers/fichier|nom_script}}` + +- Exécute les tests unitaires : + +`bun test` + +- Télécharge et installe tous les paquets listés comme dépendances dans `package.json` : + +`bun install` + +- Ajoute une dépendance à `package.json` : + +`bun add {{nom_module}}` + +- Supprime une dépendance de `package.json` : + +`bun remove {{nom_module}}` + +- Crée un nouveau projet Bun dans le répertoire actuel : + +`bun init` + +- Démarre un REPL (shell interactif) : + +`bun repl` + +- Met à jour Bun vers la dernière version : + +`bun upgrade` diff --git a/pages.fr/common/cargo.md b/pages.fr/common/cargo.md index f148f79452..b2a24bd3eb 100644 --- a/pages.fr/common/cargo.md +++ b/pages.fr/common/cargo.md @@ -2,7 +2,7 @@ > Gestion d'un projet Rust et ses dependences (crates). > Certaines sous-commandes comme `cargo build` ont leurs propres documentations. -> Plus d'informations : . +> Plus d'informations : . - Rechercher des crates : diff --git a/pages.fr/common/clamav.md b/pages.fr/common/clamav.md new file mode 100644 index 0000000000..535cd4680d --- /dev/null +++ b/pages.fr/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> Cette commande est un alias de `clamdscan`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr clamdscan` diff --git a/pages.fr/common/cron.md b/pages.fr/common/cron.md new file mode 100644 index 0000000000..38e646d35d --- /dev/null +++ b/pages.fr/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> Cette commande est un alias de `crontab`. + +- Voir la documentation de la commande originale : + +`tldr crontab` diff --git a/pages.fr/common/crystal.md b/pages.fr/common/crystal.md new file mode 100644 index 0000000000..75ff250a25 --- /dev/null +++ b/pages.fr/common/crystal.md @@ -0,0 +1,36 @@ +# crystal + +> Outil de gestion du code source de Crystal. +> Plus d'informations : . + +- Exécute un fichier Crystal : + +`crystal {{chemin/vers/fichier.cr}}` + +- Compile un fichier et toutes ses dépendances en un seul exécutable : + +`crystal build {{chemin/vers/fichier.cr}}` + +- Lit le code source Crystal à partir de la ligne de commande ou de `stdin`, et l'exécute : + +`crystal eval '{{code}}'` + +- Génère la documentation de l'API à partir commentaires dans les fichiers Crystal : + +`crystal docs` + +- Compile et exécute une suite de spécifications Crystal : + +`crystal spec` + +- Démarre un serveur interactif local pour tester le langage : + +`crystal play` + +- Crée un répertoire de projet pour une application Crystal : + +`crystal init app {{nom_application}}` + +- Affiche toutes les options d'aide : + +`crystal help` diff --git a/pages.fr/common/csh.md b/pages.fr/common/csh.md new file mode 100644 index 0000000000..89f76e2243 --- /dev/null +++ b/pages.fr/common/csh.md @@ -0,0 +1,21 @@ +# csh + +> Le shell (interprèteur de commandes) affiche une syntaxe proche de C. +> Voir aussi : `tcsh`. +> Plus d'informations : . + +- Démarrer une session interactive: + +`csh` + +- Démarrer une session interactive sans prendre en compte le fichier de configuration au démarrage: + +`csh -f` + +- Exécuter une commande: + +`csh -c "{{echo 'Exécution de la commande echo par csh'}}"` + +- Exécuter un script: + +`csh {{chemin/vers/script.csh}}` diff --git a/pages.fr/common/docker-compose.md b/pages.fr/common/docker-compose.md index 8cb1b3e839..3eeb586889 100644 --- a/pages.fr/common/docker-compose.md +++ b/pages.fr/common/docker-compose.md @@ -9,7 +9,7 @@ - Crée et démarre en arrière-plan tous les conteneurs décrits dans le fichier `docker-compose.yml` du répertoire courant : -`docker compose up -d` +`docker compose up --detach` - Démarre tous les conteneurs après les avoir recréés si nécessaire : diff --git a/pages.fr/common/docker-cp.md b/pages.fr/common/docker-cp.md index 3150af425d..275dd142c6 100644 --- a/pages.fr/common/docker-cp.md +++ b/pages.fr/common/docker-cp.md @@ -5,11 +5,11 @@ - Copier un fichier ou un répertoire de l'hôte vers un conteneur : -`docker cp {{chemin/vers/le_fichier_ou_le_dossier_de_l_hote} {{nom_du_conteneur}}:{{chemin/vers/le_fichier_ou_le_dossier_de_conteneur}}` +`docker cp {{chemin/vers/le_fichier_ou_le_dossier_de_l_hote}} {{nom_du_conteneur}}:{{chemin/vers/le_fichier_ou_le_dossier_de_conteneur}}` - Copier un fichier ou un répertoire d'un conteneur vers l'hôte : -`docker cp {{nom_du_conteneur}}:{{chemin/vers/le_fichier_ou_le_dossier_de_conteneur}} {{chemin/vers/le_fichier_ou_le_dossier_de_l_hote}` +`docker cp {{nom_du_conteneur}}:{{chemin/vers/le_fichier_ou_le_dossier_de_conteneur}} {{chemin/vers/le_fichier_ou_le_dossier_de_l_hote}}` - Copier un fichier ou un répertoire de l'hôte vers un conteneur, en suivant les liens symboliques (copie les fichiers liés directement, pas les liens symboliques eux-mêmes) : diff --git a/pages.fr/common/docker-exec.md b/pages.fr/common/docker-exec.md index 8105f9ef1b..d85f4b15f7 100644 --- a/pages.fr/common/docker-exec.md +++ b/pages.fr/common/docker-exec.md @@ -15,7 +15,7 @@ `docker exec --interactive -tty --workdir {{chemin/vers/le/répertoire}} {{nom_du_conteneur}} {{commande}}` -- Exécuter une commande en arrière-plan sur un conteneur existant mais garder stdin ouvert : +- Exécuter une commande en arrière-plan sur un conteneur existant mais garder `stdin` ouvert : `docker exec --interactive --detach {{nom_du_conteneur}} {{commande}}` diff --git a/pages.fr/common/docker-machine.md b/pages.fr/common/docker-machine.md index afff9ad239..3be7960980 100644 --- a/pages.fr/common/docker-machine.md +++ b/pages.fr/common/docker-machine.md @@ -1,7 +1,7 @@ # docker-machine > Créer et gérer des machines qui exécutent Docker. -> Plus d'informations: . +> Plus d'informations : . - Lister les machines Docker actuellement en cours d'exécution: diff --git a/pages.fr/common/docker-slim.md b/pages.fr/common/docker-slim.md index 48d8421f01..03b2b1d0e8 100644 --- a/pages.fr/common/docker-slim.md +++ b/pages.fr/common/docker-slim.md @@ -1,7 +1,7 @@ # docker-slim > Analyser et optimiser les images Docker. -> Plus d'informatiosn : . +> Plus d'informations : . - Démarrer DockerSlim en mode interactif : diff --git a/pages.fr/common/docker-start.md b/pages.fr/common/docker-start.md index cfec4c0dc9..6ec2cd5a86 100644 --- a/pages.fr/common/docker-start.md +++ b/pages.fr/common/docker-start.md @@ -11,10 +11,10 @@ `docker start {{conteneur}}` -- Lancer un conteneur, en attachant stdout et stderr et en transférant les signaux : +- Lancer un conteneur, en attachant `stdout` et `stderr` et en transférant les signaux : `docker start --attach {{conteneur}}` - Lancer un ou plusieurs conteneurs séparés par des espaces : -`docker start {{conteneur(s)}}` +`docker start {{conteneur1 conteneur2 ...}}` diff --git a/pages.fr/common/docker-volume.md b/pages.fr/common/docker-volume.md index 1bd9e05d0f..99593d4de8 100644 --- a/pages.fr/common/docker-volume.md +++ b/pages.fr/common/docker-volume.md @@ -1,7 +1,7 @@ # docker volume > Gérer les volumes de Docker. -> Plus d'informations: . +> Plus d'informations : . - Créer un volume : diff --git a/pages.fr/common/drill.md b/pages.fr/common/drill.md new file mode 100644 index 0000000000..9b3dd70d90 --- /dev/null +++ b/pages.fr/common/drill.md @@ -0,0 +1,32 @@ +# drill + +> Effectue diverses requêtes DNS. +> Plus d'informations : . + +- Recherche des adresses IP(s) associées à un nom d'hôte (enregistrements A) : + +`drill {{example.com}}` + +- Recherche le(s) serveur(s) de messagerie associé(s) à un nom de domaine donné (enregistrement MX) : + +`drill mx {{example.com}}` + +- Obtient tous les types d'enregistrements pour un nom de domaine donné : + +`drill any {{example.com}}` + +- Spécifie un autre serveur DNS à interroger : + +`drill {{example.com}} @{{8.8.8.8}}` + +- Effectue une recherche DNS inversée sur une adresse IP (enregistrement PTR) : + +`drill -x {{8.8.8.8}}` + +- Suit la traçabilité DNSSEC des serveurs racines jusqu'à un nom de domaine : + +`drill -TD {{example.com}}` + +- Affiche le(s) enregistrement(s) DNSKEY d'un nom de domaine : + +`drill -s dnskey {{example.com}}` diff --git a/pages.fr/common/fossil-ci.md b/pages.fr/common/fossil-ci.md new file mode 100644 index 0000000000..5a2c4111c0 --- /dev/null +++ b/pages.fr/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> Cette commande est un alias de `fossil-commit`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr fossil-commit` diff --git a/pages.fr/common/fossil-delete.md b/pages.fr/common/fossil-delete.md new file mode 100644 index 0000000000..0cadac863a --- /dev/null +++ b/pages.fr/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> Cette commande est un alias de `fossil rm`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr fossil rm` diff --git a/pages.fr/common/fossil-forget.md b/pages.fr/common/fossil-forget.md new file mode 100644 index 0000000000..531ee14044 --- /dev/null +++ b/pages.fr/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> Cette commande est un alias de `fossil rm`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr fossil rm` diff --git a/pages.fr/common/fossil-new.md b/pages.fr/common/fossil-new.md new file mode 100644 index 0000000000..ae5c7c3bb3 --- /dev/null +++ b/pages.fr/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> Cette commande est un alias de `fossil-init`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr fossil-init` diff --git a/pages.fr/common/gem.md b/pages.fr/common/gem.md new file mode 100644 index 0000000000..96f41cbd5c --- /dev/null +++ b/pages.fr/common/gem.md @@ -0,0 +1,36 @@ +# gem + +> Un gestionnaire de paquets pour le langage de programmation Ruby. +> Plus d'informations : . + +- Recherche des gems distantes et affiche toutes les versions disponibles : + +`gem search {{expression_régulière}} --all` + +- Installe la dernière version d'une gem : + +`gem install {{nom_gem}}` + +- Installe une version spécifique d'une gem : + +`gem install {{nom_gem}} --version {{1.0.0}}` + +- Installe la dernière version correspondante (SemVer) d'une gem : + +`gem install {{nom_gem}} --version '~> {{1.0}}'` + +- Mise à jour d'une gem : + +`gem update {{nom_gem}}` + +- Liste toutes les gems locales : + +`gem list` + +- Désinstalle une gem : + +`gem uninstall {{nom_gem}}` + +- Désinstalle une version spécifique d'une gem : + +`gem uninstall {{nom_gem}} --version {{1.0.0}}` diff --git a/pages.fr/common/gh-cs.md b/pages.fr/common/gh-cs.md new file mode 100644 index 0000000000..b665d48123 --- /dev/null +++ b/pages.fr/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> Cette commande est un alias de `gh-codespace`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr gh-codespace` diff --git a/pages.fr/common/git-annex.md b/pages.fr/common/git-annex.md index b6844ee865..ba5fe92575 100644 --- a/pages.fr/common/git-annex.md +++ b/pages.fr/common/git-annex.md @@ -4,10 +4,6 @@ > Lorsqu'un fichier est annexé, son contenu est déplacé dans un stockage clé-valeur et un lien symbolique est créé qui pointe vers le contenu. > Plus d'informations : . -- Aide : - -`git annex help` - - Initialise le dépôt : `git annex init` @@ -27,3 +23,7 @@ - Récupère un fichier ou un répertoire : `git annex get {{chemin/vers/fichier_ou_repertoire}}` + +- Affiche l'aide : + +`git annex help` diff --git a/pages.fr/common/git-check-ignore.md b/pages.fr/common/git-check-ignore.md index 69b71d8201..e23bd8841e 100644 --- a/pages.fr/common/git-check-ignore.md +++ b/pages.fr/common/git-check-ignore.md @@ -11,7 +11,7 @@ `git check-ignore {{chemin/vers/fichier}} {{chemin/vers/répertoire}}` -- Utilisez des chemins d'accès, un par ligne, de stdin : +- Utilisez des chemins d'accès, un par ligne, de `stdin` : `git check-ignore --stdin < {{chemin/vers/fichier_annexe}}` diff --git a/pages.fr/common/git-cherry-pick.md b/pages.fr/common/git-cherry-pick.md index 09f69070b1..40088fdb32 100644 --- a/pages.fr/common/git-cherry-pick.md +++ b/pages.fr/common/git-cherry-pick.md @@ -18,4 +18,4 @@ - Appliquer les changements d'un commit à la branche courante sans créer de commit : -`git cherry-pick -n {{commit}}` +`git cherry-pick --no-commit {{commit}}` diff --git a/pages.fr/common/git-subtree.md b/pages.fr/common/git-subtree.md index 5b67946994..6a617017cf 100644 --- a/pages.fr/common/git-subtree.md +++ b/pages.fr/common/git-subtree.md @@ -1,7 +1,7 @@ # git subtree > Outil pour gérer les dépendances de projet en tant que sous-projets. -> Plus d'informations : . +> Plus d'informations : . - Ajout d'un dépôt Git en tant que sous-arbre : diff --git a/pages.fr/common/gnmic-sub.md b/pages.fr/common/gnmic-sub.md new file mode 100644 index 0000000000..b15a9c19e0 --- /dev/null +++ b/pages.fr/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> Cette commande est un alias de `gnmic subscribe`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr gnmic subscribe` diff --git a/pages.fr/common/google-chrome.md b/pages.fr/common/google-chrome.md new file mode 100644 index 0000000000..3fbb02b483 --- /dev/null +++ b/pages.fr/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> Cette commande est un alias de `chromium`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr chromium` diff --git a/pages.fr/common/gulp.md b/pages.fr/common/gulp.md new file mode 100644 index 0000000000..bb5380ebb8 --- /dev/null +++ b/pages.fr/common/gulp.md @@ -0,0 +1,17 @@ +# gulp + +> Système d'exécution de tâches et de construction en continu pour JavaScript. +> Les tâches sont définies dans le fichier `gulpfile.js` à la racine du projet. +> Plus d'informations : . + +- Exécute la tâche par défaut : + +`gulp` + +- Exécute des tâches individuelles : + +`gulp {{tâche}} {{autre_tâche}}` + +- Affiche l'arbre de dépendance des tâches pour le gulpfile chargé : + +`gulp --tasks` diff --git a/pages.fr/common/hashcat.md b/pages.fr/common/hashcat.md new file mode 100644 index 0000000000..9be2eb382d --- /dev/null +++ b/pages.fr/common/hashcat.md @@ -0,0 +1,32 @@ +# hashcat + +> Outil de récupération de mot de passe rapide et avancé. +> Plus d'informations : . + +- Effectue une attaque par force brute (mode 3) avec le masque hashcat par défaut : + +`hashcat --hash-type {{id_type_hash}} --attack-mode {{3}} {{valeur_hash}}` + +- Effectue une attaque par force brute (mode 3) avec un motif connu de 4 chiffres : + +`hashcat --hash-type {{id_type_hash}} --attack-mode {{3}} {{valeur_hash}} "{{?d?d?d?d}}"` + +- Effectue une attaque par force brute (mode 3) en utilisant au plus 8 caractères parmi tous les caractères ASCII imprimables : + +`hashcat --hash-type {{id_type_hash}} --attack-mode {{3}} --increment {{valeur_hash}} "{{?a?a?a?a?a?a?a?a}}"` + +- Effectue une attaque par dictionnaire (mode 0) en utilisant la liste de mots RockYou d'une machine Kali Linux : + +`hashcat --hash-type {{id_type_hash}} --attack-mode {{0}} {{valeur_hash}} {{/usr/share/wordlists/rockyou.txt}}` + +- Effectue une attaque par dictionnaire basée sur des règles (mode 0) en utilisant la liste de mots RockYou modifiée avec des variations de mots de passe courants : + +`hashcat --hash-type {{id_type_hash}} --attack-mode {{0}} --rules-file {{/usr/share/hashcat/rules/best64.rule}} {{valeur_hash}} {{/usr/share/wordlists/rockyou.txt}}` + +- Effectue une attaque combinée (mode 1) en utilisant la concaténation de mots provenant de deux dictionnaires personnalisés différents : + +`hashcat --hash-type {{id_type_hash}} --attack-mode {{1}} {{valeur_hash}} {{/chemin/vers/dictionnaire1.txt}} {{/chemin/vers/dictionnaire2.txt}}` + +- Affiche le résultat d'un hash déjà craqué : + +`hashcat --show {{valeur_hash}}` diff --git a/pages.fr/common/hping.md b/pages.fr/common/hping.md index 9250f34e37..1b5c4c9c73 100644 --- a/pages.fr/common/hping.md +++ b/pages.fr/common/hping.md @@ -1,25 +1,8 @@ # hping -> Outil en ligne de commande permettant d'assembler ou analyser des paquets TCP/IP. -> Inspirer par la commande `ping`. -> Plus d'informations : . +> Cette commande est un alias de `hping3`. +> Plus d'informations : . -- Ping localhost via TCP : +- Voir la documentation de la commande originale : -`hping3 {{localhost}}` - -- Ping une adresse IP, via TCP, sur un port spécifique : - -`hping3 -p {{80}} -S {{192.168.1.1}}` - -- Ping une adresse IP, via UDP, sur le port 80 : - -`hping3 --udp -p {{80}} -S {{192.168.1.1}}` - -- Scanner un ensemble de ports TCP, sur une adresse IP spécifique : - -`hping3 --scan {{80,3000,9000}} -S {{192.168.1.1}}` - -- Effectuer un test de montée en charge sur le port 80 : - -`hping3 --flood -p {{80}} -S {{192.168.1.1}}` +`tldr hping3` diff --git a/pages.fr/common/hx.md b/pages.fr/common/hx.md new file mode 100644 index 0000000000..d00d6d8e93 --- /dev/null +++ b/pages.fr/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> Cette commande est un alias de `helix`. + +- Voir la documentation de la commande originale : + +`tldr helix` diff --git a/pages.fr/common/john.md b/pages.fr/common/john.md new file mode 100644 index 0000000000..c7870f8e4c --- /dev/null +++ b/pages.fr/common/john.md @@ -0,0 +1,36 @@ +# john + +> Outil de cassage de mot de passe. +> Plus d'informations : . + +- Craque les hashs de mots de passe : + +`john {{chemin/vers/hashs.txt}}` + +- Affiche les mots de passe cassés : + +`john --show {{chemin/vers/hashs.txt}}` + +- Affiche les mots de passe cassés des utilisateurs par identifiant d'utilisateur à partir de plusieurs fichiers : + +`john --show --users={{ids_utilisateurs}} {{chemin/vers/hashs*}} {{chemin/vers/autres/hashs*}}` + +- Craque des hashs de mots de passe, à l'aide d'une liste de mots personnalisée : + +`john --wordlist={{chemin/vers/liste_de_mots.txt}} {{chemin/vers/hashs.txt}}` + +- Liste des formats de hachage disponibles : + +`john --list=formats` + +- Craque les hashs de mots de passe, en utilisant un format de hash spécifique : + +`john --format={{md5crypt}} {{chemin/vers/hashs.txt}}` + +- Craque les hashs de mots de passe, en activant les règles d'altération de mots : + +`john --rules {{chemin/vers/hashs.txt}}` + +- Restaure une session de craquage interrompue à partir d'un fichier d'état, par exemple `mon_cassage.rec` : + +`john --restore={{chemin/vers/mon_cassage.rec}}` diff --git a/pages.fr/common/jq.md b/pages.fr/common/jq.md new file mode 100644 index 0000000000..6268d3c6b8 --- /dev/null +++ b/pages.fr/common/jq.md @@ -0,0 +1,32 @@ +# jq + +> Un processeur JSON en ligne de commande qui utilise un langage dédié (DSL). +> Plus d'informations : . + +- Exécute une expression spécifique (affiche une sortie JSON coloré et formaté) : + +`{{cat chemin/vers/fichier.json}} | jq '.'` + +- Exécute un script spécifique : + +`{{cat chemin/vers/fichier.json}} | jq --from-file {{chemin/vers/script.jq}}` + +- Transmet des arguments spécifiques : + +`{{cat chemin/vers/fichier.json}} | jq {{--arg "nom1" "valeur1" --arg "nom2" "valeur2" ...}} '{{. + $ARGS.named}}'` + +- Imprime des clés spécifiques : + +`{{cat chemin/vers/fichier.json}} | jq '{{.clé1, .clé2, ...}}'` + +- Imprime des éléments spécifiques du tableau : + +`{{cat chemin/vers/fichier.json}} | jq '{{.[index1], .[index2], ...}}'` + +- Imprime tous les éléments du tableau/les clés de l'objet : + +`{{cat chemin/vers/fichier.json}} | jq '.[]'` + +- Ajoute/supprime des clés spécifiques : + +`{{cat chemin/vers/fichier.json}} | jq '. {{+|-}} {{{"clé1": "valeur1", "clé2": "valeur2", ...}}}'` diff --git a/pages.fr/common/kafkacat.md b/pages.fr/common/kafkacat.md new file mode 100644 index 0000000000..669f4fd56d --- /dev/null +++ b/pages.fr/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> Cette commande est un alias de `kcat`. + +- Voir la documentation de la commande originale : + +`tldr kcat` diff --git a/pages.fr/common/kill.md b/pages.fr/common/kill.md index f01a379e8a..99fb3f800b 100644 --- a/pages.fr/common/kill.md +++ b/pages.fr/common/kill.md @@ -2,7 +2,7 @@ > Envoie un signal à un processus, généralement pour l'interrompre. > Tous les signaux sauf SIGKILL et SIGSTOP peuvent être interceptés par le processus pour pouvoir se terminer proprement. -> Plus d'informations: . +> Plus d'informations : . - Termine un processus avec le signal SIGTERM (terminaison) par défaut : diff --git a/pages.fr/common/lzcat.md b/pages.fr/common/lzcat.md new file mode 100644 index 0000000000..f2734a140e --- /dev/null +++ b/pages.fr/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> Cette commande est un alias de `xz`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr xz` diff --git a/pages.fr/common/lzma.md b/pages.fr/common/lzma.md new file mode 100644 index 0000000000..b2b9b2ad8b --- /dev/null +++ b/pages.fr/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> Cette commande est un alias de `xz`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr xz` diff --git a/pages.fr/common/mc.md b/pages.fr/common/mc.md index 4a3f03a948..d58ba9e286 100644 --- a/pages.fr/common/mc.md +++ b/pages.fr/common/mc.md @@ -4,10 +4,10 @@ > La navigation dans les répertoires se fait à l'aide des touches directionnelles ou la souris, ou bien en tapant des commandes dans la console. > Plus d'informations : . -- Démarre `mc` : +- Démarre Midnight Commander : `mc` -- Démarre `mc` en mode noir et blanc : +- Démarre Midnight Commander en mode noir et blanc : `mc -b` diff --git a/pages.fr/common/nm-classic.md b/pages.fr/common/nm-classic.md new file mode 100644 index 0000000000..f4b9747b53 --- /dev/null +++ b/pages.fr/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> Cette commande est un alias de `nm`. + +- Voir la documentation de la commande originale : + +`tldr nm` diff --git a/pages.fr/common/ntl.md b/pages.fr/common/ntl.md new file mode 100644 index 0000000000..74aae28d71 --- /dev/null +++ b/pages.fr/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> Cette commande est un alias de `netlify`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr netlify` diff --git a/pages.fr/common/perl.md b/pages.fr/common/perl.md index e68c9d47cc..01b21083da 100644 --- a/pages.fr/common/perl.md +++ b/pages.fr/common/perl.md @@ -31,6 +31,6 @@ `perl -p0e 's/{{recherche}}/{{remplacement}}/g' {{fichier_entrée}} > {{fichier_sortie}}` -- Lancer une expression régulière (RegEx) sur stdin, en affichant le premier groupe capturé pour chaque ligne : +- Lancer une expression régulière (RegEx) sur `stdin`, en affichant le premier groupe capturé pour chaque ligne : `cat {{fichier_entrée}} | perl -nle 'if (/{{regex}}/) { print "$1"; last;}'` diff --git a/pages.fr/common/ptpython3.md b/pages.fr/common/ptpython3.md new file mode 100644 index 0000000000..74a7f98ad5 --- /dev/null +++ b/pages.fr/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> Cette commande est un alias de `ptpython`. + +- Voir la documentation de la commande originale : + +`tldr ptpython` diff --git a/pages.fr/common/python3.md b/pages.fr/common/python3.md new file mode 100644 index 0000000000..7e8e0fc3df --- /dev/null +++ b/pages.fr/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> Cette commande est un alias de `python`. + +- Voir la documentation de la commande originale : + +`tldr python` diff --git a/pages.fr/common/rcat.md b/pages.fr/common/rcat.md new file mode 100644 index 0000000000..9638241385 --- /dev/null +++ b/pages.fr/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> Cette commande est un alias de `rc`. + +- Voir la documentation de la commande originale : + +`tldr rc` diff --git a/pages.fr/common/ripgrep.md b/pages.fr/common/ripgrep.md new file mode 100644 index 0000000000..8390b9a60e --- /dev/null +++ b/pages.fr/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> Cette commande est un alias de `rg`. + +- Voir la documentation de la commande originale : + +`tldr rg` diff --git a/pages.fr/common/rsync.md b/pages.fr/common/rsync.md index ea3aa15f91..a0cfae316d 100644 --- a/pages.fr/common/rsync.md +++ b/pages.fr/common/rsync.md @@ -2,7 +2,7 @@ > Transférer des fichiers vers ou depuis un hôte distant (pas entre deux hôtes distants). > Peut transférer un ou plusieurs fichiers correspondant à un motif. -> Plus d'informations : . +> Plus d'informations : . - Transférer un fichier local vers un serveur distant : diff --git a/pages.fr/common/rubocop.md b/pages.fr/common/rubocop.md new file mode 100644 index 0000000000..242b4cdcd1 --- /dev/null +++ b/pages.fr/common/rubocop.md @@ -0,0 +1,32 @@ +# rubocop + +> Lint les fichiers Ruby. +> Plus d'informations : . + +- Vérifie tous les fichiers du répertoire actuel (y compris les sous-répertoires) : + +`rubocop` + +- Vérifie un ou plusieurs fichiers ou répertoires spécifiques : + +`rubocop {{chemin/vers/fichier}} {{chemin/vers/dossier}}` + +- Écrit la sortie dans un fichier : + +`rubocop --out {{chemin/vers/fichier}}` + +- Affiche la liste des cops (règles de lint) : + +`rubocop --show-cops` + +- Exclue un cop : + +`rubocop --except {{cop_1}} {{cop_2}}` + +- Exécute uniquement les cops spécifiés : + +`rubocop --only {{cop_1}} {{cop_2}}` + +- Corrige automatiquement les fichiers (expérimental) : + +`rubocop --auto-correct` diff --git a/pages.fr/common/ruby.md b/pages.fr/common/ruby.md new file mode 100644 index 0000000000..413f1ca0d8 --- /dev/null +++ b/pages.fr/common/ruby.md @@ -0,0 +1,29 @@ +# ruby + +> Interpréteur du langage de programmation Ruby. +> Voir aussi : `gem`, `bundler`, `rake`, `irb`. +> Plus d'informations : . + +- Exécute un script Ruby : + +`ruby {{script.rb}}` + +- Exécute une seule commande Ruby dans la ligne de commande : + +`ruby -e {{commande}}` + +- Vérifie les erreurs de syntaxe d'un script Ruby donné : + +`ruby -c {{script.rb}}` + +- Démarre le serveur HTTP intégré sur le port 8080 dans le répertoire actuel : + +`ruby -run -e httpd` + +- Exécute localement un binaire Ruby sans installer la bibliothèque requise dont il dépend : + +`ruby -I {{chemin/vers/dossier_bibliothèque}} -r {{nom_chargement_bibliothèque}} {{chemin/vers/dossier_bin/nom_bin}}` + +- Affiche la version de Ruby utilisée : + +`ruby -v` diff --git a/pages.fr/common/shards.md b/pages.fr/common/shards.md new file mode 100644 index 0000000000..a6ae7f0696 --- /dev/null +++ b/pages.fr/common/shards.md @@ -0,0 +1,24 @@ +# shards + +> Outil de gestion des dépendances pour le langage Crystal. +> Plus d'informations : . + +- Créé un fichier `shard.yml` squelette : + +`shards init` + +- Installe les dépendances à partir d'un fichier `shard.yml` : + +`shards install` + +- Met à jour toutes les dépendances : + +`shards update` + +- Liste toutes les dépendances installées : + +`shards list` + +- Liste la version d'une dépendance ayant un chemin donné : + +`shards version {{path/to/dependency_directory}}` diff --git a/pages.fr/common/ssh-keygen.md b/pages.fr/common/ssh-keygen.md index c5eeb3f1a3..71ea8e3eb6 100644 --- a/pages.fr/common/ssh-keygen.md +++ b/pages.fr/common/ssh-keygen.md @@ -11,13 +11,13 @@ `ssh-keygen -f {{~/.ssh/fichier}}` -- Génère une clé ed25519, avec 100 passages de fonction de dérivation de clé: +- Génère une clé ed25519, avec 32 passages de fonction de dérivation de clé: -`ssh-keygen -t {{ed25519}} -a {{100}}` +`ssh-keygen -t {{ed25519}} -a {{32}}` - Génère une clé RSA de 4096 bits, avec l'adresse électronique en commentaire: -`ssh-keygen -t {{dsa|ecdsa|ed25519|rsa}} -b {{4096}} -C "{{commentaire|email}}"` +`ssh-keygen -t {{rsa}} -b {{4096}} -C "{{commentaire|email}}"` - Retire les clés d'une machine donnée du fichier `known_hosts` des hôtes connus (utile lorsque un hôte déjà enregistré change de clé) : diff --git a/pages.fr/common/todoman.md b/pages.fr/common/todoman.md new file mode 100644 index 0000000000..20c2c01e5d --- /dev/null +++ b/pages.fr/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> Cette commande est un alias de `todo`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr todo` diff --git a/pages.fr/common/transmission.md b/pages.fr/common/transmission.md new file mode 100644 index 0000000000..c3d4ffebec --- /dev/null +++ b/pages.fr/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> Cette commande est un alias de `transmission-daemon`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr transmission-daemon` diff --git a/pages.fr/common/unlzma.md b/pages.fr/common/unlzma.md new file mode 100644 index 0000000000..339bd77646 --- /dev/null +++ b/pages.fr/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> Cette commande est un alias de `xz`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr xz` diff --git a/pages.fr/common/unxz.md b/pages.fr/common/unxz.md new file mode 100644 index 0000000000..8873a4686d --- /dev/null +++ b/pages.fr/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> Cette commande est un alias de `xz`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr xz` diff --git a/pages.fr/common/xzcat.md b/pages.fr/common/xzcat.md new file mode 100644 index 0000000000..955b21cb4e --- /dev/null +++ b/pages.fr/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> Cette commande est un alias de `xz`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr xz` diff --git a/pages.fr/linux/alien.md b/pages.fr/linux/alien.md index cf702e4dce..97f2bfb7f4 100644 --- a/pages.fr/linux/alien.md +++ b/pages.fr/linux/alien.md @@ -1,7 +1,7 @@ # alien > Convertit différents paquets d'installation vers d'autres formats : -> Plus d'information : . +> Plus d'informations : . - Convertit un fichier d'installation spécifique vers le format Debian (extension `.deb`) : diff --git a/pages.fr/linux/alternatives.md b/pages.fr/linux/alternatives.md new file mode 100644 index 0000000000..b21598c4fd --- /dev/null +++ b/pages.fr/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> Cette commande est un alias de `update-alternatives`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr update-alternatives` diff --git a/pages.fr/linux/ark.md b/pages.fr/linux/ark.md index 9b64c3074e..ff6c54af52 100644 --- a/pages.fr/linux/ark.md +++ b/pages.fr/linux/ark.md @@ -1,16 +1,16 @@ # ark > Outil d'archive de KDE. -> Plus d'informations : . +> Plus d'informations : . - Extrait une archive dans le répertoire courant : -`ark --batch {{archive}}` +`ark --batch {{chemin/vers/archive}}` - Change le répertoire d'extraction : -`ark --batch --destination {{chemin/vers/le/répertoire}} {{archive}}` +`ark --batch --destination {{chemin/vers/dossier}} {{chemin/vers/archive}}` - Crée une archive si elle n'existe pas et y ajouter des fichiers : -`ark --add-to {{archive}} {{fichier1}} {{fichier2}} ...` +`ark --add-to {{chemin/vers/archive}} {{chemin/vers/fichier1 chemin/vers/fichier2 ...}}` diff --git a/pages.fr/linux/ascii.md b/pages.fr/linux/ascii.md index f3926d22a8..306c432278 100644 --- a/pages.fr/linux/ascii.md +++ b/pages.fr/linux/ascii.md @@ -1,7 +1,7 @@ # ascii > Affiche les alias de caractères ASCII. -> Plus d'information : . +> Plus d'informations : . - Affiche les alias ASCII d'un caractère : diff --git a/pages.fr/linux/asciiart.md b/pages.fr/linux/asciiart.md index 790800ff25..3c60db1b5c 100644 --- a/pages.fr/linux/asciiart.md +++ b/pages.fr/linux/asciiart.md @@ -1,7 +1,7 @@ # asciiart > Convertit des images en ASCII. -> Plus d'information : . +> Plus d'informations : . - Lit une image depuis un fichier et l'affiche en ASCII : diff --git a/pages.fr/linux/batcat.md b/pages.fr/linux/batcat.md index ba904ec7d2..ec4f0f1d27 100644 --- a/pages.fr/linux/batcat.md +++ b/pages.fr/linux/batcat.md @@ -1,7 +1,7 @@ # batcat > Cette commande est un alias de `bat`. -> Plus d'information : . +> Plus d'informations : . - Voir la documentation de la commande originale : diff --git a/pages.fr/linux/blight.md b/pages.fr/linux/blight.md index d5ae884761..9b4985473f 100644 --- a/pages.fr/linux/blight.md +++ b/pages.fr/linux/blight.md @@ -1,7 +1,7 @@ # blight > Utilitaire pour changer la luminosité de l'affichage. -> Plus d'information : . +> Plus d'informations : . - Fixe la luminosité de l'affichage à 50% : diff --git a/pages.fr/linux/bspwm.md b/pages.fr/linux/bspwm.md new file mode 100644 index 0000000000..adeeb2bbe2 --- /dev/null +++ b/pages.fr/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> Cette commande est un alias de `bspc`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr bspc` diff --git a/pages.fr/linux/btrfs-device.md b/pages.fr/linux/btrfs-device.md index 677ed2aa7f..f9c65917ca 100644 --- a/pages.fr/linux/btrfs-device.md +++ b/pages.fr/linux/btrfs-device.md @@ -1,7 +1,7 @@ # btrfs device > Gestion des partitions dans un système de fichiers BTRFS. -> Plus d'information : . +> Plus d'informations : . - Ajouter un ou plusieurs périphériques à un système de fichiers btrfs : diff --git a/pages.fr/linux/btrfs-filesystem.md b/pages.fr/linux/btrfs-filesystem.md index d8ac03a142..f7502400a5 100644 --- a/pages.fr/linux/btrfs-filesystem.md +++ b/pages.fr/linux/btrfs-filesystem.md @@ -1,7 +1,7 @@ # btrfs filesystem > Gérer les systèmes de fichiers btrfs. -> More information: . +> Plus d'informations : . - Afficher l'utilisation du système de fichiers (affiche les informations détaillées si executé en tant que `root`) : diff --git a/pages.fr/linux/btrfs-inspect-internal.md b/pages.fr/linux/btrfs-inspect-internal.md index b09ec0a635..2d41e4b619 100644 --- a/pages.fr/linux/btrfs-inspect-internal.md +++ b/pages.fr/linux/btrfs-inspect-internal.md @@ -1,7 +1,7 @@ # btrfs inspect-internal > Recherche des informations internes concernant un système de fichier btrfs. -> Plus d'information : . +> Plus d'informations : . - Afficher les informations du superbloc : diff --git a/pages.fr/linux/btrfs-rescue.md b/pages.fr/linux/btrfs-rescue.md index afb1650f46..b3efcfd3d3 100644 --- a/pages.fr/linux/btrfs-rescue.md +++ b/pages.fr/linux/btrfs-rescue.md @@ -1,7 +1,7 @@ # btrfs rescue > Essayer de récupérer un système de fichiers btrfs endommagé. -> Plus d'informations : . +> Plus d'informations : . - Reconstruire les méta-données du système de fichiers (très lent) : diff --git a/pages.fr/linux/btrfs-restore.md b/pages.fr/linux/btrfs-restore.md index 7dd6a5f6ff..dbff636351 100644 --- a/pages.fr/linux/btrfs-restore.md +++ b/pages.fr/linux/btrfs-restore.md @@ -1,7 +1,7 @@ # btrfs restore > Tenter de récupérer des fichiers depuis un système de fichiers btrfs endommagé. -> Plus d'information : . +> Plus d'informations : . - Restaurer tout les fichiers depuis un système de fichier btrfs vers un répertoire cible indiqué : diff --git a/pages.fr/linux/btrfs-scrub.md b/pages.fr/linux/btrfs-scrub.md index c1c514f7bd..a21fec2fff 100644 --- a/pages.fr/linux/btrfs-scrub.md +++ b/pages.fr/linux/btrfs-scrub.md @@ -2,7 +2,7 @@ > Éxaminer un système de fichiers btrfs pour vérifier l'intégrité de ses données. > Il est recommandé de faire tourner une vérification tous les mois. -> Plus d'informations : . +> Plus d'informations : . - Démarrer un examen : diff --git a/pages.fr/linux/btrfs-subvolume.md b/pages.fr/linux/btrfs-subvolume.md index ad8862a251..5f46d64ae3 100644 --- a/pages.fr/linux/btrfs-subvolume.md +++ b/pages.fr/linux/btrfs-subvolume.md @@ -1,7 +1,7 @@ # btrfs subvolume > Gestion des sous-volumes et instantanés btrfs. -> Plus d'information : . +> Plus d'informations : . - Créer un nouveau sous-volume vide : diff --git a/pages.fr/linux/btrfs-version.md b/pages.fr/linux/btrfs-version.md index f708a21c23..7e04407ddc 100644 --- a/pages.fr/linux/btrfs-version.md +++ b/pages.fr/linux/btrfs-version.md @@ -1,7 +1,7 @@ # btrfs version > Afficher les informations de version des outils btrfs, et accéder aux pages d'aide. -> Plus d'informations : . +> Plus d'informations : . - Afficher les informations de version des outils btrfs : diff --git a/pages.fr/linux/cc.md b/pages.fr/linux/cc.md new file mode 100644 index 0000000000..05d5dbd9d4 --- /dev/null +++ b/pages.fr/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> Cette commande est un alias de `gcc`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr gcc` diff --git a/pages.fr/linux/cgroups.md b/pages.fr/linux/cgroups.md new file mode 100644 index 0000000000..2eacfdecd3 --- /dev/null +++ b/pages.fr/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> Cette commande est un alias de `cgclassify`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr cgclassify` diff --git a/pages.fr/linux/chcon.md b/pages.fr/linux/chcon.md index 01fef87b65..66a7403dc1 100644 --- a/pages.fr/linux/chcon.md +++ b/pages.fr/linux/chcon.md @@ -1,7 +1,7 @@ # chcon > Change le contexte de sécurité de SELinux d'un ou plusieurs fichiers/dossiers. -> Plus d'information : . +> Plus d'informations : . - Affiche le contexte de sécurité d'un fichier : diff --git a/pages.fr/linux/cp.md b/pages.fr/linux/cp.md index 7bc3b43a5c..bf477313a8 100644 --- a/pages.fr/linux/cp.md +++ b/pages.fr/linux/cp.md @@ -1,7 +1,7 @@ # cp > Copier fichiers et répertoires. -> Plus d'information: . +> Plus d'informations : . - Copier un fichier vers un autre emplacement: diff --git a/pages.fr/linux/curlie.md b/pages.fr/linux/curlie.md index ff139d5fcd..5f807e8ffa 100644 --- a/pages.fr/linux/curlie.md +++ b/pages.fr/linux/curlie.md @@ -1,7 +1,7 @@ # curlie > Curlie est un frontend pour curl qui ajoute la facilité d'utilisation de httpie. -> Plus d'information: . +> Plus d'informations : . - Envoie une requête GET : diff --git a/pages.fr/linux/daemonize.md b/pages.fr/linux/daemonize.md index 67fbe0c019..1e0f8d78ab 100644 --- a/pages.fr/linux/daemonize.md +++ b/pages.fr/linux/daemonize.md @@ -1,7 +1,7 @@ # daemonize > Lance une commande (qui ne se "démonise" pas elle-même) comme démon UNIX. -> Plus d'informations : . +> Plus d'informations : . - Lance une commande comme démon : diff --git a/pages.fr/linux/dex.md b/pages.fr/linux/dex.md index 71ae9bccbc..37f391f654 100644 --- a/pages.fr/linux/dex.md +++ b/pages.fr/linux/dex.md @@ -1,7 +1,7 @@ # dex > DesktopEntry Execution est un programme servant à générer et à exécuter des fichiers DesktopEntry de type Application -> Plus d'information : . +> Plus d'informations : . - Exécute tous les programmes dans les dossiers de démarrage automatique : diff --git a/pages.fr/linux/edit.md b/pages.fr/linux/edit.md index df9e6bf461..3eedefc17a 100644 --- a/pages.fr/linux/edit.md +++ b/pages.fr/linux/edit.md @@ -2,7 +2,7 @@ > Un alias à l'action de modification de `run-mailcap`. > Originellement, `run-mailcap` est utilisé afin de modifier des fichiers mime-type. -> Plus d'informations : . +> Plus d'informations : . - L'action de modification peut être utilisée pour voir n'importe quel fichier dans l'explorateur mailcap par défaut : diff --git a/pages.fr/linux/ip-route-show.md b/pages.fr/linux/ip-route-show.md index a4f6190f29..49d41d7cf1 100644 --- a/pages.fr/linux/ip-route-show.md +++ b/pages.fr/linux/ip-route-show.md @@ -1,7 +1,7 @@ # ip route show > Sous commande de gestion de l'affichage des tables de routage. -> Plus d'information : . +> Plus d'informations : . - Affiche la table de routage : diff --git a/pages.fr/linux/megadl.md b/pages.fr/linux/megadl.md new file mode 100644 index 0000000000..5190d07025 --- /dev/null +++ b/pages.fr/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> Cette commande est un alias de `megatools-dl`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr megatools-dl` diff --git a/pages.fr/linux/pacman-database.md b/pages.fr/linux/pacman-database.md index 6bc035c6bf..3d1bf4df71 100644 --- a/pages.fr/linux/pacman-database.md +++ b/pages.fr/linux/pacman-database.md @@ -2,6 +2,7 @@ > Interagis avec les bases de données des paquets Arch Linux. > Modifie des attributs des paquets installés. +> Voir aussi: `pacman`. > Plus d'informations : . - Marque un paquet comme étant installé en tant que dépendance : diff --git a/pages.fr/linux/pacman-deptest.md b/pages.fr/linux/pacman-deptest.md index 917cb81283..4d48c76439 100644 --- a/pages.fr/linux/pacman-deptest.md +++ b/pages.fr/linux/pacman-deptest.md @@ -1,6 +1,7 @@ # pacman --deptest > Vérifie la satisfaction des dépendances et renvoie celles qui ne le sont pas. +> Voir aussi: `pacman`. > Plus d'informations : . - Affiche les noms des paquets qui ne sont pas installés dans la liste : diff --git a/pages.fr/linux/pacman-files.md b/pages.fr/linux/pacman-files.md index d0e7693849..98b36029bc 100644 --- a/pages.fr/linux/pacman-files.md +++ b/pages.fr/linux/pacman-files.md @@ -1,7 +1,7 @@ # pacman --files > Interagis avec les bases de données de fichiers. -> Voir aussi `pkgfile`. +> Voir aussi: `pacman`, `pkgfile`. > Plus d'informations : . - Mets à jour les bases de données des fichiers : diff --git a/pages.fr/linux/pacman-key.md b/pages.fr/linux/pacman-key.md index 04bc4c7d8a..90df0d0ca6 100644 --- a/pages.fr/linux/pacman-key.md +++ b/pages.fr/linux/pacman-key.md @@ -1,6 +1,7 @@ # pacman-key > Script enrobeur pour GnuPG utilisé pour gérer le trousseau de clés de pacman. +> Voir aussi: `pacman`. > Plus d'informations : . - Initialise le trousseau de clés de pacman : diff --git a/pages.fr/linux/pacman-mirrors.md b/pages.fr/linux/pacman-mirrors.md index 4ba491e3fe..ada7661276 100644 --- a/pages.fr/linux/pacman-mirrors.md +++ b/pages.fr/linux/pacman-mirrors.md @@ -2,6 +2,7 @@ > Génère une liste de miroirs pour pacman sur Manjaro Linux. > Tout appel à pacman-mirrors demande de synchroniser les bases de données et de mettre à jour le système en exécutant `sudo pacman -Syyu` en suivant. +> Voir aussi: `pacman`. > Plus d'informations : . - Génère une liste de miroirs avec les réglages par défaut : diff --git a/pages.fr/linux/pacman-query.md b/pages.fr/linux/pacman-query.md index 77f1a175c7..1457b37dc2 100644 --- a/pages.fr/linux/pacman-query.md +++ b/pages.fr/linux/pacman-query.md @@ -1,6 +1,7 @@ # pacman --query > Fais des requêtes dans la base de données des paquets installés. +> Voir aussi: `pacman`. > Plus d'informations : . - Liste les paquets installés et leur version : diff --git a/pages.fr/linux/pacman-remove.md b/pages.fr/linux/pacman-remove.md index 34d5a5d5af..1325e51340 100644 --- a/pages.fr/linux/pacman-remove.md +++ b/pages.fr/linux/pacman-remove.md @@ -1,6 +1,7 @@ # pacman --remove > Supprimes des paquets. +> Voir aussi: `pacman`. > Plus d'informations : . - Supprime un paquet et ses dépendances : diff --git a/pages.fr/linux/pacman-sync.md b/pages.fr/linux/pacman-sync.md index f6897c25a1..6c312e795d 100644 --- a/pages.fr/linux/pacman-sync.md +++ b/pages.fr/linux/pacman-sync.md @@ -1,6 +1,7 @@ # pacman --sync > Synchronise les paquets. +> Voir aussi: `pacman`. > Plus d'informations : . - Installe un nouveau paquet : diff --git a/pages.fr/linux/pacman-upgrade.md b/pages.fr/linux/pacman-upgrade.md index 0ba0fb379a..ecc9d03fdf 100644 --- a/pages.fr/linux/pacman-upgrade.md +++ b/pages.fr/linux/pacman-upgrade.md @@ -1,6 +1,7 @@ # pacman --upgrade > Mets à jour ou ajoute des paquets au système. +> Voir aussi: `pacman`. > Plus d'informations : . - Installe un ou des paquets depuis le système de fichiers : diff --git a/pages.fr/linux/pacman.md b/pages.fr/linux/pacman.md index c0660cad95..1a42d9b78f 100644 --- a/pages.fr/linux/pacman.md +++ b/pages.fr/linux/pacman.md @@ -1,7 +1,7 @@ # pacman > Outil de gestion de paquets sur Arch Linux. -> Certaines commandes comme `pacman sync` ont leur propre documentation. +> Voir aussi: `pacman-database`, `pacman-deptest`, `pacman-files`, `pacman-key`, `pacman-mirrors`, `pacman-query`, `pacman-remove`, `pacman-sync`, `pacman-upgrade`. > Plus d'informations : . - Synchronise et mets à jour tous les paquets : @@ -16,9 +16,9 @@ `sudo pacman -Rs {{nom_paquet}}` -- Recherche dans la base de données des paquets une expression régulière ou mot clé : +- Recherche dans la base de données des paquets contenant un certain fichier : -`pacman -Ss "{{terme_recherche}}"` +`pacman -F "{{nom_fichier}}"` - Liste les paquets installés et leurs versions : diff --git a/pages.fr/linux/reboot.md b/pages.fr/linux/reboot.md index 8b7f4e919c..8c89533dea 100644 --- a/pages.fr/linux/reboot.md +++ b/pages.fr/linux/reboot.md @@ -1,20 +1,24 @@ # reboot -> Réinitialisez le système. +> Redémarre le système. > Plus d'informations : . -- Réinitialisez le système normalement : +- Redémarre le système : `reboot` -- Mettrez le système hors tension : +- Éteint le système (identique à `poweroff`) : `reboot --poweroff` -- Arrêtez toutes les fonctions du CPU : +- Arrête (met fin à tous les processus et arrête le processeur) le système (identique à `halt`) : `reboot --halt` -- Réinitialisez le système maintenant mais propre : +- Redémarre immédiatement sans contacter le gestionnaire du système : `reboot --force` + +- Écrit l'entrée wtmp shutdown sans redémarrer le système : + +`reboot --wtmp-only` diff --git a/pages.fr/linux/resolvectl.md b/pages.fr/linux/resolvectl.md new file mode 100644 index 0000000000..6d47469350 --- /dev/null +++ b/pages.fr/linux/resolvectl.md @@ -0,0 +1,37 @@ +# resolvectl + +> Résout les noms de domaine, les adresses IPV4 et IPv6, les enregistrements de ressources DNS et les services. +> Inspecte et reconfigure le résolveur DNS. +> Plus d'informations : . + +- Affiche les paramètres DNS : + +`resolvectl status` + +- Résout les adresses IPv4 et IPv6 pour un ou plusieurs domaines : + +`resolvectl query {{domaine1 domaine2 ...}}` + +- Récupère le domaine d'une IP spécifiée : + +`resolvectl query {{adresse_ip}}` + +- Vide tous les caches DNS locaux : + +`resolvectl flush-caches` + +- Affiche les statistiques DNS (transactions, cache et verdicts DNSSEC) : + +`resolvectl statistics` + +- Récupère un enregistrement MX du domaine : + +`resolvectl --legend={{no}} --type={{MX}} query {{domaine}}` + +- Résout un enregistrement SRV, par exemple _xmpp-server._tcp gmail.com : + +`resolvectl service _{{service}}._{{protocole}} {{nom}}` + +- Récupère une clé TLS : + +`resolvectl tlsa tcp {{domain}}:443` diff --git a/pages.fr/linux/ubuntu-bug.md b/pages.fr/linux/ubuntu-bug.md new file mode 100644 index 0000000000..ea41c4be19 --- /dev/null +++ b/pages.fr/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> Cette commande est un alias de `apport-bug`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr apport-bug` diff --git a/pages.fr/linux/useradd.md b/pages.fr/linux/useradd.md index 58482e43b3..14be405b4e 100644 --- a/pages.fr/linux/useradd.md +++ b/pages.fr/linux/useradd.md @@ -1,24 +1,33 @@ # useradd > Crée un nouvel utilisateur. +> Voir aussi `users`, `userdel`, `usermod`. > Plus d'informations : . - Crée un nouvel utilisateur : -`useradd {{nom}}` +`sudo useradd {{nom_utilisateur}}` -- Crée un nouvel utilisateur avec un dossier home par défaut : +- Crée un nouvel utilisateur en spéficiant un identifiant numérique particulier : -`useradd --create-home {{nom}}` +`sudo useradd --uid {{identifiant}} {{nom_utilisateur}}` - Crée un nouvel utilisateur avec le shell spécifié : -`useradd --shell {{/chemin/vers/shell}} {{nom}}` +`sudo useradd --shell {{chemin/vers/shell}} {{nom_utilisateur}}` - Crée un nouvel utilisateur qui appartient aux groupes supplémentaires (attention à l'omission des espaces) : -`useradd --groups {{groupe1,groupe2}} {{nom}}` +`sudo useradd --groups {{groupe1,groupe2,...}} {{nom_utilisateur}}` -- Crée un nouvel utilisateur sans un dossier home : +- Crée un nouvel utilisateur avec le répertoire personnel par défaut : -`useradd --no-create-home --system {{nom}}` +`sudo useradd --create-home {{nom_utilisateur}}` + +- Crée un nouvel utilisateur avec un répertoire personnel rempli par les fichiers et répertoires d'un répertoire squelette : + +`sudo useradd --skel {{chemin/vers/repertoire_squelette}} --create-home {{nom_utilisateur}}` + +- Crée un nouvel utilisateur système sans répertoire personnel : + +`sudo useradd --system {{nom_utilisateur}}` diff --git a/pages.fr/linux/userdel.md b/pages.fr/linux/userdel.md index 01a05507c2..129302c941 100644 --- a/pages.fr/linux/userdel.md +++ b/pages.fr/linux/userdel.md @@ -1,8 +1,17 @@ # userdel -> Efface un utilisateur. +> Supprime un compte utilisateur ou supprime un utilisateur d'un groupe. +> Voir aussi `users`, `useradd`, `usermod`. > Plus d'informations : . -- Efface un utilisateur et son dossier home : +- Supprime un utilisateur : -`userdel -r {{nom}}` +`sudo userdel {{nom_utilisateur}}` + +- Supprime un utilisateur dans un autre répertoire racine : + +`sudo userdel --root {{chemin/vers/autre_racine}} {{nom_utilisateur}}` + +- Supprime un utilisateur, son répertoire personnel ainsi que son répertoire d'attente des courriels : + +`sudo userdel --remove {{nom_utilisateur}}` diff --git a/pages.fr/linux/usermod.md b/pages.fr/linux/usermod.md index e7df0f4832..ee26e22ab9 100644 --- a/pages.fr/linux/usermod.md +++ b/pages.fr/linux/usermod.md @@ -1,16 +1,25 @@ # usermod -> Modifie un compte utilisateur. +> Modifie le compte d'un utilisateur. +> Voir aussi `users`, `useradd`, `userdel`. > Plus d'informations : . - Change le nom d'un utilisateur : -`usermod -l {{nouveau_nom}} {{utilisateur}}` +`sudo usermod --login {{nouveau_nom}} {{nom_utilisateur}}` + +- Modifie l'identifiant numérique d'un utilisateur : + +`sudo usermod --uid {{identifiant}} {{nom_utilisateur}}` + +- Change le shell d'un utilisateur : + +`sudo usermod --shell {{chemin/vers/shell}} {{nom_utilisateur}}` - Ajoute l'utilisateur à des groupes supplémentaires (attention à l'omission d'espaces) : -`usermod -a -G {{groupe1,groupe2}} {{utilisateur}}` +`sudo usermod --append --groups {{groupe1,groupe2,...}} {{nom_utilisateur}}` -- Crée un nouveau dossier home pour un utilisateur et déplace ses fichiers vers celui-ci : +- Change le répertoire personnel d'un utilisateur et déplace ses fichiers vers celui-ci : -`usermod -m -d {{/chemin/vers/home}} {{utilisateur}}` +`sudo usermod --move-home --home {{chemin/vers/nouveau_répertoire}} {{nom_utilisateur}}` diff --git a/pages.fr/osx/aa.md b/pages.fr/osx/aa.md new file mode 100644 index 0000000000..453074d3e4 --- /dev/null +++ b/pages.fr/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> Cette commande est un alias de `yaa`. + +- Voir la documentation de la commande originale : + +`tldr yaa` diff --git a/pages.fr/osx/g[.md b/pages.fr/osx/g[.md new file mode 100644 index 0000000000..393873e94a --- /dev/null +++ b/pages.fr/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> Cette commande est un alias de `-p linux [`. + +- Voir la documentation de la commande originale : + +`tldr -p linux [` diff --git a/pages.fr/osx/gawk.md b/pages.fr/osx/gawk.md new file mode 100644 index 0000000000..eec53fa3af --- /dev/null +++ b/pages.fr/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> Cette commande est un alias de `-p linux awk`. + +- Voir la documentation de la commande originale : + +`tldr -p linux awk` diff --git a/pages.fr/osx/gb2sum.md b/pages.fr/osx/gb2sum.md new file mode 100644 index 0000000000..43e3983b59 --- /dev/null +++ b/pages.fr/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> Cette commande est un alias de `-p linux b2sum`. + +- Voir la documentation de la commande originale : + +`tldr -p linux b2sum` diff --git a/pages.fr/osx/gbase32.md b/pages.fr/osx/gbase32.md new file mode 100644 index 0000000000..7cc04bbd9b --- /dev/null +++ b/pages.fr/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> Cette commande est un alias de `-p linux base32`. + +- Voir la documentation de la commande originale : + +`tldr -p linux base32` diff --git a/pages.fr/osx/gbase64.md b/pages.fr/osx/gbase64.md new file mode 100644 index 0000000000..1daba3853e --- /dev/null +++ b/pages.fr/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> Cette commande est un alias de `-p linux base64`. + +- Voir la documentation de la commande originale : + +`tldr -p linux base64` diff --git a/pages.fr/osx/gbasename.md b/pages.fr/osx/gbasename.md new file mode 100644 index 0000000000..d4f763df03 --- /dev/null +++ b/pages.fr/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> Cette commande est un alias de `-p linux basename`. + +- Voir la documentation de la commande originale : + +`tldr -p linux basename` diff --git a/pages.fr/osx/gbasenc.md b/pages.fr/osx/gbasenc.md new file mode 100644 index 0000000000..fded8af07f --- /dev/null +++ b/pages.fr/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> Cette commande est un alias de `-p linux basenc`. + +- Voir la documentation de la commande originale : + +`tldr -p linux basenc` diff --git a/pages.fr/osx/gcat.md b/pages.fr/osx/gcat.md new file mode 100644 index 0000000000..eba397c4bd --- /dev/null +++ b/pages.fr/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> Cette commande est un alias de `-p linux cat`. + +- Voir la documentation de la commande originale : + +`tldr -p linux cat` diff --git a/pages.fr/osx/gchcon.md b/pages.fr/osx/gchcon.md new file mode 100644 index 0000000000..b58eabfbf0 --- /dev/null +++ b/pages.fr/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> Cette commande est un alias de `-p linux chcon`. + +- Voir la documentation de la commande originale : + +`tldr -p linux chcon` diff --git a/pages.fr/osx/gchgrp.md b/pages.fr/osx/gchgrp.md new file mode 100644 index 0000000000..20f45400e4 --- /dev/null +++ b/pages.fr/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> Cette commande est un alias de `-p linux chgrp`. + +- Voir la documentation de la commande originale : + +`tldr -p linux chgrp` diff --git a/pages.fr/osx/gchmod.md b/pages.fr/osx/gchmod.md new file mode 100644 index 0000000000..86f3cd352e --- /dev/null +++ b/pages.fr/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> Cette commande est un alias de `-p linux chmod`. + +- Voir la documentation de la commande originale : + +`tldr -p linux chmod` diff --git a/pages.fr/osx/gchown.md b/pages.fr/osx/gchown.md new file mode 100644 index 0000000000..2b2d8961d2 --- /dev/null +++ b/pages.fr/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> Cette commande est un alias de `-p linux chown`. + +- Voir la documentation de la commande originale : + +`tldr -p linux chown` diff --git a/pages.fr/osx/gchroot.md b/pages.fr/osx/gchroot.md new file mode 100644 index 0000000000..187861bf07 --- /dev/null +++ b/pages.fr/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> Cette commande est un alias de `-p linux chroot`. + +- Voir la documentation de la commande originale : + +`tldr -p linux chroot` diff --git a/pages.fr/osx/gcksum.md b/pages.fr/osx/gcksum.md new file mode 100644 index 0000000000..ab287b64a1 --- /dev/null +++ b/pages.fr/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> Cette commande est un alias de `-p linux cksum`. + +- Voir la documentation de la commande originale : + +`tldr -p linux cksum` diff --git a/pages.fr/osx/gcomm.md b/pages.fr/osx/gcomm.md new file mode 100644 index 0000000000..346797d1d6 --- /dev/null +++ b/pages.fr/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> Cette commande est un alias de `-p linux comm`. + +- Voir la documentation de la commande originale : + +`tldr -p linux comm` diff --git a/pages.fr/osx/gcp.md b/pages.fr/osx/gcp.md new file mode 100644 index 0000000000..bf56e45c29 --- /dev/null +++ b/pages.fr/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> Cette commande est un alias de `-p linux cp`. + +- Voir la documentation de la commande originale : + +`tldr -p linux cp` diff --git a/pages.fr/osx/gcsplit.md b/pages.fr/osx/gcsplit.md new file mode 100644 index 0000000000..b11499ca04 --- /dev/null +++ b/pages.fr/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> Cette commande est un alias de `-p linux csplit`. + +- Voir la documentation de la commande originale : + +`tldr -p linux csplit` diff --git a/pages.fr/osx/gcut.md b/pages.fr/osx/gcut.md new file mode 100644 index 0000000000..85e6b33ee4 --- /dev/null +++ b/pages.fr/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> Cette commande est un alias de `-p linux cut`. + +- Voir la documentation de la commande originale : + +`tldr -p linux cut` diff --git a/pages.fr/osx/gdate.md b/pages.fr/osx/gdate.md new file mode 100644 index 0000000000..faef1bd2d4 --- /dev/null +++ b/pages.fr/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> Cette commande est un alias de `-p linux date`. + +- Voir la documentation de la commande originale : + +`tldr -p linux date` diff --git a/pages.fr/osx/gdd.md b/pages.fr/osx/gdd.md new file mode 100644 index 0000000000..bb2132f115 --- /dev/null +++ b/pages.fr/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> Cette commande est un alias de `-p linux dd`. + +- Voir la documentation de la commande originale : + +`tldr -p linux dd` diff --git a/pages.fr/osx/gdf.md b/pages.fr/osx/gdf.md new file mode 100644 index 0000000000..e5b62e63b1 --- /dev/null +++ b/pages.fr/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> Cette commande est un alias de `-p linux df`. + +- Voir la documentation de la commande originale : + +`tldr -p linux df` diff --git a/pages.fr/osx/gdir.md b/pages.fr/osx/gdir.md new file mode 100644 index 0000000000..c1a50d3fd2 --- /dev/null +++ b/pages.fr/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> Cette commande est un alias de `-p linux dir`. + +- Voir la documentation de la commande originale : + +`tldr -p linux dir` diff --git a/pages.fr/osx/gdircolors.md b/pages.fr/osx/gdircolors.md new file mode 100644 index 0000000000..a0fa56eaf8 --- /dev/null +++ b/pages.fr/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> Cette commande est un alias de `-p linux dircolors`. + +- Voir la documentation de la commande originale : + +`tldr -p linux dircolors` diff --git a/pages.fr/osx/gdirname.md b/pages.fr/osx/gdirname.md new file mode 100644 index 0000000000..630514eee2 --- /dev/null +++ b/pages.fr/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> Cette commande est un alias de `-p linux dirname`. + +- Voir la documentation de la commande originale : + +`tldr -p linux dirname` diff --git a/pages.fr/osx/gdnsdomainname.md b/pages.fr/osx/gdnsdomainname.md new file mode 100644 index 0000000000..874291bb94 --- /dev/null +++ b/pages.fr/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> Cette commande est un alias de `-p linux dnsdomainname`. + +- Voir la documentation de la commande originale : + +`tldr -p linux dnsdomainname` diff --git a/pages.fr/osx/gecho.md b/pages.fr/osx/gecho.md new file mode 100644 index 0000000000..faf83c0960 --- /dev/null +++ b/pages.fr/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> Cette commande est un alias de `-p linux echo`. + +- Voir la documentation de la commande originale : + +`tldr -p linux echo` diff --git a/pages.fr/osx/ged.md b/pages.fr/osx/ged.md new file mode 100644 index 0000000000..4da7c7a719 --- /dev/null +++ b/pages.fr/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> Cette commande est un alias de `-p linux ed`. + +- Voir la documentation de la commande originale : + +`tldr -p linux ed` diff --git a/pages.fr/osx/gegrep.md b/pages.fr/osx/gegrep.md new file mode 100644 index 0000000000..761ff39a68 --- /dev/null +++ b/pages.fr/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> Cette commande est un alias de `-p linux egrep`. + +- Voir la documentation de la commande originale : + +`tldr -p linux egrep` diff --git a/pages.fr/osx/genv.md b/pages.fr/osx/genv.md new file mode 100644 index 0000000000..c5db241aff --- /dev/null +++ b/pages.fr/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> Cette commande est un alias de `-p linux env`. + +- Voir la documentation de la commande originale : + +`tldr -p linux env` diff --git a/pages.fr/osx/gexpand.md b/pages.fr/osx/gexpand.md new file mode 100644 index 0000000000..a40591da40 --- /dev/null +++ b/pages.fr/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> Cette commande est un alias de `-p linux expand`. + +- Voir la documentation de la commande originale : + +`tldr -p linux expand` diff --git a/pages.fr/osx/gexpr.md b/pages.fr/osx/gexpr.md new file mode 100644 index 0000000000..b021c0ef21 --- /dev/null +++ b/pages.fr/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> Cette commande est un alias de `-p linux expr`. + +- Voir la documentation de la commande originale : + +`tldr -p linux expr` diff --git a/pages.fr/osx/gfactor.md b/pages.fr/osx/gfactor.md new file mode 100644 index 0000000000..caf8257590 --- /dev/null +++ b/pages.fr/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> Cette commande est un alias de `-p linux factor`. + +- Voir la documentation de la commande originale : + +`tldr -p linux factor` diff --git a/pages.fr/osx/gfalse.md b/pages.fr/osx/gfalse.md new file mode 100644 index 0000000000..6036dfe8a3 --- /dev/null +++ b/pages.fr/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> Cette commande est un alias de `-p linux false`. + +- Voir la documentation de la commande originale : + +`tldr -p linux false` diff --git a/pages.fr/osx/gfgrep.md b/pages.fr/osx/gfgrep.md new file mode 100644 index 0000000000..4ced4aa032 --- /dev/null +++ b/pages.fr/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> Cette commande est un alias de `-p linux fgrep`. + +- Voir la documentation de la commande originale : + +`tldr -p linux fgrep` diff --git a/pages.fr/osx/gfind.md b/pages.fr/osx/gfind.md new file mode 100644 index 0000000000..beeb93b59e --- /dev/null +++ b/pages.fr/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> Cette commande est un alias de `-p linux find`. + +- Voir la documentation de la commande originale : + +`tldr -p linux find` diff --git a/pages.fr/osx/gfmt.md b/pages.fr/osx/gfmt.md new file mode 100644 index 0000000000..f1ad3ed033 --- /dev/null +++ b/pages.fr/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> Cette commande est un alias de `-p linux fmt`. + +- Voir la documentation de la commande originale : + +`tldr -p linux fmt` diff --git a/pages.fr/osx/gfold.md b/pages.fr/osx/gfold.md new file mode 100644 index 0000000000..3476086818 --- /dev/null +++ b/pages.fr/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> Cette commande est un alias de `-p linux fold`. + +- Voir la documentation de la commande originale : + +`tldr -p linux fold` diff --git a/pages.fr/osx/gftp.md b/pages.fr/osx/gftp.md new file mode 100644 index 0000000000..0ece068786 --- /dev/null +++ b/pages.fr/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> Cette commande est un alias de `-p linux ftp`. + +- Voir la documentation de la commande originale : + +`tldr -p linux ftp` diff --git a/pages.fr/osx/ggrep.md b/pages.fr/osx/ggrep.md new file mode 100644 index 0000000000..ad65a7a3d7 --- /dev/null +++ b/pages.fr/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> Cette commande est un alias de `-p linux grep`. + +- Voir la documentation de la commande originale : + +`tldr -p linux grep` diff --git a/pages.fr/osx/ggroups.md b/pages.fr/osx/ggroups.md new file mode 100644 index 0000000000..bd79e5ab19 --- /dev/null +++ b/pages.fr/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> Cette commande est un alias de `-p linux groups`. + +- Voir la documentation de la commande originale : + +`tldr -p linux groups` diff --git a/pages.fr/osx/ghead.md b/pages.fr/osx/ghead.md new file mode 100644 index 0000000000..6229f6243e --- /dev/null +++ b/pages.fr/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> Cette commande est un alias de `-p linux head`. + +- Voir la documentation de la commande originale : + +`tldr -p linux head` diff --git a/pages.fr/osx/ghostid.md b/pages.fr/osx/ghostid.md new file mode 100644 index 0000000000..95245503dc --- /dev/null +++ b/pages.fr/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> Cette commande est un alias de `-p linux hostid`. + +- Voir la documentation de la commande originale : + +`tldr -p linux hostid` diff --git a/pages.fr/osx/ghostname.md b/pages.fr/osx/ghostname.md new file mode 100644 index 0000000000..bbfc6b8afc --- /dev/null +++ b/pages.fr/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> Cette commande est un alias de `-p linux hostname`. + +- Voir la documentation de la commande originale : + +`tldr -p linux hostname` diff --git a/pages.fr/osx/gid.md b/pages.fr/osx/gid.md new file mode 100644 index 0000000000..99afcce4a3 --- /dev/null +++ b/pages.fr/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> Cette commande est un alias de `-p linux id`. + +- Voir la documentation de la commande originale : + +`tldr -p linux id` diff --git a/pages.fr/osx/gifconfig.md b/pages.fr/osx/gifconfig.md new file mode 100644 index 0000000000..0d72b6805b --- /dev/null +++ b/pages.fr/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> Cette commande est un alias de `-p linux ifconfig`. + +- Voir la documentation de la commande originale : + +`tldr -p linux ifconfig` diff --git a/pages.fr/osx/gindent.md b/pages.fr/osx/gindent.md new file mode 100644 index 0000000000..8358e81b4b --- /dev/null +++ b/pages.fr/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> Cette commande est un alias de `-p linux indent`. + +- Voir la documentation de la commande originale : + +`tldr -p linux indent` diff --git a/pages.fr/osx/ginstall.md b/pages.fr/osx/ginstall.md new file mode 100644 index 0000000000..909faa0796 --- /dev/null +++ b/pages.fr/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> Cette commande est un alias de `-p linux install`. + +- Voir la documentation de la commande originale : + +`tldr -p linux install` diff --git a/pages.fr/osx/gjoin.md b/pages.fr/osx/gjoin.md new file mode 100644 index 0000000000..db0ec42649 --- /dev/null +++ b/pages.fr/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> Cette commande est un alias de `-p linux join`. + +- Voir la documentation de la commande originale : + +`tldr -p linux join` diff --git a/pages.fr/osx/gkill.md b/pages.fr/osx/gkill.md new file mode 100644 index 0000000000..63a4a29e06 --- /dev/null +++ b/pages.fr/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> Cette commande est un alias de `-p linux kill`. + +- Voir la documentation de la commande originale : + +`tldr -p linux kill` diff --git a/pages.fr/osx/glibtool.md b/pages.fr/osx/glibtool.md new file mode 100644 index 0000000000..dc57fde045 --- /dev/null +++ b/pages.fr/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> Cette commande est un alias de `-p linux libtool`. + +- Voir la documentation de la commande originale : + +`tldr -p linux libtool` diff --git a/pages.fr/osx/glibtoolize.md b/pages.fr/osx/glibtoolize.md new file mode 100644 index 0000000000..714961f602 --- /dev/null +++ b/pages.fr/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> Cette commande est un alias de `-p linux libtoolize`. + +- Voir la documentation de la commande originale : + +`tldr -p linux libtoolize` diff --git a/pages.fr/osx/glink.md b/pages.fr/osx/glink.md new file mode 100644 index 0000000000..f3866c3ea2 --- /dev/null +++ b/pages.fr/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> Cette commande est un alias de `-p linux link`. + +- Voir la documentation de la commande originale : + +`tldr -p linux link` diff --git a/pages.fr/osx/gln.md b/pages.fr/osx/gln.md new file mode 100644 index 0000000000..0ea9f11879 --- /dev/null +++ b/pages.fr/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> Cette commande est un alias de `-p linux ln`. + +- Voir la documentation de la commande originale : + +`tldr -p linux ln` diff --git a/pages.fr/osx/glocate.md b/pages.fr/osx/glocate.md new file mode 100644 index 0000000000..fc9ef9fe64 --- /dev/null +++ b/pages.fr/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> Cette commande est un alias de `-p linux locate`. + +- Voir la documentation de la commande originale : + +`tldr -p linux locate` diff --git a/pages.fr/osx/glogger.md b/pages.fr/osx/glogger.md new file mode 100644 index 0000000000..1ac433fb64 --- /dev/null +++ b/pages.fr/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> Cette commande est un alias de `-p linux logger`. + +- Voir la documentation de la commande originale : + +`tldr -p linux logger` diff --git a/pages.fr/osx/glogname.md b/pages.fr/osx/glogname.md new file mode 100644 index 0000000000..960a22f93b --- /dev/null +++ b/pages.fr/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> Cette commande est un alias de `-p linux logname`. + +- Voir la documentation de la commande originale : + +`tldr -p linux logname` diff --git a/pages.fr/osx/gls.md b/pages.fr/osx/gls.md new file mode 100644 index 0000000000..535c5dbaa5 --- /dev/null +++ b/pages.fr/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> Cette commande est un alias de `-p linux ls`. + +- Voir la documentation de la commande originale : + +`tldr -p linux ls` diff --git a/pages.fr/osx/gmake.md b/pages.fr/osx/gmake.md new file mode 100644 index 0000000000..2610f04982 --- /dev/null +++ b/pages.fr/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> Cette commande est un alias de `-p linux make`. + +- Voir la documentation de la commande originale : + +`tldr -p linux make` diff --git a/pages.fr/osx/gmd5sum.md b/pages.fr/osx/gmd5sum.md new file mode 100644 index 0000000000..4654b480b1 --- /dev/null +++ b/pages.fr/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> Cette commande est un alias de `-p linux md5sum`. + +- Voir la documentation de la commande originale : + +`tldr -p linux md5sum` diff --git a/pages.fr/osx/gmkdir.md b/pages.fr/osx/gmkdir.md new file mode 100644 index 0000000000..1eb939a941 --- /dev/null +++ b/pages.fr/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> Cette commande est un alias de `-p linux mkdir`. + +- Voir la documentation de la commande originale : + +`tldr -p linux mkdir` diff --git a/pages.fr/osx/gmkfifo.md b/pages.fr/osx/gmkfifo.md new file mode 100644 index 0000000000..12824a6123 --- /dev/null +++ b/pages.fr/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> Cette commande est un alias de `-p linux mkfifo`. + +- Voir la documentation de la commande originale : + +`tldr -p linux mkfifo` diff --git a/pages.fr/osx/gmknod.md b/pages.fr/osx/gmknod.md new file mode 100644 index 0000000000..f2b25ef8d2 --- /dev/null +++ b/pages.fr/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> Cette commande est un alias de `-p linux mknod`. + +- Voir la documentation de la commande originale : + +`tldr -p linux mknod` diff --git a/pages.fr/osx/gmktemp.md b/pages.fr/osx/gmktemp.md new file mode 100644 index 0000000000..838cabb0f3 --- /dev/null +++ b/pages.fr/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> Cette commande est un alias de `-p linux mktemp`. + +- Voir la documentation de la commande originale : + +`tldr -p linux mktemp` diff --git a/pages.fr/osx/gmv.md b/pages.fr/osx/gmv.md new file mode 100644 index 0000000000..319e7d4327 --- /dev/null +++ b/pages.fr/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> Cette commande est un alias de `-p linux mv`. + +- Voir la documentation de la commande originale : + +`tldr -p linux mv` diff --git a/pages.fr/osx/gnice.md b/pages.fr/osx/gnice.md new file mode 100644 index 0000000000..1261873920 --- /dev/null +++ b/pages.fr/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> Cette commande est un alias de `-p linux nice`. + +- Voir la documentation de la commande originale : + +`tldr -p linux nice` diff --git a/pages.fr/osx/gnl.md b/pages.fr/osx/gnl.md new file mode 100644 index 0000000000..9183d82514 --- /dev/null +++ b/pages.fr/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> Cette commande est un alias de `-p linux nl`. + +- Voir la documentation de la commande originale : + +`tldr -p linux nl` diff --git a/pages.fr/osx/gnohup.md b/pages.fr/osx/gnohup.md new file mode 100644 index 0000000000..4c01fd478e --- /dev/null +++ b/pages.fr/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> Cette commande est un alias de `-p linux nohup`. + +- Voir la documentation de la commande originale : + +`tldr -p linux nohup` diff --git a/pages.fr/osx/gnproc.md b/pages.fr/osx/gnproc.md new file mode 100644 index 0000000000..57c9f4b44b --- /dev/null +++ b/pages.fr/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> Cette commande est un alias de `-p linux nproc`. + +- Voir la documentation de la commande originale : + +`tldr -p linux nproc` diff --git a/pages.fr/osx/gnumfmt.md b/pages.fr/osx/gnumfmt.md new file mode 100644 index 0000000000..ef02b8a7e8 --- /dev/null +++ b/pages.fr/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> Cette commande est un alias de `-p linux numfmt`. + +- Voir la documentation de la commande originale : + +`tldr -p linux numfmt` diff --git a/pages.fr/osx/god.md b/pages.fr/osx/god.md new file mode 100644 index 0000000000..45b0dfea40 --- /dev/null +++ b/pages.fr/osx/god.md @@ -0,0 +1,7 @@ +# god + +> Cette commande est un alias de `-p linux od`. + +- Voir la documentation de la commande originale : + +`tldr -p linux od` diff --git a/pages.fr/osx/gpaste.md b/pages.fr/osx/gpaste.md new file mode 100644 index 0000000000..3bca403900 --- /dev/null +++ b/pages.fr/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> Cette commande est un alias de `-p linux paste`. + +- Voir la documentation de la commande originale : + +`tldr -p linux paste` diff --git a/pages.fr/osx/gpathchk.md b/pages.fr/osx/gpathchk.md new file mode 100644 index 0000000000..974b7a3d93 --- /dev/null +++ b/pages.fr/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> Cette commande est un alias de `-p linux pathchk`. + +- Voir la documentation de la commande originale : + +`tldr -p linux pathchk` diff --git a/pages.fr/osx/gping.md b/pages.fr/osx/gping.md new file mode 100644 index 0000000000..d3d955bd22 --- /dev/null +++ b/pages.fr/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> Cette commande est un alias de `-p linux ping`. + +- Voir la documentation de la commande originale : + +`tldr -p linux ping` diff --git a/pages.fr/osx/gping6.md b/pages.fr/osx/gping6.md new file mode 100644 index 0000000000..17a95acd17 --- /dev/null +++ b/pages.fr/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> Cette commande est un alias de `-p linux ping6`. + +- Voir la documentation de la commande originale : + +`tldr -p linux ping6` diff --git a/pages.fr/osx/gpinky.md b/pages.fr/osx/gpinky.md new file mode 100644 index 0000000000..d3931b6ff3 --- /dev/null +++ b/pages.fr/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> Cette commande est un alias de `-p linux pinky`. + +- Voir la documentation de la commande originale : + +`tldr -p linux pinky` diff --git a/pages.fr/osx/gpr.md b/pages.fr/osx/gpr.md new file mode 100644 index 0000000000..f189a2c38f --- /dev/null +++ b/pages.fr/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> Cette commande est un alias de `-p linux pr`. + +- Voir la documentation de la commande originale : + +`tldr -p linux pr` diff --git a/pages.fr/osx/gprintenv.md b/pages.fr/osx/gprintenv.md new file mode 100644 index 0000000000..3ddf9957dc --- /dev/null +++ b/pages.fr/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> Cette commande est un alias de `-p linux printenv`. + +- Voir la documentation de la commande originale : + +`tldr -p linux printenv` diff --git a/pages.fr/osx/gprintf.md b/pages.fr/osx/gprintf.md new file mode 100644 index 0000000000..e2f78360f4 --- /dev/null +++ b/pages.fr/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> Cette commande est un alias de `-p linux printf`. + +- Voir la documentation de la commande originale : + +`tldr -p linux printf` diff --git a/pages.fr/osx/gptx.md b/pages.fr/osx/gptx.md new file mode 100644 index 0000000000..6708403586 --- /dev/null +++ b/pages.fr/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> Cette commande est un alias de `-p linux ptx`. + +- Voir la documentation de la commande originale : + +`tldr -p linux ptx` diff --git a/pages.fr/osx/gpwd.md b/pages.fr/osx/gpwd.md new file mode 100644 index 0000000000..0ee92cdd50 --- /dev/null +++ b/pages.fr/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> Cette commande est un alias de `-p linux pwd`. + +- Voir la documentation de la commande originale : + +`tldr -p linux pwd` diff --git a/pages.fr/osx/grcp.md b/pages.fr/osx/grcp.md new file mode 100644 index 0000000000..d85e6ce7f3 --- /dev/null +++ b/pages.fr/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> Cette commande est un alias de `-p linux rcp`. + +- Voir la documentation de la commande originale : + +`tldr -p linux rcp` diff --git a/pages.fr/osx/greadlink.md b/pages.fr/osx/greadlink.md new file mode 100644 index 0000000000..f4d29e1b2f --- /dev/null +++ b/pages.fr/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> Cette commande est un alias de `-p linux readlink`. + +- Voir la documentation de la commande originale : + +`tldr -p linux readlink` diff --git a/pages.fr/osx/grealpath.md b/pages.fr/osx/grealpath.md new file mode 100644 index 0000000000..f379d44631 --- /dev/null +++ b/pages.fr/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> Cette commande est un alias de `-p linux realpath`. + +- Voir la documentation de la commande originale : + +`tldr -p linux realpath` diff --git a/pages.fr/osx/grexec.md b/pages.fr/osx/grexec.md new file mode 100644 index 0000000000..df9cbc22c2 --- /dev/null +++ b/pages.fr/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> Cette commande est un alias de `-p linux rexec`. + +- Voir la documentation de la commande originale : + +`tldr -p linux rexec` diff --git a/pages.fr/osx/grlogin.md b/pages.fr/osx/grlogin.md new file mode 100644 index 0000000000..30830f9421 --- /dev/null +++ b/pages.fr/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> Cette commande est un alias de `-p linux rlogin`. + +- Voir la documentation de la commande originale : + +`tldr -p linux rlogin` diff --git a/pages.fr/osx/grm.md b/pages.fr/osx/grm.md new file mode 100644 index 0000000000..7c7fa24de5 --- /dev/null +++ b/pages.fr/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> Cette commande est un alias de `-p linux rm`. + +- Voir la documentation de la commande originale : + +`tldr -p linux rm` diff --git a/pages.fr/osx/grmdir.md b/pages.fr/osx/grmdir.md new file mode 100644 index 0000000000..1abe33a87d --- /dev/null +++ b/pages.fr/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> Cette commande est un alias de `-p linux rmdir`. + +- Voir la documentation de la commande originale : + +`tldr -p linux rmdir` diff --git a/pages.fr/osx/grsh.md b/pages.fr/osx/grsh.md new file mode 100644 index 0000000000..c4984b2fdb --- /dev/null +++ b/pages.fr/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> Cette commande est un alias de `-p linux rsh`. + +- Voir la documentation de la commande originale : + +`tldr -p linux rsh` diff --git a/pages.fr/osx/gruncon.md b/pages.fr/osx/gruncon.md new file mode 100644 index 0000000000..92268c3e40 --- /dev/null +++ b/pages.fr/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> Cette commande est un alias de `-p linux runcon`. + +- Voir la documentation de la commande originale : + +`tldr -p linux runcon` diff --git a/pages.fr/osx/gsed.md b/pages.fr/osx/gsed.md new file mode 100644 index 0000000000..6d7b9ee1e7 --- /dev/null +++ b/pages.fr/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> Cette commande est un alias de `-p linux sed`. + +- Voir la documentation de la commande originale : + +`tldr -p linux sed` diff --git a/pages.fr/osx/gseq.md b/pages.fr/osx/gseq.md new file mode 100644 index 0000000000..d49d8f8f63 --- /dev/null +++ b/pages.fr/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> Cette commande est un alias de `-p linux seq`. + +- Voir la documentation de la commande originale : + +`tldr -p linux seq` diff --git a/pages.fr/osx/gsha1sum.md b/pages.fr/osx/gsha1sum.md new file mode 100644 index 0000000000..1861378c24 --- /dev/null +++ b/pages.fr/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> Cette commande est un alias de `-p linux sha1sum`. + +- Voir la documentation de la commande originale : + +`tldr -p linux sha1sum` diff --git a/pages.fr/osx/gsha224sum.md b/pages.fr/osx/gsha224sum.md new file mode 100644 index 0000000000..aaf78cfa50 --- /dev/null +++ b/pages.fr/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> Cette commande est un alias de `-p linux sha224sum`. + +- Voir la documentation de la commande originale : + +`tldr -p linux sha224sum` diff --git a/pages.fr/osx/gsha256sum.md b/pages.fr/osx/gsha256sum.md new file mode 100644 index 0000000000..a43b68941e --- /dev/null +++ b/pages.fr/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> Cette commande est un alias de `-p linux sha256sum`. + +- Voir la documentation de la commande originale : + +`tldr -p linux sha256sum` diff --git a/pages.fr/osx/gsha384sum.md b/pages.fr/osx/gsha384sum.md new file mode 100644 index 0000000000..45b0474ced --- /dev/null +++ b/pages.fr/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> Cette commande est un alias de `-p linux sha384sum`. + +- Voir la documentation de la commande originale : + +`tldr -p linux sha384sum` diff --git a/pages.fr/osx/gsha512sum.md b/pages.fr/osx/gsha512sum.md new file mode 100644 index 0000000000..f9997f1504 --- /dev/null +++ b/pages.fr/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> Cette commande est un alias de `-p linux sha512sum`. + +- Voir la documentation de la commande originale : + +`tldr -p linux sha512sum` diff --git a/pages.fr/osx/gshred.md b/pages.fr/osx/gshred.md new file mode 100644 index 0000000000..94d71b9cde --- /dev/null +++ b/pages.fr/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> Cette commande est un alias de `-p linux shred`. + +- Voir la documentation de la commande originale : + +`tldr -p linux shred` diff --git a/pages.fr/osx/gshuf.md b/pages.fr/osx/gshuf.md new file mode 100644 index 0000000000..dadf30c06f --- /dev/null +++ b/pages.fr/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> Cette commande est un alias de `-p linux shuf`. + +- Voir la documentation de la commande originale : + +`tldr -p linux shuf` diff --git a/pages.fr/osx/gsleep.md b/pages.fr/osx/gsleep.md new file mode 100644 index 0000000000..cc9fec9d69 --- /dev/null +++ b/pages.fr/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> Cette commande est un alias de `-p linux sleep`. + +- Voir la documentation de la commande originale : + +`tldr -p linux sleep` diff --git a/pages.fr/osx/gsort.md b/pages.fr/osx/gsort.md new file mode 100644 index 0000000000..8d7dc59bff --- /dev/null +++ b/pages.fr/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> Cette commande est un alias de `-p linux sort`. + +- Voir la documentation de la commande originale : + +`tldr -p linux sort` diff --git a/pages.fr/osx/gsplit.md b/pages.fr/osx/gsplit.md new file mode 100644 index 0000000000..039f60eefc --- /dev/null +++ b/pages.fr/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> Cette commande est un alias de `-p linux split`. + +- Voir la documentation de la commande originale : + +`tldr -p linux split` diff --git a/pages.fr/osx/gstat.md b/pages.fr/osx/gstat.md new file mode 100644 index 0000000000..09a8987bc1 --- /dev/null +++ b/pages.fr/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> Cette commande est un alias de `-p linux stat`. + +- Voir la documentation de la commande originale : + +`tldr -p linux stat` diff --git a/pages.fr/osx/gstdbuf.md b/pages.fr/osx/gstdbuf.md new file mode 100644 index 0000000000..5a172f0a31 --- /dev/null +++ b/pages.fr/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> Cette commande est un alias de `-p linux stdbuf`. + +- Voir la documentation de la commande originale : + +`tldr -p linux stdbuf` diff --git a/pages.fr/osx/gstty.md b/pages.fr/osx/gstty.md new file mode 100644 index 0000000000..15f7fa27c9 --- /dev/null +++ b/pages.fr/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> Cette commande est un alias de `-p linux stty`. + +- Voir la documentation de la commande originale : + +`tldr -p linux stty` diff --git a/pages.fr/osx/gsum.md b/pages.fr/osx/gsum.md new file mode 100644 index 0000000000..a57a80b23c --- /dev/null +++ b/pages.fr/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> Cette commande est un alias de `-p linux sum`. + +- Voir la documentation de la commande originale : + +`tldr -p linux sum` diff --git a/pages.fr/osx/gsync.md b/pages.fr/osx/gsync.md new file mode 100644 index 0000000000..2890a1f2ae --- /dev/null +++ b/pages.fr/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> Cette commande est un alias de `-p linux sync`. + +- Voir la documentation de la commande originale : + +`tldr -p linux sync` diff --git a/pages.fr/osx/gtac.md b/pages.fr/osx/gtac.md new file mode 100644 index 0000000000..56e0f268ad --- /dev/null +++ b/pages.fr/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> Cette commande est un alias de `-p linux tac`. + +- Voir la documentation de la commande originale : + +`tldr -p linux tac` diff --git a/pages.fr/osx/gtail.md b/pages.fr/osx/gtail.md new file mode 100644 index 0000000000..f69b78b0d2 --- /dev/null +++ b/pages.fr/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> Cette commande est un alias de `-p linux tail`. + +- Voir la documentation de la commande originale : + +`tldr -p linux tail` diff --git a/pages.fr/osx/gtalk.md b/pages.fr/osx/gtalk.md new file mode 100644 index 0000000000..0b8eed3af2 --- /dev/null +++ b/pages.fr/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> Cette commande est un alias de `-p linux talk`. + +- Voir la documentation de la commande originale : + +`tldr -p linux talk` diff --git a/pages.fr/osx/gtar.md b/pages.fr/osx/gtar.md new file mode 100644 index 0000000000..733e9254bf --- /dev/null +++ b/pages.fr/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> Cette commande est un alias de `-p linux tar`. + +- Voir la documentation de la commande originale : + +`tldr -p linux tar` diff --git a/pages.fr/osx/gtee.md b/pages.fr/osx/gtee.md new file mode 100644 index 0000000000..2c03b2a54b --- /dev/null +++ b/pages.fr/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> Cette commande est un alias de `-p linux tee`. + +- Voir la documentation de la commande originale : + +`tldr -p linux tee` diff --git a/pages.fr/osx/gtelnet.md b/pages.fr/osx/gtelnet.md new file mode 100644 index 0000000000..f23bc675bc --- /dev/null +++ b/pages.fr/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> Cette commande est un alias de `-p linux telnet`. + +- Voir la documentation de la commande originale : + +`tldr -p linux telnet` diff --git a/pages.fr/osx/gtest.md b/pages.fr/osx/gtest.md new file mode 100644 index 0000000000..6170f1278f --- /dev/null +++ b/pages.fr/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> Cette commande est un alias de `-p linux test`. + +- Voir la documentation de la commande originale : + +`tldr -p linux test` diff --git a/pages.fr/osx/gtftp.md b/pages.fr/osx/gtftp.md new file mode 100644 index 0000000000..e8e6e90d8b --- /dev/null +++ b/pages.fr/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> Cette commande est un alias de `-p linux tftp`. + +- Voir la documentation de la commande originale : + +`tldr -p linux tftp` diff --git a/pages.fr/osx/gtime.md b/pages.fr/osx/gtime.md new file mode 100644 index 0000000000..cd8faee1b1 --- /dev/null +++ b/pages.fr/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> Cette commande est un alias de `-p linux time`. + +- Voir la documentation de la commande originale : + +`tldr -p linux time` diff --git a/pages.fr/osx/gtimeout.md b/pages.fr/osx/gtimeout.md new file mode 100644 index 0000000000..5620337ee0 --- /dev/null +++ b/pages.fr/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> Cette commande est un alias de `-p linux timeout`. + +- Voir la documentation de la commande originale : + +`tldr -p linux timeout` diff --git a/pages.fr/osx/gtouch.md b/pages.fr/osx/gtouch.md new file mode 100644 index 0000000000..9d54b626e7 --- /dev/null +++ b/pages.fr/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> Cette commande est un alias de `-p linux touch`. + +- Voir la documentation de la commande originale : + +`tldr -p linux touch` diff --git a/pages.fr/osx/gtr.md b/pages.fr/osx/gtr.md new file mode 100644 index 0000000000..dfa7392104 --- /dev/null +++ b/pages.fr/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> Cette commande est un alias de `-p linux tr`. + +- Voir la documentation de la commande originale : + +`tldr -p linux tr` diff --git a/pages.fr/osx/gtraceroute.md b/pages.fr/osx/gtraceroute.md new file mode 100644 index 0000000000..7f356a0350 --- /dev/null +++ b/pages.fr/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> Cette commande est un alias de `-p linux traceroute`. + +- Voir la documentation de la commande originale : + +`tldr -p linux traceroute` diff --git a/pages.fr/osx/gtrue.md b/pages.fr/osx/gtrue.md new file mode 100644 index 0000000000..847d6b650e --- /dev/null +++ b/pages.fr/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> Cette commande est un alias de `-p linux true`. + +- Voir la documentation de la commande originale : + +`tldr -p linux true` diff --git a/pages.fr/osx/gtruncate.md b/pages.fr/osx/gtruncate.md new file mode 100644 index 0000000000..ab3f309797 --- /dev/null +++ b/pages.fr/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> Cette commande est un alias de `-p linux truncate`. + +- Voir la documentation de la commande originale : + +`tldr -p linux truncate` diff --git a/pages.fr/osx/gtsort.md b/pages.fr/osx/gtsort.md new file mode 100644 index 0000000000..8fbac8c788 --- /dev/null +++ b/pages.fr/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> Cette commande est un alias de `-p linux tsort`. + +- Voir la documentation de la commande originale : + +`tldr -p linux tsort` diff --git a/pages.fr/osx/gtty.md b/pages.fr/osx/gtty.md new file mode 100644 index 0000000000..b25c9fe196 --- /dev/null +++ b/pages.fr/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> Cette commande est un alias de `-p linux tty`. + +- Voir la documentation de la commande originale : + +`tldr -p linux tty` diff --git a/pages.fr/osx/guname.md b/pages.fr/osx/guname.md new file mode 100644 index 0000000000..8b7f936f9b --- /dev/null +++ b/pages.fr/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> Cette commande est un alias de `-p linux uname`. + +- Voir la documentation de la commande originale : + +`tldr -p linux uname` diff --git a/pages.fr/osx/gunexpand.md b/pages.fr/osx/gunexpand.md new file mode 100644 index 0000000000..7675fe83d2 --- /dev/null +++ b/pages.fr/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> Cette commande est un alias de `-p linux unexpand`. + +- Voir la documentation de la commande originale : + +`tldr -p linux unexpand` diff --git a/pages.fr/osx/guniq.md b/pages.fr/osx/guniq.md new file mode 100644 index 0000000000..c54011f94c --- /dev/null +++ b/pages.fr/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> Cette commande est un alias de `-p linux uniq`. + +- Voir la documentation de la commande originale : + +`tldr -p linux uniq` diff --git a/pages.fr/osx/gunits.md b/pages.fr/osx/gunits.md new file mode 100644 index 0000000000..6595f8306d --- /dev/null +++ b/pages.fr/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> Cette commande est un alias de `-p linux units`. + +- Voir la documentation de la commande originale : + +`tldr -p linux units` diff --git a/pages.fr/osx/gunlink.md b/pages.fr/osx/gunlink.md new file mode 100644 index 0000000000..6288559a72 --- /dev/null +++ b/pages.fr/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> Cette commande est un alias de `-p linux unlink`. + +- Voir la documentation de la commande originale : + +`tldr -p linux unlink` diff --git a/pages.fr/osx/gupdatedb.md b/pages.fr/osx/gupdatedb.md new file mode 100644 index 0000000000..14edb655d1 --- /dev/null +++ b/pages.fr/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> Cette commande est un alias de `-p linux updatedb`. + +- Voir la documentation de la commande originale : + +`tldr -p linux updatedb` diff --git a/pages.fr/osx/guptime.md b/pages.fr/osx/guptime.md new file mode 100644 index 0000000000..fca9745497 --- /dev/null +++ b/pages.fr/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> Cette commande est un alias de `-p linux uptime`. + +- Voir la documentation de la commande originale : + +`tldr -p linux uptime` diff --git a/pages.fr/osx/gusers.md b/pages.fr/osx/gusers.md new file mode 100644 index 0000000000..341bf68b98 --- /dev/null +++ b/pages.fr/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> Cette commande est un alias de `-p linux users`. + +- Voir la documentation de la commande originale : + +`tldr -p linux users` diff --git a/pages.fr/osx/gvdir.md b/pages.fr/osx/gvdir.md new file mode 100644 index 0000000000..582644d5da --- /dev/null +++ b/pages.fr/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> Cette commande est un alias de `-p linux vdir`. + +- Voir la documentation de la commande originale : + +`tldr -p linux vdir` diff --git a/pages.fr/osx/gwc.md b/pages.fr/osx/gwc.md new file mode 100644 index 0000000000..3dec87a3e0 --- /dev/null +++ b/pages.fr/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> Cette commande est un alias de `-p linux wc`. + +- Voir la documentation de la commande originale : + +`tldr -p linux wc` diff --git a/pages.fr/osx/gwhich.md b/pages.fr/osx/gwhich.md new file mode 100644 index 0000000000..7b68ee833c --- /dev/null +++ b/pages.fr/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> Cette commande est un alias de `-p linux which`. + +- Voir la documentation de la commande originale : + +`tldr -p linux which` diff --git a/pages.fr/osx/gwho.md b/pages.fr/osx/gwho.md new file mode 100644 index 0000000000..cf80ffef2b --- /dev/null +++ b/pages.fr/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> Cette commande est un alias de `-p linux who`. + +- Voir la documentation de la commande originale : + +`tldr -p linux who` diff --git a/pages.fr/osx/gwhoami.md b/pages.fr/osx/gwhoami.md new file mode 100644 index 0000000000..c113f2d8d1 --- /dev/null +++ b/pages.fr/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> Cette commande est un alias de `-p linux whoami`. + +- Voir la documentation de la commande originale : + +`tldr -p linux whoami` diff --git a/pages.fr/osx/gwhois.md b/pages.fr/osx/gwhois.md new file mode 100644 index 0000000000..4c04bd3f47 --- /dev/null +++ b/pages.fr/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> Cette commande est un alias de `-p linux whois`. + +- Voir la documentation de la commande originale : + +`tldr -p linux whois` diff --git a/pages.fr/osx/gxargs.md b/pages.fr/osx/gxargs.md new file mode 100644 index 0000000000..79ed41b54f --- /dev/null +++ b/pages.fr/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> Cette commande est un alias de `-p linux xargs`. + +- Voir la documentation de la commande originale : + +`tldr -p linux xargs` diff --git a/pages.fr/osx/gyes.md b/pages.fr/osx/gyes.md new file mode 100644 index 0000000000..7c03cc1aa7 --- /dev/null +++ b/pages.fr/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> Cette commande est un alias de `-p linux yes`. + +- Voir la documentation de la commande originale : + +`tldr -p linux yes` diff --git a/pages.fr/osx/launchd.md b/pages.fr/osx/launchd.md new file mode 100644 index 0000000000..3f47d9fc21 --- /dev/null +++ b/pages.fr/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> Cette commande est un alias de `launchctl`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr launchctl` diff --git a/pages.fr/sunos/devfsadm.md b/pages.fr/sunos/devfsadm.md index 96a5e00539..9b36a48157 100644 --- a/pages.fr/sunos/devfsadm.md +++ b/pages.fr/sunos/devfsadm.md @@ -1,7 +1,7 @@ # devfsadm > Commande d'administration pour `/dev`. Maintient le `/dev` espace de noms. -> Plus d'information : . +> Plus d'informations : . - Rechercher de nouveaux disques : diff --git a/pages.fr/sunos/prctl.md b/pages.fr/sunos/prctl.md index da51690974..0e90eb1c2c 100644 --- a/pages.fr/sunos/prctl.md +++ b/pages.fr/sunos/prctl.md @@ -1,7 +1,7 @@ # prctl > Obtenir ou définir les contrôles de ressources des processus, tâches et projets en cours d'exécution. -> Plus d'information : . +> Plus d'informations : . - Examiner les limites et les autorisations des processus : diff --git a/pages.fr/sunos/prstat.md b/pages.fr/sunos/prstat.md index d097940a6e..6a4937668f 100644 --- a/pages.fr/sunos/prstat.md +++ b/pages.fr/sunos/prstat.md @@ -1,7 +1,7 @@ # prstat > Signaler les statistiques de processus actifs. -> Plus d'information : . +> Plus d'informations : . - Examinez tous les processus et rapportez les statistiques triées par utilisation du processeur : diff --git a/pages.fr/sunos/snoop.md b/pages.fr/sunos/snoop.md index 79f1406675..b7d7065f43 100644 --- a/pages.fr/sunos/snoop.md +++ b/pages.fr/sunos/snoop.md @@ -2,7 +2,7 @@ > Renifleur de paquets réseau. > Équivalent SunOS de tcpdump. -> Plus d'information : . +> Plus d'informations : . - Capturer des paquets sur une interface réseau spécifique : diff --git a/pages.fr/sunos/svcadm.md b/pages.fr/sunos/svcadm.md index cde6d5df0a..4262734b71 100644 --- a/pages.fr/sunos/svcadm.md +++ b/pages.fr/sunos/svcadm.md @@ -1,7 +1,7 @@ # svcadm > Manipuler les instances de service. -> Plus d'information : . +> Plus d'informations : . - Activer un service dans la base de données de service: diff --git a/pages.fr/sunos/svcs.md b/pages.fr/sunos/svcs.md index 551178b757..81992a1216 100644 --- a/pages.fr/sunos/svcs.md +++ b/pages.fr/sunos/svcs.md @@ -1,7 +1,7 @@ # svcs > Répertorier les informations sur les services en cours d'exécution. -> Plus d'information : . +> Plus d'informations : . - Lister tous les services en cours d'exécution : diff --git a/pages.fr/sunos/truss.md b/pages.fr/sunos/truss.md index 5fb7b586e8..f650057646 100644 --- a/pages.fr/sunos/truss.md +++ b/pages.fr/sunos/truss.md @@ -2,7 +2,7 @@ > Outil de dépannage pour tracer les appels système. > Équivalent SunOS de strace. -> Plus d'information : . +> Plus d'informations : . - Commencez à tracer un programme en l'exécutant, en suivant tous les processus enfants : diff --git a/pages.fr/windows/choco-outdated.md b/pages.fr/windows/choco-outdated.md new file mode 100644 index 0000000000..b2d6150949 --- /dev/null +++ b/pages.fr/windows/choco-outdated.md @@ -0,0 +1,20 @@ +# choco outdated + +> Vérifiez les packages obsolètes avec Chocolatey. +> Plus d'information: . + +- Afficher une liste des packages obsolètes sous forme de tableau : + +`choco outdated` + +- Ignorer les packages épinglés dans la sortie : + +`choco outdated --ignore-pinned` + +- Spécifiez une source personnalisée à partir de laquelle vérifier les packages : + +`choco outdated --source {{source_url|alias}}` + +- Fournir un nom d'utilisateur et un mot de passe pour l'authentification : + +`choco outdated --user {{nom_d_utilisateur}} --password {{mot_de_passe}}}` diff --git a/pages.fr/windows/chrome.md b/pages.fr/windows/chrome.md new file mode 100644 index 0000000000..326df979cb --- /dev/null +++ b/pages.fr/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> Cette commande est un alias de `chromium`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr chromium` diff --git a/pages.fr/windows/cpush.md b/pages.fr/windows/cpush.md new file mode 100644 index 0000000000..cd2fd155ba --- /dev/null +++ b/pages.fr/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> Cette commande est un alias de `choco-push`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr choco-push` diff --git a/pages.fr/windows/curl.md b/pages.fr/windows/curl.md new file mode 100644 index 0000000000..0765821c9f --- /dev/null +++ b/pages.fr/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> Cette commande est un alias de `curl -p common`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr curl -p common` diff --git a/pages.fr/windows/iwr.md b/pages.fr/windows/iwr.md new file mode 100644 index 0000000000..95b23120d6 --- /dev/null +++ b/pages.fr/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> Cette commande est un alias de `invoke-webrequest`. + +- Voir la documentation de la commande originale : + +`tldr invoke-webrequest` diff --git a/pages.fr/windows/pwsh-where.md b/pages.fr/windows/pwsh-where.md new file mode 100644 index 0000000000..ba7727eb77 --- /dev/null +++ b/pages.fr/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> Cette commande est un alias de `Where-Object`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr Where-Object` diff --git a/pages.fr/windows/rd.md b/pages.fr/windows/rd.md new file mode 100644 index 0000000000..c30a6c5a77 --- /dev/null +++ b/pages.fr/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> Cette commande est un alias de `rmdir`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr rmdir` diff --git a/pages.fr/windows/sls.md b/pages.fr/windows/sls.md new file mode 100644 index 0000000000..3ac625e912 --- /dev/null +++ b/pages.fr/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> Cette commande est un alias de `where-object`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr where-object` diff --git a/pages.fr/windows/wget.md b/pages.fr/windows/wget.md new file mode 100644 index 0000000000..bf0b6cf249 --- /dev/null +++ b/pages.fr/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> Cette commande est un alias de `wget -p common`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr wget -p common` diff --git a/pages.hi/android/bugreport.md b/pages.hi/android/bugreport.md new file mode 100644 index 0000000000..073291a490 --- /dev/null +++ b/pages.hi/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> एंड्रॉयड बग रिपोर्ट दिखाएँ। +> इस कमांड का उपयोग केवल `adb shell` के माध्यम से किया जा सकता है। +> अधिक जानकारी: . + +- एंड्रॉयड डिवाइस की संपूर्ण बग रिपोर्ट प्रदर्शित करें: + +`bugreport` diff --git a/pages.hi/android/cmd.md b/pages.hi/android/cmd.md new file mode 100644 index 0000000000..f0bc8449ae --- /dev/null +++ b/pages.hi/android/cmd.md @@ -0,0 +1,16 @@ +# cmd + +> एंड्रॉइड सेवा प्रबंधक। +> अधिक जानकारी: . + +- सभी चल रही सेवाओं की सूची[l] बनाएं: + +`cmd -l` + +- किसी विशिष्ट सेवा को कॉल करें: + +`cmd {{सेवा}}` + +- विशिष्ट तर्कों के साथ किसी सेवा को कॉल करें: + +`cmd {{सेवा}} {{तर्क1 तर्क2 ...}}` diff --git a/pages.hi/android/dalvikvm.md b/pages.hi/android/dalvikvm.md new file mode 100644 index 0000000000..01f8851e07 --- /dev/null +++ b/pages.hi/android/dalvikvm.md @@ -0,0 +1,8 @@ +# dalvikvm + +> एंड्रॉइड जावा वर्चुअल मशीन। +> अधिक जानकारी: . + +- एक विशिष्ट जावा प्रोग्राम प्रारंभ करें: + +`dalvikvm -classpath {{फ़ाइल.jar/का/पथ}} {{क्लासनाम}}` diff --git a/pages.hi/android/logcat.md b/pages.hi/android/logcat.md new file mode 100644 index 0000000000..34f7b793a2 --- /dev/null +++ b/pages.hi/android/logcat.md @@ -0,0 +1,24 @@ +# logcat + +> सिस्टम संदेशों का एक लॉग डंप करें, जिसमें त्रुटि होने पर स्टैक ट्रेस और एप्लिकेशन द्वारा लॉग किए गए सूचना संदेश शामिल हों। +> अधिक जानकारी: . + +- सिस्टम लॉग प्रदर्शित करें: + +`logcat` + +- किसी फ़ाइल में सिस्टम लॉग लिखें: + +`logcat -f {{फ़ाइल/का/पथ}}` + +- ऐसी पंक्तियाँ प्रदर्शित करें जो नियमित अभिव्यक्ति से मेल खाती हों: + +`logcat --regex {{नियमित_अभिव्यक्ति}}` + +- किसी विशिष्ट पीआईडी के लिए लॉग प्रदर्शित करें: + +`logcat --pid={{पीआईडी}}` + +- किसी विशिष्ट पैकेज की प्रक्रिया के लिए लॉग प्रदर्शित करें: + +`logcat --pid=$(pidof -s {{पैकेज}})` diff --git a/pages.hi/android/pkg.md b/pages.hi/android/pkg.md new file mode 100644 index 0000000000..645944e1f2 --- /dev/null +++ b/pages.hi/android/pkg.md @@ -0,0 +1,24 @@ +# pkg + +> टर्मक्स के लिए पैकेज प्रबंधन उपयोगिता। +> अधिक जानकारी: . + +- सभी स्थापित पैकेजों को अपग्रेड करें: + +`pkg upgrade` + +- एक पैकेज स्थापित करें: + +`pkg install {{पैकेज}}` + +- एक पैकेज अनइंस्टॉल करें: + +`pkg uninstall {{पैकेज}}` + +- एक पैकेज पुनः स्थापित करें: + +`pkg reinstall {{पैकेज}}` + +- एक पैकेज खोजें: + +`pkg search {{पैकेज}}` diff --git a/pages.hi/android/wm.md b/pages.hi/android/wm.md new file mode 100644 index 0000000000..022e146553 --- /dev/null +++ b/pages.hi/android/wm.md @@ -0,0 +1,13 @@ +# wm + +> एंड्रॉइड डिवाइस की स्क्रीन के बारे में जानकारी दिखाएं। +> इस कमांड का उपयोग केवल `adb shell` के माध्यम से किया जा सकता है। +> अधिक जानकारी: . + +- एंड्रॉइड डिवाइस की स्क्रीन का भौतिक आकार प्रदर्शित करें: + +`wm {{आकार}}` + +- एंड्रॉइड डिवाइस की स्क्रीन का भौतिक घनत्व प्रदर्शित करें: + +`wm {{घनत्व}}` diff --git a/pages.hi/common/!.md b/pages.hi/common/!.md new file mode 100644 index 0000000000..76ca8d793f --- /dev/null +++ b/pages.hi/common/!.md @@ -0,0 +1,24 @@ +# Exclamation mark + +> इतिहास में पाए गए कमांड के साथ विकल्प करने के लिए बैश शेल में अंतर्निर्मित। +> अधिक जानकारी: . + +- सुडो के साथ पिछली कमांड को दोहराएँ: + +`sudo !!` + +- `history` के साथ पाए गए लाइन नंबर के आधार पर एक कमांड के साथ प्रतिस्थापित करें: + +`!{{संख्या}}` + +- निर्धारित संख्या पंक्तियों के आधार पर एक कमांड को प्रतिस्थापित करें: + +`!-{{संख्या}}` + +- सबसे हालिया कमांड से प्रतिस्थापित करें जो `स्ट्रिंग` से शुरू होता है: + +`!{{स्ट्रिंग}}` + +- नवीनतम आदेश के तर्कों के साथ प्रतिस्थापित करें: + +`{{कमांड}} !*` diff --git a/pages.hi/common/bundler.md b/pages.hi/common/bundler.md new file mode 100644 index 0000000000..56a0e774b0 --- /dev/null +++ b/pages.hi/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> यह आदेश `bundle` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr bundle` diff --git a/pages.hi/common/clamav.md b/pages.hi/common/clamav.md new file mode 100644 index 0000000000..def162f46e --- /dev/null +++ b/pages.hi/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> यह आदेश `clamdscan` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr clamdscan` diff --git a/pages.hi/common/cron.md b/pages.hi/common/cron.md new file mode 100644 index 0000000000..69ae98f6eb --- /dev/null +++ b/pages.hi/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> यह आदेश `crontab` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr crontab` diff --git a/pages.hi/common/fossil-ci.md b/pages.hi/common/fossil-ci.md new file mode 100644 index 0000000000..9e001fcbdc --- /dev/null +++ b/pages.hi/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> यह आदेश `fossil-commit` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr fossil-commit` diff --git a/pages.hi/common/fossil-delete.md b/pages.hi/common/fossil-delete.md new file mode 100644 index 0000000000..1e5a66af8d --- /dev/null +++ b/pages.hi/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> यह आदेश `fossil rm` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr fossil rm` diff --git a/pages.hi/common/fossil-forget.md b/pages.hi/common/fossil-forget.md new file mode 100644 index 0000000000..0bd17315c5 --- /dev/null +++ b/pages.hi/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> यह आदेश `fossil rm` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr fossil rm` diff --git a/pages.hi/common/fossil-new.md b/pages.hi/common/fossil-new.md new file mode 100644 index 0000000000..4c67b0d05d --- /dev/null +++ b/pages.hi/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> यह आदेश `fossil-init` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr fossil-init` diff --git a/pages.hi/common/gh-cs.md b/pages.hi/common/gh-cs.md new file mode 100644 index 0000000000..042953bad1 --- /dev/null +++ b/pages.hi/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> यह आदेश `gh-codespace` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr gh-codespace` diff --git a/pages.hi/common/gnmic-sub.md b/pages.hi/common/gnmic-sub.md new file mode 100644 index 0000000000..8fc61a857c --- /dev/null +++ b/pages.hi/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> यह आदेश `gnmic subscribe` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr gnmic subscribe` diff --git a/pages.hi/common/google-chrome.md b/pages.hi/common/google-chrome.md new file mode 100644 index 0000000000..5e6fb7c174 --- /dev/null +++ b/pages.hi/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> यह आदेश `chromium` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr chromium` diff --git a/pages.hi/common/hx.md b/pages.hi/common/hx.md new file mode 100644 index 0000000000..843312339c --- /dev/null +++ b/pages.hi/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> यह आदेश `helix` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr helix` diff --git a/pages.hi/common/kafkacat.md b/pages.hi/common/kafkacat.md new file mode 100644 index 0000000000..8581789a97 --- /dev/null +++ b/pages.hi/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> यह आदेश `kcat` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr kcat` diff --git a/pages.hi/common/ls.md b/pages.hi/common/ls.md index 841c0e8559..55c6abdc70 100644 --- a/pages.hi/common/ls.md +++ b/pages.hi/common/ls.md @@ -1,32 +1,36 @@ # ls -> निर्देशिका सामग्री को सूचीबद्ध करें। -> अधिक जानकारी: । +> डायरेक्टरी की सामग्री की सूची दिखाएं। +> और जानकारी: . -- प्रति पंक्ति एक फ़ाइल की सूची बनाएं: +- एक प्रति पंक्ति फ़ाइलों की सूची दिखाएं: `ls -1` -- छिपी हुई फाइलों सहित सभी फाइलों की सूची बनाएं: +- सभी फ़ाइलें दिखाएं, छुपी हुई फ़ाइलें समेत: `ls -a` -- सभी फाइलों को सूचीबद्ध करें, '/' के साथ निर्देशिका नामों को समाप्त करें: +- सभी फ़ाइलों की सूची दिखाएं, जहाँ नामों के आखिर में `/` जोड़ा गया है: `ls -F` -- सभी फ़ाइलों की लंबी प्रारूप सूची (अनुमतियाँ, स्वामित्व, आकार और परिवर्तन तिथि): +- सभी फ़ाइलों की लॉन्ग सूची (अनुमतियाँ, स्वामित्व, आकार, और संशोधन तिथि) दिखाएं: `ls -la` -- मानव पठनीय इकाइयों (KiB, MiB, GiB) का उपयोग करके प्रदर्शित आकार के साथ लंबी प्रारूप सूची: +- लॉन्ग सूची जिसमें ह्यूमन-रीडेबल इकाइयों (KiB, MiB, GiB) का उपयोग करके आकार दिखाया गया है: `ls -lh` -- आकार के अनुसार क्रमबद्ध लंबी सूची (घटते हुए): +- आकार के आधार पर क्रमबद्ध की गई लॉन्ग सूची (अवरोही): `ls -lS` -- संशोधन की तारीख (सबसे पहले) द्वारा क्रमबद्ध सभी फाइलों की लंबी प्रारूप सूची: +- संशोधन तिथि के क्रम में क्रमबद्ध की गई सभी फ़ाइलों की लॉन्ग सूची (सबसे पुरानी पहले): `ls -ltr` + +- केवल डायरेक्टरी दिखाएं: + +`ls -d */` diff --git a/pages.hi/common/lzcat.md b/pages.hi/common/lzcat.md new file mode 100644 index 0000000000..68c5bf3344 --- /dev/null +++ b/pages.hi/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> यह आदेश `xz` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr xz` diff --git a/pages.hi/common/lzma.md b/pages.hi/common/lzma.md new file mode 100644 index 0000000000..fbc4feebca --- /dev/null +++ b/pages.hi/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> यह आदेश `xz` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr xz` diff --git a/pages.hi/common/mv.md b/pages.hi/common/mv.md index 3c9b3116fb..4640829d44 100644 --- a/pages.hi/common/mv.md +++ b/pages.hi/common/mv.md @@ -5,24 +5,24 @@ - किसी फ़ाइल को मनमाना स्थान पर ले जाएँ: -`mv {{स्रोत}} {{लक्ष्य}}` +`mv {{स्रोत/का/पथ}} {{लक्ष्य/का/पथ}}` - फ़ाइल नाम रखते हुए फ़ाइलों को दूसरी निर्देशिका में ले जाएँ: -`mv {{स्रोत1}} {{स्रोत2}} {{स्रोत3}} {{लक्ष्य_निर्देशिका}}` +`mv {{स्रोत1/का/पथ स्रोत2/का/पथ ...}} {{लक्ष्य_निर्देशिका/का/पथ}}` - मौजूदा फाइलों को अधिलेखित करने से पहले पुष्टि के लिए संकेत न दें: -`mv -f {{स्रोत}} {{लक्ष्य}}` +`mv -f {{स्रोत/का/पथ}} {{लक्ष्य/का/पथ}}` - फ़ाइल अनुमतियों की परवाह किए बिना, मौजूदा फ़ाइलों को अधिलेखित करने से पहले पुष्टि के लिए संकेत दें: -`mv -i {{स्रोत}} {{लक्ष्य}}` +`mv -i {{स्रोत/का/पथ}} {{लक्ष्य/का/पथ}}` - लक्ष्य पर मौजूदा फाइलों को अधिलेखित न करें: -`mv -n {{स्रोत}} {{लक्ष्य}}` +`mv -n {{स्रोत/का/पथ}} {{लक्ष्य/का/पथ}}` - फ़ाइलों को वर्बोज़ मोड में ले जाएँ, फ़ाइलों को स्थानांतरित करने के बाद दिखाएँ: -`mv -v {{स्रोत}} {{लक्ष्य}}` +`mv -v {{स्रोत/का/पथ}} {{लक्ष्य/का/पथ}}` diff --git a/pages.hi/common/neofetch.md b/pages.hi/common/neofetch.md index fa1111c229..1744f772bd 100644 --- a/pages.hi/common/neofetch.md +++ b/pages.hi/common/neofetch.md @@ -1,7 +1,7 @@ # neofetch > आपके ऑपरेटिंग सिस्टम, सॉफ्टवेयर और हार्डवेयर के बारे में जानकारी प्रदर्शित करने के लिए CLI टूल। -> अधिक जानकारी: . +> अधिक जानकारी: । - डिफ़ॉल्ट कॉन्फ़िगरेशन लौटाएं, और इसे बनाएं यदि यह पहली बार प्रोग्राम चलता है: diff --git a/pages.hi/common/nm-classic.md b/pages.hi/common/nm-classic.md new file mode 100644 index 0000000000..50cdaf8699 --- /dev/null +++ b/pages.hi/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> यह आदेश `nm` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr nm` diff --git a/pages.hi/common/ntl.md b/pages.hi/common/ntl.md new file mode 100644 index 0000000000..0e7c0b98f3 --- /dev/null +++ b/pages.hi/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> यह आदेश `netlify` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr netlify` diff --git a/pages.hi/common/ptpython3.md b/pages.hi/common/ptpython3.md new file mode 100644 index 0000000000..a56c953f9f --- /dev/null +++ b/pages.hi/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> यह आदेश `ptpython` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr ptpython` diff --git a/pages.hi/common/python3.md b/pages.hi/common/python3.md new file mode 100644 index 0000000000..97ebc38732 --- /dev/null +++ b/pages.hi/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> यह आदेश `python` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr python` diff --git a/pages.hi/common/rcat.md b/pages.hi/common/rcat.md new file mode 100644 index 0000000000..342cfbad1c --- /dev/null +++ b/pages.hi/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> यह आदेश `rc` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr rc` diff --git a/pages.hi/common/ripgrep.md b/pages.hi/common/ripgrep.md new file mode 100644 index 0000000000..b523ca569b --- /dev/null +++ b/pages.hi/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> यह आदेश `rg` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr rg` diff --git a/pages.hi/common/todoman.md b/pages.hi/common/todoman.md new file mode 100644 index 0000000000..2d3aa66b66 --- /dev/null +++ b/pages.hi/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> यह आदेश `todo` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr todo` diff --git a/pages.hi/common/touch.md b/pages.hi/common/touch.md index 291023f8fd..db3dd9c575 100644 --- a/pages.hi/common/touch.md +++ b/pages.hi/common/touch.md @@ -1,7 +1,7 @@ # touch > एक फ़ाइल का उपयोग और संशोधन समय (atime, mtime) बदलें। -> अधिक जानकारी: । +> अधिक जानकारी: । - एक नई खाली फ़ाइल बनाएं (मौजूदा फ़ाइल के लिए समय बदल दें): diff --git a/pages.hi/common/transmission.md b/pages.hi/common/transmission.md new file mode 100644 index 0000000000..e103c5e412 --- /dev/null +++ b/pages.hi/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> यह आदेश `transmission-daemon` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr transmission-daemon` diff --git a/pages.hi/common/unlzma.md b/pages.hi/common/unlzma.md new file mode 100644 index 0000000000..da1b89387f --- /dev/null +++ b/pages.hi/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> यह आदेश `xz` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr xz` diff --git a/pages.hi/common/unxz.md b/pages.hi/common/unxz.md new file mode 100644 index 0000000000..0ce05ed70c --- /dev/null +++ b/pages.hi/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> यह आदेश `xz` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr xz` diff --git a/pages.hi/common/wget.md b/pages.hi/common/wget.md index 6d23fcba5e..097521a0b4 100644 --- a/pages.hi/common/wget.md +++ b/pages.hi/common/wget.md @@ -2,7 +2,7 @@ > वेब से फ़ाइलें डाउनलोड करें। > HTTP, HTTPS और FTP का समर्थन करता है। -> अधिक जानकारी: . +> अधिक जानकारी: । - किसी फ़ाइल में URL की अंतर्वस्तु डाउनलोड करें (इस मामले में "foo" नाम दिया गया है): diff --git a/pages.hi/common/xzcat.md b/pages.hi/common/xzcat.md new file mode 100644 index 0000000000..3ab5b71a17 --- /dev/null +++ b/pages.hi/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> यह आदेश `xz` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr xz` diff --git a/pages.hi/linux/alternatives.md b/pages.hi/linux/alternatives.md new file mode 100644 index 0000000000..898126278d --- /dev/null +++ b/pages.hi/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> यह आदेश `update-alternatives` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr update-alternatives` diff --git a/pages.hi/linux/apt.md b/pages.hi/linux/apt.md new file mode 100644 index 0000000000..7a36d85909 --- /dev/null +++ b/pages.hi/linux/apt.md @@ -0,0 +1,38 @@ +# apt + +> डेबियन आधारित वितरणों के लिए पैकेज प्रबंधन उपयोगिता। +> उबंटू संस्करण १६.०४ और बाद में इंटरैक्टिव रूप से उपयोग किए जाने पर `apt-get` के लिए अनुशंसित प्रतिस्थापन। +> अन्य पैकेज प्रबंधकों में समतुल्य कमांड के लिए, देखें । +> अधिक जानकारी: . + +- उपलब्ध पैकेजों और संस्करणों की सूची को अपडेट करें (इसे अन्य `apt` कमांड से पहले चलाने की अनुशंसा की जाती है): + +`sudo apt update` + +- दिए गए पैकेज की खोज करें: + +`apt search {{पैकेज}}` + +- दिए गए पैकेज के लिए जानकारी दिखाएं: + +`apt show {{पैकेज}}` + +- एक पैकेज इनस्टॉल करें, या इसे नवीनतम उपलब्ध संस्करण में अपडेट करें: + +`sudo apt install {{पैकेज}}` + +- एक पैकेज निकालें (`remove` के बजाय `purge` का उपयोग करने से इसकी कॉन्फ़िगरेशन फ़ाइलें भी हट जाती हैं): + +`sudo apt remove {{पैकेज}}` + +- सभी इनस्टॉल पैकेजों को उनके नवीनतम उपलब्ध संस्करणों में अपग्रेड करें: + +`sudo apt upgrade` + +- उपलब्ध, इन्सटाल्ड और अपग्रेड करने योग्य पैकेजों की सूची बनाएं: + +`apt list` + +- इन्सटाल्ड पैकेजों की सूची बनाएं: + +`apt list --installed` diff --git a/pages.hi/linux/archinstall.md b/pages.hi/linux/archinstall.md new file mode 100644 index 0000000000..e5b27d7bf3 --- /dev/null +++ b/pages.hi/linux/archinstall.md @@ -0,0 +1,12 @@ +# archinstall + +> एक सहायक लाइब्रेरी जो आर्क लिनक्स (Arch Linux) की स्थापना को स्वचालित करती है। +> अधिक जानकारी: . + +- इंटरैक्टिव इंस्टॉलर प्रारंभ करें: + +`archinstall` + +- पूर्व निर्धारित इंस्टॉलर प्रारंभ करें: + +`archinstall {{minimal|unattended}}` diff --git a/pages.hi/linux/batcat.md b/pages.hi/linux/batcat.md new file mode 100644 index 0000000000..2c7bb6871a --- /dev/null +++ b/pages.hi/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> यह आदेश `bat` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr bat` diff --git a/pages.hi/linux/bluetoothctl.md b/pages.hi/linux/bluetoothctl.md new file mode 100644 index 0000000000..3326c371a8 --- /dev/null +++ b/pages.hi/linux/bluetoothctl.md @@ -0,0 +1,36 @@ +# bluetoothctl + +> ब्लूटूथ उपकरणों का प्रबंधन करें। +> अधिक जानकारी: . + +- `bluetoothctl` शैल में प्रवेश करें: + +`bluetoothctl` + +- सभी ज्ञात उपकरणों की सूची दिखाएं: + +`bluetoothctl devices` + +- ब्लूटूथ नियंत्रक को चालने या बंद करें: + +`bluetoothctl power {{on|off}}` + +- किसी उपकरण के साथ जोड़ें: + +`bluetoothctl pair {{mac_address}}` + +- किसी उपकरण को हटाएं: + +`bluetoothctl remove {{mac_address}}` + +- एक जुड़े हुए उपकरण से कनेक्ट करें: + +`bluetoothctl connect {{mac_address}}` + +- एक जुड़े हुए उपकरण से डिसकनेक्ट करें: + +`bluetoothctl disconnect {{mac_address}}` + +- मदद दिखाएं: + +`bluetoothctl help` diff --git a/pages.hi/linux/bootctl.md b/pages.hi/linux/bootctl.md new file mode 100644 index 0000000000..64f68e3b78 --- /dev/null +++ b/pages.hi/linux/bootctl.md @@ -0,0 +1,28 @@ +# bootctl + +> EFI फर्मवेयर बूट सेटिंग्स का नियंत्रण करें और बूट लोडर प्रबंधित करें। +> अधिक जानकारी: . + +- सिस्टम फर्मवेयर और बूटलोडर के बारे में जानकारी दिखाएं: + +`bootctl status` + +- सभी उपलब्ध बूटलोडर प्रविष्टियाँ दिखाएं: + +`bootctl list` + +- अगले बूट पर सिस्टम फर्मवेयर में बूट करने के लिए एक फ़्लैग सेट करें (`sudo systemctl reboot --firmware-setup` के समान): + +`sudo bootctl reboot-to-firmware true` + +- EFI सिस्टम पार्टीशन के पथ की निर्धारण करें (डिफ़ॉल्ट `/efi/`, `/boot/`, या `/boot/efi`): + +`bootctl --esp-path={{/efi_system_partition/के/पथ/के/लिए}}` + +- `systemd-boot` को EFI सिस्टम पार्टीशन में इंस्टॉल करें: + +`sudo bootctl install` + +- EFI सिस्टम पार्टीशन से `systemd-boot` के सभी स्थापित संस्करणों को हटाएं: + +`sudo bootctl remove` diff --git a/pages.hi/linux/bspwm.md b/pages.hi/linux/bspwm.md new file mode 100644 index 0000000000..8373dbba35 --- /dev/null +++ b/pages.hi/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> यह आदेश `bspc` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr bspc` diff --git a/pages.hi/linux/btrfs.md b/pages.hi/linux/btrfs.md new file mode 100644 index 0000000000..d71f0844f0 --- /dev/null +++ b/pages.hi/linux/btrfs.md @@ -0,0 +1,25 @@ +# btrfs + +> लिनक्स के लिए कॉपी-ऑन-राइट (COW) सिद्धांत पर आधारित एक फ़ाइल सिस्टम। +> कुछ सब-कमांड जैसे `btrfs device`, उनका खुद का उपयोग दस्तावेज़न है। +> अधिक जानकारी: . + +- उप-वॉल्यूम बनाएं: + +`sudo btrfs subvolume create {{पथ/से/उप-वॉल्यूम}}` + +- उप-वॉल्यूमों की सूची दिखाएं: + +`sudo btrfs subvolume list {{पथ/से/माउंट_बिंदु}}` + +- स्थान उपयोग सूचना दिखाएं: + +`sudo btrfs filesystem df {{पथ/से/माउंट_बिंदु}}` + +- कोटा सक्षम करें: + +`sudo btrfs quota enable {{पथ/से/उप-वॉल्यूम}}` + +- कोटा दिखाएं: + +`sudo btrfs qgroup show {{पथ/से/उप-वॉल्यूम}}` diff --git a/pages.hi/linux/cat.md b/pages.hi/linux/cat.md new file mode 100644 index 0000000000..bd37539036 --- /dev/null +++ b/pages.hi/linux/cat.md @@ -0,0 +1,32 @@ +# cat + +> फ़ाइलों को प्रिंट करता है और जोड़ता है। +> अधिक जानकारी: . + +- फ़ाइल की सामग्री को मानक (standard) आउटपुट पर प्रिंट करें: + +`cat {{फ़ाइल/का/पथ}}` + +- एक आउटपुट फ़ाइल में कई फ़ाइलों को सम्‍मिलित करें: + +`cat {{फ़ाइल1/का/पथ फ़ाइल2/का/पथ ...}} > {{आउटपुट_फ़ाइल/का/पथ}}` + +- आउटपुट फ़ाइल में कई फ़ाइलें जोड़ें: + +`cat {{फ़ाइल1/का/पथ फ़ाइल2/का/पथ ...}} >> {{आउटपुट_फ़ाइल/का/पथ}}` + +- फ़ाइल की सामग्री को अनबफर्ड ([u]nbuffered) मोड में आउटपुट फ़ाइल में कॉपी करें: + +`cat -u {{/dev/tty12}} > {{/dev/tty13}}` + +- फ़ाइल में `stdin` लिखें: + +`cat - > {{फ़ाइल/का/पथ}}` + +- संख्या ([n]umber) सभी आउटपुट लाइनें: + +`cat -n {{फ़ाइल/का/पथ}}` + +- गैर-मुद्रण योग्य और खाली स्थान वाले वर्ण प्रदर्शित करें (`M-` उपसर्ग के साथ यदि गैर-ASCII है): + +`cat -v -t -e {{फ़ाइल/का/पथ}}` diff --git a/pages.hi/linux/cc.md b/pages.hi/linux/cc.md new file mode 100644 index 0000000000..266502f31e --- /dev/null +++ b/pages.hi/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> यह आदेश `gcc` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr gcc` diff --git a/pages.hi/linux/cgroups.md b/pages.hi/linux/cgroups.md new file mode 100644 index 0000000000..3fb679c74b --- /dev/null +++ b/pages.hi/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> यह आदेश `cgclassify` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr cgclassify` diff --git a/pages.hi/linux/cpuid.md b/pages.hi/linux/cpuid.md index 8ededa9fa5..ec3bb91547 100644 --- a/pages.hi/linux/cpuid.md +++ b/pages.hi/linux/cpuid.md @@ -1,7 +1,7 @@ # cpuid > सभी सीपीयू के बारे में विस्तृत जानकारी दिखाएं। -> अधिक जानकारी: . +> अधिक जानकारी: । - सभी CPU के लिए जानकारी दिखाएं: diff --git a/pages.hi/linux/disown.md b/pages.hi/linux/disown.md new file mode 100644 index 0000000000..791991a6df --- /dev/null +++ b/pages.hi/linux/disown.md @@ -0,0 +1,21 @@ +# disown + +> उप-प्रक्रियाओं को उस शेल से परे रहने की अनुमति दें जिससे वे जुड़े हुए हैं। +> `jobs` कमांड भी देखें। +> अधिक जानकारी: . + +- वर्तमान कार्य को अस्वीकार करें: + +`disown` + +- किसी विशिष्ट कार्य को अस्वीकार करे: + +`disown %{{कार्य_की_संख्या}}` + +- सभी कार्य को अस्वीकार करें: + +`disown -a` + +- कार्य को रखें (इसे अस्वीकार न करें), लेकिन इसे चिह्नित करें ताकि भविष्य में शेल निकास पर कोई SIGHUP प्राप्त न हो।: + +`disown -h %{{कार्य_की_संख्या}}` diff --git a/pages.hi/linux/dpkg.md b/pages.hi/linux/dpkg.md new file mode 100644 index 0000000000..c6310f409a --- /dev/null +++ b/pages.hi/linux/dpkg.md @@ -0,0 +1,30 @@ +# dpkg + +> डेबियन पैकेज प्रबंधक। +> कुछ उपकमांड जैसे `dpkg deb` के अपने स्वयं के उपयोग दस्तावेज़ हैं। +> अन्य पैकेज प्रबंधकों में समकक्ष कमांड के लिए, देखें . +> अधिक जानकारी: . + +- एक पैकेज इनस्टॉल करें: + +`dpkg -i {{फ़ाइल.deb/का/पथ}}` + +- एक पैकेज निकालें: + +`dpkg -r {{पैकेज_का_नाम}}` + +- इन्सटाल्ड पैकेजों की सूची बनाएं: + +`dpkg -l {{पैटर्न}}` + +- पैकेज की सामग्री सूचीबद्ध करें: + +`dpkg -L {{पैकेज_का_नाम}}` + +- लोकल पैकेज फ़ाइल की सामग्री सूचीबद्ध करें: + +`dpkg -c {{फ़ाइल.deb/का/पथ}}` + +- पता लगाएं कि कौन सा पैकेज फ़ाइल का मालिक है: + +`dpkg -S {{फ़ाइल_का_नाम}}` diff --git a/pages.hi/linux/fdisk.md b/pages.hi/linux/fdisk.md new file mode 100644 index 0000000000..714f7c97d9 --- /dev/null +++ b/pages.hi/linux/fdisk.md @@ -0,0 +1,37 @@ +# fdisk + +> एक प्रोग्राम जो हार्ड डिस्क पर पार्टीशन टेबल और पार्टीशन का प्रबंधन करने के लिए है। +> देखें भी: `partprobe`. +> अधिक जानकारी: . + +- पार्टीशनों की सूची दिखाएं: + +`sudo fdisk -l` + +- पार्टीशन मैनिपुलेटर शुरू करें: + +`sudo fdisk {{/dev/sdX}}` + +- एक डिस्क को पार्टीशन करते समय, एक पार्टीशन बनाएं: + +`n` + +- एक डिस्क को पार्टीशन करते समय, डिलीट करने के लिए एक पार्टीशन का चयन करें: + +`d` + +- एक डिस्क को पार्टीशन करते समय, पार्टीशन टेबल देखें: + +`p` + +- एक डिस्क को पार्टीशन करते समय, की गई परिवर्तनों को लिखें: + +`w` + +- एक डिस्क को पार्टीशन करते समय, की गई परिवर्तनों को छोड़ दें: + +`q` + +- एक डिस्क को पार्टीशन करते समय, हेल्प मेनू खोलें: + +`m` diff --git a/pages.hi/linux/flatpak.md b/pages.hi/linux/flatpak.md new file mode 100644 index 0000000000..7ded72ad49 --- /dev/null +++ b/pages.hi/linux/flatpak.md @@ -0,0 +1,36 @@ +# flatpak + +> फ्लैटपैक अनुप्रयोग और रनटाइम बनाएं, स्थापित करें और चलाएं। +> अधिक जानकारी: . + +- एक स्थापित अनुप्रयोग चलाएं: + +`flatpak run {{नाम}}` + +- दूरस्थ स्रोत से एक अनुप्रयोग स्थापित करें: + +`flatpak install {{दूरस्थ}} {{नाम}}` + +- सभी स्थापित अनुप्रयोग और रनटाइम की सूची दिखाएं: + +`flatpak list` + +- सभी स्थापित अनुप्रयोग और रनटाइम को अद्यतित करें: + +`flatpak update` + +- एक दूरस्थ स्रोत जोड़ें: + +`flatpak remote-add --if-not-exists {{दूरस्थ_नाम}} {{दूरस्थ_URL}}` + +- एक स्थापित अनुप्रयोग हटाएं: + +`flatpak remove {{नाम}}` + +- सभी अउपयोग नहीं किए जा रहे अनुप्रयोग हटाएं: + +`flatpak remove --unused` + +- एक स्थापित अनुप्रयोग के बारे में जानकारी दिखाएं: + +`flatpak info {{नाम}}` diff --git a/pages.hi/linux/free.md b/pages.hi/linux/free.md index f40d8d39f1..cbf261c163 100644 --- a/pages.hi/linux/free.md +++ b/pages.hi/linux/free.md @@ -1,7 +1,7 @@ # free > सिस्टम में 'Free' और यूज्ड मेमोरी की मात्रा दिखाता है। -> अधिक जानकारी: . +> अधिक जानकारी: । - सिस्टम मेमोरी दिखाएं: diff --git a/pages.hi/linux/ip-route-list.md b/pages.hi/linux/ip-route-list.md new file mode 100644 index 0000000000..0cb821a689 --- /dev/null +++ b/pages.hi/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> यह आदेश `ip-route-show` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr ip-route-show` diff --git a/pages.hi/linux/lsblk.md b/pages.hi/linux/lsblk.md index fa8a72f087..202356f33d 100644 --- a/pages.hi/linux/lsblk.md +++ b/pages.hi/linux/lsblk.md @@ -1,7 +1,7 @@ # lsblk > उपकरणों के बारे में जानकारी सूचीबद्ध करता है। -> अधिक जानकारी: . +> अधिक जानकारी: । - सभी भंडारण उपकरणों को ट्री-समान प्रारूप में सूचीबद्ध करें: diff --git a/pages.hi/linux/lsusb.md b/pages.hi/linux/lsusb.md index 7a3dcccad5..4587a702f4 100644 --- a/pages.hi/linux/lsusb.md +++ b/pages.hi/linux/lsusb.md @@ -1,7 +1,7 @@ # lsusb > यूएसबी बसों और उनसे जुड़े उपकरणों के बारे में जानकारी प्रदर्शित करें। -> अधिक जानकारी: . +> अधिक जानकारी: । - उपलब्ध सभी USB उपकरणों की सूची बनाएं: diff --git a/pages.hi/linux/makepkg.md b/pages.hi/linux/makepkg.md new file mode 100644 index 0000000000..00810b918c --- /dev/null +++ b/pages.hi/linux/makepkg.md @@ -0,0 +1,33 @@ +# makepkg + +> एक पैकेज बनाएं जिसका उपयोग `pacman` के साथ किया जा सकता है। +> डिफ़ॉल्ट रूप में वर्तमान काम कर रहे डायरेक्टरी में `PKGBUILD` फ़ाइल का उपयोग करता है। +> अधिक जानकारी: . + +- एक पैकेज बनाएं: + +`makepkg` + +- एक पैकेज बनाएं और इसके डिपेंडेंसियों को इंस्टॉल करें: + +`makepkg --syncdeps` + +- एक पैकेज बनाएं, इसके डिपेंडेंसियों को इंस्टॉल करें, और फिर इसे सिस्टम में इंस्टॉल करें: + +`makepkg --syncdeps --install` + +- एक पैकेज बनाएं, लेकिन स्रोत के हैश की जाँच को छोड़ें: + +`makepkg --skipchecksums` + +- सफलता पूर्वक बनाने के बाद काम के डायरेक्टरी को साफ करें: + +`makepkg --clean` + +- स्रोतों के हैश की जाँच करें: + +`makepkg --verifysource` + +- स्रोत जानकारी बनाएं और `.SRCINFO` में सहेजें: + +`makepkg --printsrcinfo > .SRCINFO` diff --git a/pages.hi/linux/megadl.md b/pages.hi/linux/megadl.md new file mode 100644 index 0000000000..85b08487fb --- /dev/null +++ b/pages.hi/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> यह आदेश `megatools-dl` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr megatools-dl` diff --git a/pages.hi/linux/nologin.md b/pages.hi/linux/nologin.md new file mode 100644 index 0000000000..452509b429 --- /dev/null +++ b/pages.hi/linux/nologin.md @@ -0,0 +1,12 @@ +# nologin + +> उपयोक्ता को लॉग इन करने से रोकने वाला वैकल्पिक शैल. +> अधिक जानकारी: . + +- उपयोक्ता को लॉग इन करने से रोकने के लिए उपयोक्ता की लॉगिन शैल को 'नोलॉगिन' पर सेट करें: + +`chsh -s {{उपयोगकर्ता}} nologin` + +- नोलॉगिन लॉगिन शैल वाले उपयोक्ताओं के लिए संविभिन्न संदेश का अनुकूलन करें: + +`echo "{{अस्वीकृत_लॉगिन_संदेश}}" > /etc/nologin.txt` diff --git a/pages.hi/linux/parted.md b/pages.hi/linux/parted.md new file mode 100644 index 0000000000..1d2a590a40 --- /dev/null +++ b/pages.hi/linux/parted.md @@ -0,0 +1,37 @@ +# parted + +> एक पार्टीशन मैनिपुलेशन प्रोग्राम। +> देखें भी: `partprobe`. +> अधिक जानकारी: . + +- सभी ब्लॉक डिवाइस पर पार्टीशनों की सूची दिखाएं: + +`sudo parted --list` + +- निर्दिष्ट डिस्क के साथ इंटरैक्टिव मोड शुरू करें: + +`sudo parted {{/dev/sdX}}` + +- निर्दिष्ट लेबल-प्रकार का नया पार्टीशन टेबल बनाएं: + +`sudo parted --script {{/dev/sdX}} mklabel {{aix|amiga|bsd|dvh|gpt|loop|mac|msdos|pc98|sun}}` + +- इंटरैक्टिव मोड में पार्टीशन की जानकारी दिखाएं: + +`print` + +- इंटरैक्टिव मोड में डिस्क का चयन करें: + +`select {{/dev/sdX}}` + +- इंटरैक्टिव मोड में निर्दिष्ट फ़ाइल सिस्टम के साथ 16 जीबी का पार्टीशन बनाएं: + +`mkpart {{primary|logical|extended}} {{btrfs|ext2|ext3|ext4|fat16|fat32|hfs|hfs+|linux-swap|ntfs|reiserfs|udf|xfs}} {{0%}} {{16G}}` + +- इंटरैक्टिव मोड में पार्टीशन का आकार बदलें: + +`resizepart {{/dev/sdXN}} {{पार्टीशन की अंतिम स्थिति}}` + +- इंटरैक्टिव मोड में एक पार्टीशन को हटाएं: + +`rm {{/dev/sdXN}}` diff --git a/pages.hi/linux/reboot.md b/pages.hi/linux/reboot.md index a279868da7..abec534287 100644 --- a/pages.hi/linux/reboot.md +++ b/pages.hi/linux/reboot.md @@ -1,7 +1,7 @@ # reboot > मशीन को `reboot` करें -> अधिक जानकारी: . +> अधिक जानकारी: । - तुरंत पुनरारंभ करें: diff --git a/pages.hi/linux/reset.md b/pages.hi/linux/reset.md index 19abab50b5..dc820d2523 100644 --- a/pages.hi/linux/reset.md +++ b/pages.hi/linux/reset.md @@ -1,7 +1,7 @@ # reset > वर्तमान टर्मिनल को `reset` करें। संपूर्ण टर्मिनल स्क्रीन को साफ़ करता है। -> अधिक जानकारी: . +> अधिक जानकारी: । - वर्तमान टर्मिनल को `reset` करें: diff --git a/pages.hi/linux/systemctl.md b/pages.hi/linux/systemctl.md new file mode 100644 index 0000000000..e410e459ce --- /dev/null +++ b/pages.hi/linux/systemctl.md @@ -0,0 +1,36 @@ +# systemctl + +> systemd सिस्टम और सेवा प्रबंधक को नियंत्रित करें। +> अधिक जानकारी: . + +- सभी चल रही सेवाएँ दिखाएं: + +`systemctl status` + +- विफल इकाइयों की सूची: + +`systemctl --failed` + +- सेवा को चालना/रोकना/पुनरारंभ करना/रीलोड करना: + +`systemctl {{start|stop|restart|reload}} {{इकाई}}` + +- एक इकाई की स्थिति दिखाएं: + +`systemctl status {{इकाई}}` + +- एक इकाई को बूटअप पर स्वचलित रूप से चालाने/रोकने के लिए सक्षम/अक्षम करें: + +`systemctl {{enable|disable}} {{इकाई}}` + +- एक इकाई को सक्षम/अक्षम करने और मैन्युअल सक्रियण से रोकने/हटाने के लिए मास्क/अनमास्क करें: + +`systemctl {{mask|unmask}} {{इकाई}}` + +- systemd को पुनः लोड करें, नई या बदली गई इकाइयों के लिए स्कैन करें: + +`systemctl daemon-reload` + +- क्या किसी इकाई को सक्षम किया गया है, यह जाँचें: + +`systemctl is-enabled {{इकाई}}` diff --git a/pages.hi/linux/ubuntu-bug.md b/pages.hi/linux/ubuntu-bug.md new file mode 100644 index 0000000000..b84812b802 --- /dev/null +++ b/pages.hi/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> यह आदेश `apport-bug` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr apport-bug` diff --git a/pages.hi/osx/aa.md b/pages.hi/osx/aa.md new file mode 100644 index 0000000000..d9821f5ebb --- /dev/null +++ b/pages.hi/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> यह आदेश `yaa` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr yaa` diff --git a/pages.hi/osx/base64.md b/pages.hi/osx/base64.md new file mode 100644 index 0000000000..31aeefda05 --- /dev/null +++ b/pages.hi/osx/base64.md @@ -0,0 +1,20 @@ +# base64 + +> बेस 64 प्रस्तुतीकरण का उपयोग करके कोड और डिकोड करें। +> अधिक जानकारी: . + +- फ़ाइल को कोड करें: + +`base64 --input={{सादा_फ़ाइल}}` + +- फ़ाइल को डिकोड करें: + +`base64 --decode --input={{base64_फ़ाइल}}` + +- `stdin` से कोड करें: + +`echo -n "{{सादा_फ़ाइल}}" | base64` + +- `stdin` से डिकोड करें: + +`echo -n {{base64_फ़ाइल}} | base64 --decode` diff --git a/pages.hi/osx/g[.md b/pages.hi/osx/g[.md new file mode 100644 index 0000000000..512e5a493d --- /dev/null +++ b/pages.hi/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> यह आदेश `-p linux [` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux [` diff --git a/pages.hi/osx/gawk.md b/pages.hi/osx/gawk.md new file mode 100644 index 0000000000..84c38e0673 --- /dev/null +++ b/pages.hi/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> यह आदेश `-p linux awk` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux awk` diff --git a/pages.hi/osx/gb2sum.md b/pages.hi/osx/gb2sum.md new file mode 100644 index 0000000000..f52fb9e356 --- /dev/null +++ b/pages.hi/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> यह आदेश `-p linux b2sum` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux b2sum` diff --git a/pages.hi/osx/gbase32.md b/pages.hi/osx/gbase32.md new file mode 100644 index 0000000000..34e823e835 --- /dev/null +++ b/pages.hi/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> यह आदेश `-p linux base32` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux base32` diff --git a/pages.hi/osx/gbase64.md b/pages.hi/osx/gbase64.md new file mode 100644 index 0000000000..74491beea9 --- /dev/null +++ b/pages.hi/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> यह आदेश `-p linux base64` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux base64` diff --git a/pages.hi/osx/gbasename.md b/pages.hi/osx/gbasename.md new file mode 100644 index 0000000000..248f633512 --- /dev/null +++ b/pages.hi/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> यह आदेश `-p linux basename` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux basename` diff --git a/pages.hi/osx/gbasenc.md b/pages.hi/osx/gbasenc.md new file mode 100644 index 0000000000..66ecec69e3 --- /dev/null +++ b/pages.hi/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> यह आदेश `-p linux basenc` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux basenc` diff --git a/pages.hi/osx/gcat.md b/pages.hi/osx/gcat.md new file mode 100644 index 0000000000..eb64199ac3 --- /dev/null +++ b/pages.hi/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> यह आदेश `-p linux cat` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux cat` diff --git a/pages.hi/osx/gchcon.md b/pages.hi/osx/gchcon.md new file mode 100644 index 0000000000..1b368813df --- /dev/null +++ b/pages.hi/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> यह आदेश `-p linux chcon` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux chcon` diff --git a/pages.hi/osx/gchgrp.md b/pages.hi/osx/gchgrp.md new file mode 100644 index 0000000000..69c8e03ec0 --- /dev/null +++ b/pages.hi/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> यह आदेश `-p linux chgrp` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux chgrp` diff --git a/pages.hi/osx/gchmod.md b/pages.hi/osx/gchmod.md new file mode 100644 index 0000000000..eb4b3d3362 --- /dev/null +++ b/pages.hi/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> यह आदेश `-p linux chmod` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux chmod` diff --git a/pages.hi/osx/gchown.md b/pages.hi/osx/gchown.md new file mode 100644 index 0000000000..ccd47bb01d --- /dev/null +++ b/pages.hi/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> यह आदेश `-p linux chown` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux chown` diff --git a/pages.hi/osx/gchroot.md b/pages.hi/osx/gchroot.md new file mode 100644 index 0000000000..ce0979f03b --- /dev/null +++ b/pages.hi/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> यह आदेश `-p linux chroot` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux chroot` diff --git a/pages.hi/osx/gcksum.md b/pages.hi/osx/gcksum.md new file mode 100644 index 0000000000..b5e08ab89f --- /dev/null +++ b/pages.hi/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> यह आदेश `-p linux cksum` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux cksum` diff --git a/pages.hi/osx/gcomm.md b/pages.hi/osx/gcomm.md new file mode 100644 index 0000000000..3b08992984 --- /dev/null +++ b/pages.hi/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> यह आदेश `-p linux comm` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux comm` diff --git a/pages.hi/osx/gcp.md b/pages.hi/osx/gcp.md new file mode 100644 index 0000000000..efa1eac3a3 --- /dev/null +++ b/pages.hi/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> यह आदेश `-p linux cp` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux cp` diff --git a/pages.hi/osx/gcsplit.md b/pages.hi/osx/gcsplit.md new file mode 100644 index 0000000000..9bbf0e5485 --- /dev/null +++ b/pages.hi/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> यह आदेश `-p linux csplit` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux csplit` diff --git a/pages.hi/osx/gcut.md b/pages.hi/osx/gcut.md new file mode 100644 index 0000000000..e2ed7530ae --- /dev/null +++ b/pages.hi/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> यह आदेश `-p linux cut` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux cut` diff --git a/pages.hi/osx/gdate.md b/pages.hi/osx/gdate.md new file mode 100644 index 0000000000..6d80aff739 --- /dev/null +++ b/pages.hi/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> यह आदेश `-p linux date` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux date` diff --git a/pages.hi/osx/gdd.md b/pages.hi/osx/gdd.md new file mode 100644 index 0000000000..77650ea727 --- /dev/null +++ b/pages.hi/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> यह आदेश `-p linux dd` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux dd` diff --git a/pages.hi/osx/gdf.md b/pages.hi/osx/gdf.md new file mode 100644 index 0000000000..e9f72adfb3 --- /dev/null +++ b/pages.hi/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> यह आदेश `-p linux df` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux df` diff --git a/pages.hi/osx/gdir.md b/pages.hi/osx/gdir.md new file mode 100644 index 0000000000..638f64a57b --- /dev/null +++ b/pages.hi/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> यह आदेश `-p linux dir` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux dir` diff --git a/pages.hi/osx/gdircolors.md b/pages.hi/osx/gdircolors.md new file mode 100644 index 0000000000..97723c292b --- /dev/null +++ b/pages.hi/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> यह आदेश `-p linux dircolors` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux dircolors` diff --git a/pages.hi/osx/gdirname.md b/pages.hi/osx/gdirname.md new file mode 100644 index 0000000000..890d4b71cf --- /dev/null +++ b/pages.hi/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> यह आदेश `-p linux dirname` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux dirname` diff --git a/pages.hi/osx/gdnsdomainname.md b/pages.hi/osx/gdnsdomainname.md new file mode 100644 index 0000000000..dd0c5787c6 --- /dev/null +++ b/pages.hi/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> यह आदेश `-p linux dnsdomainname` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux dnsdomainname` diff --git a/pages.hi/osx/gecho.md b/pages.hi/osx/gecho.md new file mode 100644 index 0000000000..b65409ed2f --- /dev/null +++ b/pages.hi/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> यह आदेश `-p linux echo` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux echo` diff --git a/pages.hi/osx/ged.md b/pages.hi/osx/ged.md new file mode 100644 index 0000000000..a095bb5e93 --- /dev/null +++ b/pages.hi/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> यह आदेश `-p linux ed` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux ed` diff --git a/pages.hi/osx/gegrep.md b/pages.hi/osx/gegrep.md new file mode 100644 index 0000000000..d798c12ee6 --- /dev/null +++ b/pages.hi/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> यह आदेश `-p linux egrep` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux egrep` diff --git a/pages.hi/osx/genv.md b/pages.hi/osx/genv.md new file mode 100644 index 0000000000..8a77951d82 --- /dev/null +++ b/pages.hi/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> यह आदेश `-p linux env` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux env` diff --git a/pages.hi/osx/gexpand.md b/pages.hi/osx/gexpand.md new file mode 100644 index 0000000000..77e147d8df --- /dev/null +++ b/pages.hi/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> यह आदेश `-p linux expand` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux expand` diff --git a/pages.hi/osx/gexpr.md b/pages.hi/osx/gexpr.md new file mode 100644 index 0000000000..24148abda5 --- /dev/null +++ b/pages.hi/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> यह आदेश `-p linux expr` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux expr` diff --git a/pages.hi/osx/gfactor.md b/pages.hi/osx/gfactor.md new file mode 100644 index 0000000000..d54db81335 --- /dev/null +++ b/pages.hi/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> यह आदेश `-p linux factor` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux factor` diff --git a/pages.hi/osx/gfalse.md b/pages.hi/osx/gfalse.md new file mode 100644 index 0000000000..35f0351386 --- /dev/null +++ b/pages.hi/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> यह आदेश `-p linux false` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux false` diff --git a/pages.hi/osx/gfgrep.md b/pages.hi/osx/gfgrep.md new file mode 100644 index 0000000000..46e3aa7d0c --- /dev/null +++ b/pages.hi/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> यह आदेश `-p linux fgrep` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux fgrep` diff --git a/pages.hi/osx/gfind.md b/pages.hi/osx/gfind.md new file mode 100644 index 0000000000..f8440fe41d --- /dev/null +++ b/pages.hi/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> यह आदेश `-p linux find` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux find` diff --git a/pages.hi/osx/gfmt.md b/pages.hi/osx/gfmt.md new file mode 100644 index 0000000000..9010b86f41 --- /dev/null +++ b/pages.hi/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> यह आदेश `-p linux fmt` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux fmt` diff --git a/pages.hi/osx/gfold.md b/pages.hi/osx/gfold.md new file mode 100644 index 0000000000..c2feed0686 --- /dev/null +++ b/pages.hi/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> यह आदेश `-p linux fold` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux fold` diff --git a/pages.hi/osx/gftp.md b/pages.hi/osx/gftp.md new file mode 100644 index 0000000000..f6bfde6fa5 --- /dev/null +++ b/pages.hi/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> यह आदेश `-p linux ftp` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux ftp` diff --git a/pages.hi/osx/ggrep.md b/pages.hi/osx/ggrep.md new file mode 100644 index 0000000000..8f7525ead8 --- /dev/null +++ b/pages.hi/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> यह आदेश `-p linux grep` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux grep` diff --git a/pages.hi/osx/ggroups.md b/pages.hi/osx/ggroups.md new file mode 100644 index 0000000000..f82643168f --- /dev/null +++ b/pages.hi/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> यह आदेश `-p linux groups` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux groups` diff --git a/pages.hi/osx/ghead.md b/pages.hi/osx/ghead.md new file mode 100644 index 0000000000..13b042806e --- /dev/null +++ b/pages.hi/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> यह आदेश `-p linux head` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux head` diff --git a/pages.hi/osx/ghostid.md b/pages.hi/osx/ghostid.md new file mode 100644 index 0000000000..86cd115cdc --- /dev/null +++ b/pages.hi/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> यह आदेश `-p linux hostid` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux hostid` diff --git a/pages.hi/osx/ghostname.md b/pages.hi/osx/ghostname.md new file mode 100644 index 0000000000..1b34b6bcf6 --- /dev/null +++ b/pages.hi/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> यह आदेश `-p linux hostname` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux hostname` diff --git a/pages.hi/osx/gid.md b/pages.hi/osx/gid.md new file mode 100644 index 0000000000..20ecb432ff --- /dev/null +++ b/pages.hi/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> यह आदेश `-p linux id` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux id` diff --git a/pages.hi/osx/gifconfig.md b/pages.hi/osx/gifconfig.md new file mode 100644 index 0000000000..5920248d72 --- /dev/null +++ b/pages.hi/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> यह आदेश `-p linux ifconfig` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux ifconfig` diff --git a/pages.hi/osx/gindent.md b/pages.hi/osx/gindent.md new file mode 100644 index 0000000000..d53c748d10 --- /dev/null +++ b/pages.hi/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> यह आदेश `-p linux indent` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux indent` diff --git a/pages.hi/osx/ginstall.md b/pages.hi/osx/ginstall.md new file mode 100644 index 0000000000..3c21c225e9 --- /dev/null +++ b/pages.hi/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> यह आदेश `-p linux install` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux install` diff --git a/pages.hi/osx/gjoin.md b/pages.hi/osx/gjoin.md new file mode 100644 index 0000000000..41686e3d2c --- /dev/null +++ b/pages.hi/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> यह आदेश `-p linux join` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux join` diff --git a/pages.hi/osx/gkill.md b/pages.hi/osx/gkill.md new file mode 100644 index 0000000000..31f13752db --- /dev/null +++ b/pages.hi/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> यह आदेश `-p linux kill` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux kill` diff --git a/pages.hi/osx/glibtool.md b/pages.hi/osx/glibtool.md new file mode 100644 index 0000000000..5763c4bb29 --- /dev/null +++ b/pages.hi/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> यह आदेश `-p linux libtool` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux libtool` diff --git a/pages.hi/osx/glibtoolize.md b/pages.hi/osx/glibtoolize.md new file mode 100644 index 0000000000..b353629ef9 --- /dev/null +++ b/pages.hi/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> यह आदेश `-p linux libtoolize` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux libtoolize` diff --git a/pages.hi/osx/glink.md b/pages.hi/osx/glink.md new file mode 100644 index 0000000000..c9d1087a5c --- /dev/null +++ b/pages.hi/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> यह आदेश `-p linux link` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux link` diff --git a/pages.hi/osx/gln.md b/pages.hi/osx/gln.md new file mode 100644 index 0000000000..c99a3a4d2e --- /dev/null +++ b/pages.hi/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> यह आदेश `-p linux ln` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux ln` diff --git a/pages.hi/osx/glocate.md b/pages.hi/osx/glocate.md new file mode 100644 index 0000000000..5077bc7708 --- /dev/null +++ b/pages.hi/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> यह आदेश `-p linux locate` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux locate` diff --git a/pages.hi/osx/glogger.md b/pages.hi/osx/glogger.md new file mode 100644 index 0000000000..844e5a791a --- /dev/null +++ b/pages.hi/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> यह आदेश `-p linux logger` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux logger` diff --git a/pages.hi/osx/glogname.md b/pages.hi/osx/glogname.md new file mode 100644 index 0000000000..3ae695d742 --- /dev/null +++ b/pages.hi/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> यह आदेश `-p linux logname` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux logname` diff --git a/pages.hi/osx/gls.md b/pages.hi/osx/gls.md new file mode 100644 index 0000000000..37eef65b4a --- /dev/null +++ b/pages.hi/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> यह आदेश `-p linux ls` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux ls` diff --git a/pages.hi/osx/gmake.md b/pages.hi/osx/gmake.md new file mode 100644 index 0000000000..414ea50b6a --- /dev/null +++ b/pages.hi/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> यह आदेश `-p linux make` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux make` diff --git a/pages.hi/osx/gmd5sum.md b/pages.hi/osx/gmd5sum.md new file mode 100644 index 0000000000..d7ae6f80cb --- /dev/null +++ b/pages.hi/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> यह आदेश `-p linux md5sum` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux md5sum` diff --git a/pages.hi/osx/gmkdir.md b/pages.hi/osx/gmkdir.md new file mode 100644 index 0000000000..874c9e7f00 --- /dev/null +++ b/pages.hi/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> यह आदेश `-p linux mkdir` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux mkdir` diff --git a/pages.hi/osx/gmkfifo.md b/pages.hi/osx/gmkfifo.md new file mode 100644 index 0000000000..1bfb13310e --- /dev/null +++ b/pages.hi/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> यह आदेश `-p linux mkfifo` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux mkfifo` diff --git a/pages.hi/osx/gmknod.md b/pages.hi/osx/gmknod.md new file mode 100644 index 0000000000..55f70befc5 --- /dev/null +++ b/pages.hi/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> यह आदेश `-p linux mknod` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux mknod` diff --git a/pages.hi/osx/gmktemp.md b/pages.hi/osx/gmktemp.md new file mode 100644 index 0000000000..e366d9ae89 --- /dev/null +++ b/pages.hi/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> यह आदेश `-p linux mktemp` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux mktemp` diff --git a/pages.hi/osx/gmv.md b/pages.hi/osx/gmv.md new file mode 100644 index 0000000000..7132235671 --- /dev/null +++ b/pages.hi/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> यह आदेश `-p linux mv` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux mv` diff --git a/pages.hi/osx/gnice.md b/pages.hi/osx/gnice.md new file mode 100644 index 0000000000..96f5208818 --- /dev/null +++ b/pages.hi/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> यह आदेश `-p linux nice` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux nice` diff --git a/pages.hi/osx/gnl.md b/pages.hi/osx/gnl.md new file mode 100644 index 0000000000..728a81b678 --- /dev/null +++ b/pages.hi/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> यह आदेश `-p linux nl` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux nl` diff --git a/pages.hi/osx/gnohup.md b/pages.hi/osx/gnohup.md new file mode 100644 index 0000000000..15b009b52a --- /dev/null +++ b/pages.hi/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> यह आदेश `-p linux nohup` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux nohup` diff --git a/pages.hi/osx/gnproc.md b/pages.hi/osx/gnproc.md new file mode 100644 index 0000000000..6a7b7f60c2 --- /dev/null +++ b/pages.hi/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> यह आदेश `-p linux nproc` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux nproc` diff --git a/pages.hi/osx/gnumfmt.md b/pages.hi/osx/gnumfmt.md new file mode 100644 index 0000000000..d4cf0ca686 --- /dev/null +++ b/pages.hi/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> यह आदेश `-p linux numfmt` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux numfmt` diff --git a/pages.hi/osx/god.md b/pages.hi/osx/god.md new file mode 100644 index 0000000000..db52cd22aa --- /dev/null +++ b/pages.hi/osx/god.md @@ -0,0 +1,7 @@ +# god + +> यह आदेश `-p linux od` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux od` diff --git a/pages.hi/osx/gpaste.md b/pages.hi/osx/gpaste.md new file mode 100644 index 0000000000..e4ab066fd2 --- /dev/null +++ b/pages.hi/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> यह आदेश `-p linux paste` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux paste` diff --git a/pages.hi/osx/gpathchk.md b/pages.hi/osx/gpathchk.md new file mode 100644 index 0000000000..4c8b49fe1e --- /dev/null +++ b/pages.hi/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> यह आदेश `-p linux pathchk` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux pathchk` diff --git a/pages.hi/osx/gping.md b/pages.hi/osx/gping.md new file mode 100644 index 0000000000..6ec0058e78 --- /dev/null +++ b/pages.hi/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> यह आदेश `-p linux ping` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux ping` diff --git a/pages.hi/osx/gping6.md b/pages.hi/osx/gping6.md new file mode 100644 index 0000000000..6ff45ba4b6 --- /dev/null +++ b/pages.hi/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> यह आदेश `-p linux ping6` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux ping6` diff --git a/pages.hi/osx/gpinky.md b/pages.hi/osx/gpinky.md new file mode 100644 index 0000000000..96a794fef1 --- /dev/null +++ b/pages.hi/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> यह आदेश `-p linux pinky` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux pinky` diff --git a/pages.hi/osx/gpr.md b/pages.hi/osx/gpr.md new file mode 100644 index 0000000000..e60416c9f5 --- /dev/null +++ b/pages.hi/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> यह आदेश `-p linux pr` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux pr` diff --git a/pages.hi/osx/gprintenv.md b/pages.hi/osx/gprintenv.md new file mode 100644 index 0000000000..e46981055b --- /dev/null +++ b/pages.hi/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> यह आदेश `-p linux printenv` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux printenv` diff --git a/pages.hi/osx/gprintf.md b/pages.hi/osx/gprintf.md new file mode 100644 index 0000000000..f378b20e75 --- /dev/null +++ b/pages.hi/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> यह आदेश `-p linux printf` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux printf` diff --git a/pages.hi/osx/gptx.md b/pages.hi/osx/gptx.md new file mode 100644 index 0000000000..f4e6c77728 --- /dev/null +++ b/pages.hi/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> यह आदेश `-p linux ptx` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux ptx` diff --git a/pages.hi/osx/gpwd.md b/pages.hi/osx/gpwd.md new file mode 100644 index 0000000000..be5dac0be2 --- /dev/null +++ b/pages.hi/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> यह आदेश `-p linux pwd` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux pwd` diff --git a/pages.hi/osx/grcp.md b/pages.hi/osx/grcp.md new file mode 100644 index 0000000000..c765585e11 --- /dev/null +++ b/pages.hi/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> यह आदेश `-p linux rcp` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux rcp` diff --git a/pages.hi/osx/greadlink.md b/pages.hi/osx/greadlink.md new file mode 100644 index 0000000000..257c9af89f --- /dev/null +++ b/pages.hi/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> यह आदेश `-p linux readlink` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux readlink` diff --git a/pages.hi/osx/grealpath.md b/pages.hi/osx/grealpath.md new file mode 100644 index 0000000000..222cd9d1d3 --- /dev/null +++ b/pages.hi/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> यह आदेश `-p linux realpath` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux realpath` diff --git a/pages.hi/osx/grexec.md b/pages.hi/osx/grexec.md new file mode 100644 index 0000000000..1c8e753da4 --- /dev/null +++ b/pages.hi/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> यह आदेश `-p linux rexec` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux rexec` diff --git a/pages.hi/osx/grlogin.md b/pages.hi/osx/grlogin.md new file mode 100644 index 0000000000..e936ae7eed --- /dev/null +++ b/pages.hi/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> यह आदेश `-p linux rlogin` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux rlogin` diff --git a/pages.hi/osx/grm.md b/pages.hi/osx/grm.md new file mode 100644 index 0000000000..42b85776fa --- /dev/null +++ b/pages.hi/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> यह आदेश `-p linux rm` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux rm` diff --git a/pages.hi/osx/grmdir.md b/pages.hi/osx/grmdir.md new file mode 100644 index 0000000000..633849fea0 --- /dev/null +++ b/pages.hi/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> यह आदेश `-p linux rmdir` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux rmdir` diff --git a/pages.hi/osx/grsh.md b/pages.hi/osx/grsh.md new file mode 100644 index 0000000000..a5a1b651ed --- /dev/null +++ b/pages.hi/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> यह आदेश `-p linux rsh` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux rsh` diff --git a/pages.hi/osx/gruncon.md b/pages.hi/osx/gruncon.md new file mode 100644 index 0000000000..264d1fd265 --- /dev/null +++ b/pages.hi/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> यह आदेश `-p linux runcon` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux runcon` diff --git a/pages.hi/osx/gsed.md b/pages.hi/osx/gsed.md new file mode 100644 index 0000000000..6d258a670e --- /dev/null +++ b/pages.hi/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> यह आदेश `-p linux sed` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux sed` diff --git a/pages.hi/osx/gseq.md b/pages.hi/osx/gseq.md new file mode 100644 index 0000000000..e10dfdf151 --- /dev/null +++ b/pages.hi/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> यह आदेश `-p linux seq` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux seq` diff --git a/pages.hi/osx/gsha1sum.md b/pages.hi/osx/gsha1sum.md new file mode 100644 index 0000000000..d5b2c12b7a --- /dev/null +++ b/pages.hi/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> यह आदेश `-p linux sha1sum` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux sha1sum` diff --git a/pages.hi/osx/gsha224sum.md b/pages.hi/osx/gsha224sum.md new file mode 100644 index 0000000000..1a359d3e51 --- /dev/null +++ b/pages.hi/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> यह आदेश `-p linux sha224sum` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux sha224sum` diff --git a/pages.hi/osx/gsha256sum.md b/pages.hi/osx/gsha256sum.md new file mode 100644 index 0000000000..2e43049a3b --- /dev/null +++ b/pages.hi/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> यह आदेश `-p linux sha256sum` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux sha256sum` diff --git a/pages.hi/osx/gsha384sum.md b/pages.hi/osx/gsha384sum.md new file mode 100644 index 0000000000..c47a4e45e5 --- /dev/null +++ b/pages.hi/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> यह आदेश `-p linux sha384sum` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux sha384sum` diff --git a/pages.hi/osx/gsha512sum.md b/pages.hi/osx/gsha512sum.md new file mode 100644 index 0000000000..df59956e65 --- /dev/null +++ b/pages.hi/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> यह आदेश `-p linux sha512sum` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux sha512sum` diff --git a/pages.hi/osx/gshred.md b/pages.hi/osx/gshred.md new file mode 100644 index 0000000000..9112555cb8 --- /dev/null +++ b/pages.hi/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> यह आदेश `-p linux shred` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux shred` diff --git a/pages.hi/osx/gshuf.md b/pages.hi/osx/gshuf.md new file mode 100644 index 0000000000..efb34c3be7 --- /dev/null +++ b/pages.hi/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> यह आदेश `-p linux shuf` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux shuf` diff --git a/pages.hi/osx/gsleep.md b/pages.hi/osx/gsleep.md new file mode 100644 index 0000000000..799477652a --- /dev/null +++ b/pages.hi/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> यह आदेश `-p linux sleep` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux sleep` diff --git a/pages.hi/osx/gsort.md b/pages.hi/osx/gsort.md new file mode 100644 index 0000000000..2f8d4faff0 --- /dev/null +++ b/pages.hi/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> यह आदेश `-p linux sort` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux sort` diff --git a/pages.hi/osx/gsplit.md b/pages.hi/osx/gsplit.md new file mode 100644 index 0000000000..97a91c9fdd --- /dev/null +++ b/pages.hi/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> यह आदेश `-p linux split` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux split` diff --git a/pages.hi/osx/gstat.md b/pages.hi/osx/gstat.md new file mode 100644 index 0000000000..f457a1597f --- /dev/null +++ b/pages.hi/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> यह आदेश `-p linux stat` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux stat` diff --git a/pages.hi/osx/gstdbuf.md b/pages.hi/osx/gstdbuf.md new file mode 100644 index 0000000000..c7280e4f6f --- /dev/null +++ b/pages.hi/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> यह आदेश `-p linux stdbuf` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux stdbuf` diff --git a/pages.hi/osx/gstty.md b/pages.hi/osx/gstty.md new file mode 100644 index 0000000000..afe562b9fc --- /dev/null +++ b/pages.hi/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> यह आदेश `-p linux stty` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux stty` diff --git a/pages.hi/osx/gsum.md b/pages.hi/osx/gsum.md new file mode 100644 index 0000000000..f6a60bfd40 --- /dev/null +++ b/pages.hi/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> यह आदेश `-p linux sum` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux sum` diff --git a/pages.hi/osx/gsync.md b/pages.hi/osx/gsync.md new file mode 100644 index 0000000000..db5cfed3a9 --- /dev/null +++ b/pages.hi/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> यह आदेश `-p linux sync` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux sync` diff --git a/pages.hi/osx/gtac.md b/pages.hi/osx/gtac.md new file mode 100644 index 0000000000..1383f30847 --- /dev/null +++ b/pages.hi/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> यह आदेश `-p linux tac` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux tac` diff --git a/pages.hi/osx/gtail.md b/pages.hi/osx/gtail.md new file mode 100644 index 0000000000..129d27df43 --- /dev/null +++ b/pages.hi/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> यह आदेश `-p linux tail` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux tail` diff --git a/pages.hi/osx/gtalk.md b/pages.hi/osx/gtalk.md new file mode 100644 index 0000000000..526b790c45 --- /dev/null +++ b/pages.hi/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> यह आदेश `-p linux talk` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux talk` diff --git a/pages.hi/osx/gtar.md b/pages.hi/osx/gtar.md new file mode 100644 index 0000000000..aa59fa68b3 --- /dev/null +++ b/pages.hi/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> यह आदेश `-p linux tar` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux tar` diff --git a/pages.hi/osx/gtee.md b/pages.hi/osx/gtee.md new file mode 100644 index 0000000000..22dcc52479 --- /dev/null +++ b/pages.hi/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> यह आदेश `-p linux tee` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux tee` diff --git a/pages.hi/osx/gtelnet.md b/pages.hi/osx/gtelnet.md new file mode 100644 index 0000000000..b198f59de4 --- /dev/null +++ b/pages.hi/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> यह आदेश `-p linux telnet` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux telnet` diff --git a/pages.hi/osx/gtest.md b/pages.hi/osx/gtest.md new file mode 100644 index 0000000000..fe96e591a6 --- /dev/null +++ b/pages.hi/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> यह आदेश `-p linux test` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux test` diff --git a/pages.hi/osx/gtftp.md b/pages.hi/osx/gtftp.md new file mode 100644 index 0000000000..45b0de9ee7 --- /dev/null +++ b/pages.hi/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> यह आदेश `-p linux tftp` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux tftp` diff --git a/pages.hi/osx/gtime.md b/pages.hi/osx/gtime.md new file mode 100644 index 0000000000..a344dba4a3 --- /dev/null +++ b/pages.hi/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> यह आदेश `-p linux time` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux time` diff --git a/pages.hi/osx/gtimeout.md b/pages.hi/osx/gtimeout.md new file mode 100644 index 0000000000..ff0f2782fb --- /dev/null +++ b/pages.hi/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> यह आदेश `-p linux timeout` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux timeout` diff --git a/pages.hi/osx/gtouch.md b/pages.hi/osx/gtouch.md new file mode 100644 index 0000000000..123c3bd146 --- /dev/null +++ b/pages.hi/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> यह आदेश `-p linux touch` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux touch` diff --git a/pages.hi/osx/gtr.md b/pages.hi/osx/gtr.md new file mode 100644 index 0000000000..3e26a45568 --- /dev/null +++ b/pages.hi/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> यह आदेश `-p linux tr` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux tr` diff --git a/pages.hi/osx/gtraceroute.md b/pages.hi/osx/gtraceroute.md new file mode 100644 index 0000000000..77502f6e78 --- /dev/null +++ b/pages.hi/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> यह आदेश `-p linux traceroute` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux traceroute` diff --git a/pages.hi/osx/gtrue.md b/pages.hi/osx/gtrue.md new file mode 100644 index 0000000000..6f94224315 --- /dev/null +++ b/pages.hi/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> यह आदेश `-p linux true` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux true` diff --git a/pages.hi/osx/gtruncate.md b/pages.hi/osx/gtruncate.md new file mode 100644 index 0000000000..9df1375de5 --- /dev/null +++ b/pages.hi/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> यह आदेश `-p linux truncate` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux truncate` diff --git a/pages.hi/osx/gtsort.md b/pages.hi/osx/gtsort.md new file mode 100644 index 0000000000..ba94b133ef --- /dev/null +++ b/pages.hi/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> यह आदेश `-p linux tsort` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux tsort` diff --git a/pages.hi/osx/gtty.md b/pages.hi/osx/gtty.md new file mode 100644 index 0000000000..68459426ea --- /dev/null +++ b/pages.hi/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> यह आदेश `-p linux tty` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux tty` diff --git a/pages.hi/osx/guname.md b/pages.hi/osx/guname.md new file mode 100644 index 0000000000..10dd96947a --- /dev/null +++ b/pages.hi/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> यह आदेश `-p linux uname` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux uname` diff --git a/pages.hi/osx/gunexpand.md b/pages.hi/osx/gunexpand.md new file mode 100644 index 0000000000..df00e6c800 --- /dev/null +++ b/pages.hi/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> यह आदेश `-p linux unexpand` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux unexpand` diff --git a/pages.hi/osx/guniq.md b/pages.hi/osx/guniq.md new file mode 100644 index 0000000000..a89a05fcfb --- /dev/null +++ b/pages.hi/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> यह आदेश `-p linux uniq` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux uniq` diff --git a/pages.hi/osx/gunits.md b/pages.hi/osx/gunits.md new file mode 100644 index 0000000000..156635cdb6 --- /dev/null +++ b/pages.hi/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> यह आदेश `-p linux units` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux units` diff --git a/pages.hi/osx/gunlink.md b/pages.hi/osx/gunlink.md new file mode 100644 index 0000000000..8087918632 --- /dev/null +++ b/pages.hi/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> यह आदेश `-p linux unlink` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux unlink` diff --git a/pages.hi/osx/gupdatedb.md b/pages.hi/osx/gupdatedb.md new file mode 100644 index 0000000000..5c27541201 --- /dev/null +++ b/pages.hi/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> यह आदेश `-p linux updatedb` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux updatedb` diff --git a/pages.hi/osx/guptime.md b/pages.hi/osx/guptime.md new file mode 100644 index 0000000000..ad1f0eac2e --- /dev/null +++ b/pages.hi/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> यह आदेश `-p linux uptime` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux uptime` diff --git a/pages.hi/osx/gusers.md b/pages.hi/osx/gusers.md new file mode 100644 index 0000000000..c12336ffbf --- /dev/null +++ b/pages.hi/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> यह आदेश `-p linux users` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux users` diff --git a/pages.hi/osx/gvdir.md b/pages.hi/osx/gvdir.md new file mode 100644 index 0000000000..4673a81b53 --- /dev/null +++ b/pages.hi/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> यह आदेश `-p linux vdir` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux vdir` diff --git a/pages.hi/osx/gwc.md b/pages.hi/osx/gwc.md new file mode 100644 index 0000000000..d10e3bd661 --- /dev/null +++ b/pages.hi/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> यह आदेश `-p linux wc` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux wc` diff --git a/pages.hi/osx/gwhich.md b/pages.hi/osx/gwhich.md new file mode 100644 index 0000000000..6882d8c01f --- /dev/null +++ b/pages.hi/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> यह आदेश `-p linux which` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux which` diff --git a/pages.hi/osx/gwho.md b/pages.hi/osx/gwho.md new file mode 100644 index 0000000000..77f61dbff1 --- /dev/null +++ b/pages.hi/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> यह आदेश `-p linux who` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux who` diff --git a/pages.hi/osx/gwhoami.md b/pages.hi/osx/gwhoami.md new file mode 100644 index 0000000000..5d89293dca --- /dev/null +++ b/pages.hi/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> यह आदेश `-p linux whoami` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux whoami` diff --git a/pages.hi/osx/gwhois.md b/pages.hi/osx/gwhois.md new file mode 100644 index 0000000000..4a09338ee6 --- /dev/null +++ b/pages.hi/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> यह आदेश `-p linux whois` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux whois` diff --git a/pages.hi/osx/gxargs.md b/pages.hi/osx/gxargs.md new file mode 100644 index 0000000000..207228a015 --- /dev/null +++ b/pages.hi/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> यह आदेश `-p linux xargs` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux xargs` diff --git a/pages.hi/osx/gyes.md b/pages.hi/osx/gyes.md new file mode 100644 index 0000000000..7c26f470d4 --- /dev/null +++ b/pages.hi/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> यह आदेश `-p linux yes` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr -p linux yes` diff --git a/pages.hi/osx/launchd.md b/pages.hi/osx/launchd.md new file mode 100644 index 0000000000..ddbf81e851 --- /dev/null +++ b/pages.hi/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> यह आदेश `launchctl` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr launchctl` diff --git a/pages.hi/sunos/truss.md b/pages.hi/sunos/truss.md new file mode 100644 index 0000000000..f9dbc1de6a --- /dev/null +++ b/pages.hi/sunos/truss.md @@ -0,0 +1,25 @@ +# truss + +> सिस्टम कॉल को ट्रेस करने के लिए समस्या निराकरण टूल। +> SunOS का संगत strace। +> अधिक जानकारी: . + +- एक प्रोग्राम को ट्रेस करने के लिए प्रायोगिकरण करके उसकी सभी उपक्रमों का पालन करें: + +`truss -f {{प्रोग्राम}}` + +- उसके PID द्वारा एक विशिष्ट प्रक्रिया को ट्रेस करने का प्रारंभ करें: + +`truss -p {{pid}}` + +- एक प्रोग्राम को ट्रेस करने के लिए प्रायोगिकरण करके उसके आर्ग्यूमेंट और पर्यावरण परियोजना दिखाने का प्रारंभ करें: + +`truss -a -e {{प्रोग्राम}}` + +- प्रत्येक सिस्टम कॉल के लिए समय, कॉल्स, और त्रुटियों की गणना करें और प्रोग्राम बाहर निकलने पर एक संक्षेप रिपोर्ट करें: + +`truss -c -p {{pid}}` + +- सिस्टम कॉल के द्वारा आउटपुट को फ़िल्टर करते हुए एक प्रक्रिया को ट्रेस करें: + +`truss -p {{pid}} -t {{सिस्टम_कॉल_नाम}}` diff --git a/pages.hi/windows/cd.md b/pages.hi/windows/cd.md new file mode 100644 index 0000000000..4da7767ca8 --- /dev/null +++ b/pages.hi/windows/cd.md @@ -0,0 +1,24 @@ +# cd + +> वर्तमान कार्यशील निर्देशिका प्रदर्शित करें या किसी भिन्न निर्देशिका में ले जाएँ। +> अधिक जानकारी: . + +- वर्तमान निर्देशिका का पथ प्रदर्शित करें: + +`cd` + +- वर्तमान ड्राइव के रूट पर जाएँ: + +`cd \` + +- वर्तमान निर्देशिका के जनक तक जाएँ: + +`cd ..` + +- उसी ड्राइव में एक विशिष्ट निर्देशिका पर जाएँ: + +`cd {{निर्देशिका\का\पथ}}` + +- किसी भिन्न [d]ड्राइव में एक विशिष्ट निर्देशिका पर जाएँ: + +`cd /d {{C}}:{{निर्देशिका\का\पथ}}` diff --git a/pages.hi/windows/certutil.md b/pages.hi/windows/certutil.md new file mode 100644 index 0000000000..28febfb083 --- /dev/null +++ b/pages.hi/windows/certutil.md @@ -0,0 +1,24 @@ +# certutil + +> सर्टीफिकेट सूचना को प्रबंधित और विन्यसित करने के लिए एक टूल। +> अधिक जानकारी: . + +- विन्यास सूचना या फ़ाइलों को डंप करें: + +`certutil {{फ़ाइलनाम}}` + +- एक फ़ाइल को हेक्साडेसिमल में एनकोड करें: + +`certutil -encodehex {{इनपुट_फ़ाइल/का/पथ}} {{आउटपुट_फ़ाइल/का/पथ}}` + +- एक फ़ाइल को बेस64 में एनकोड करें: + +`certutil -encode {{इनपुट_फ़ाइल/का/पथ}} {{आउटपुट_फ़ाइल/का/पथ}}` + +- बेस64-एनकोड फ़ाइल को डीकोड करें: + +`certutil -decode {{इनपुट_फ़ाइल/का/पथ}} {{आउटपुट_फ़ाइल/का/पथ}}` + +- एक फ़ाइल पर एक आपातकालिक हैश उत्पन्न करें और प्रदर्शित करें: + +`certutil -hashfile {{इनपुट_फ़ाइल/का/पथ}} {{md2|md4|md5|sha1|sha256|sha384|sha512}}` diff --git a/pages.hi/windows/choco-source.md b/pages.hi/windows/choco-source.md new file mode 100644 index 0000000000..cefd2dcbe9 --- /dev/null +++ b/pages.hi/windows/choco-source.md @@ -0,0 +1,32 @@ +# choco source + +> चॉकलेटी वाले पैकेजों के लिए स्रोत प्रबंधित करें। +> अधिक जानकारी: . + +- वर्तमान में उपलब्ध स्रोतों की सूची बनाएं: + +`choco source list` + +- एक नया पैकेज स्रोत जोड़ें: + +`choco source add --name {{नाम}} --source {{यूआरएल}}` + +- क्रेडेंशियल्स के साथ एक नया पैकेज स्रोत जोड़ें: + +`choco source add --name {{नाम}} --source {{यूआरएल}} --user {{उपयोगकर्ता नाम}} --password {{पासवर्ड}}` + +- क्लाइंट प्रमाणपत्र के साथ एक नया पैकेज स्रोत जोड़ें: + +`choco source add --name {{नाम}} --source {{यूआरएल}} --cert {{प्रमाणपत्र_फ़ाइल\का\पथ}}` + +- पैकेज स्रोत सक्षम करें: + +`choco source enable --name {{नाम}}` + +- पैकेज स्रोत को अक्षम करें: + +`choco source disable --name {{नाम}}` + +- पैकेज स्रोत हटाएँ: + +`choco source remove --name {{नाम}}` diff --git a/pages.hi/windows/choco-upgrade.md b/pages.hi/windows/choco-upgrade.md new file mode 100644 index 0000000000..10fceb79e1 --- /dev/null +++ b/pages.hi/windows/choco-upgrade.md @@ -0,0 +1,32 @@ +# choco upgrade + +> चॉकलेटी के साथ एक या अधिक पैकेज अपग्रेड करें। +> अधिक जानकारी: . + +- एक या अधिक स्थान-पृथक पैकेजों को अपग्रेड करें: + +`choco upgrade {{पैकेज1 पैकेज2 ...}}` + +- किसी पैकेज के विशिष्ट संस्करण में अपग्रेड करें: + +`choco upgrade {{पैकेज}} --version {{संस्करण}}` + +- सभी पैकेज अपग्रेड करें: + +`choco upgrade all` + +- निर्दिष्ट अल्पविराम से अलग किए गए पैकेजों को छोड़कर सभी को अपग्रेड करें: + +`choco upgrade all --except "{{पैकेज1 पैकेज2 ...}}"` + +- सभी संकेतों की स्वचालित रूप से पुष्टि करें: + +`choco upgrade {{पैकेज}} --yes` + +- पैकेज प्राप्त करने के लिए एक कस्टम स्रोत निर्दिष्ट करें: + +`choco upgrade {{पैकेज}} --source {{स्रोत_यूआरएल|उपनाम}}` + +- प्रमाणीकरण के लिए उपयोगकर्ता नाम और पासवर्ड प्रदान करें: + +`choco upgrade {{पैकेज}} --user {{उपयोगकर्ता नाम}} --password {{पासवर्ड}}` diff --git a/pages.hi/windows/choco.md b/pages.hi/windows/choco.md new file mode 100644 index 0000000000..1109d79a20 --- /dev/null +++ b/pages.hi/windows/choco.md @@ -0,0 +1,21 @@ +# choco + +> चॉकलेटी पैकेज प्रबंधक। +> `choco install` जैसे कुछ उपकमांड के पास अपना उपयोग दस्तावेज़ भी हैं। +> अधिक जानकारी: . + +- चॉकलेटी आज्ञा को निष्पादित करें: + +`choco {{आज्ञा}}` + +- सामान्य मदद को कॉल करें: + +`choco -?` + +- एक विशिष्ट आज्ञा पर मदद कॉल करें: + +`choco {{आज्ञा}} -?` + +- चॉकलेटी संस्करण की जाँच करें: + +`choco --version` diff --git a/pages.hi/windows/chrome.md b/pages.hi/windows/chrome.md new file mode 100644 index 0000000000..021ef740a6 --- /dev/null +++ b/pages.hi/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> यह आदेश `chromium` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr chromium` diff --git a/pages.hi/windows/cpush.md b/pages.hi/windows/cpush.md new file mode 100644 index 0000000000..1da309a60c --- /dev/null +++ b/pages.hi/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> यह आदेश `choco-push` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr choco-push` diff --git a/pages.hi/windows/curl.md b/pages.hi/windows/curl.md new file mode 100644 index 0000000000..93aa544120 --- /dev/null +++ b/pages.hi/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> यह आदेश `curl -p common` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr curl -p common` diff --git a/pages.hi/windows/date.md b/pages.hi/windows/date.md new file mode 100644 index 0000000000..fb010fd255 --- /dev/null +++ b/pages.hi/windows/date.md @@ -0,0 +1,16 @@ +# date + +> सिस्टम दिनांक प्रदर्शित या सेट करता है। +> अधिक जानकारी: . + +- वर्तमान सिस्टम तिथि प्रदर्शित करें और नई तिथि दर्ज करने का संकेत दें (अपरिवर्तित रखने के लिए खाली छोड़ें): + +`date` + +- नई तिथि का संकेत दिए बिना वर्तमान सिस्टम तिथि प्रदर्शित करें: + +`date /t` + +- वर्तमान सिस्टम दिनांक को किसी विशिष्ट दिनांक में बदलें: + +`date {{महीना}}-{{दिन}}-{{वर्ष}}` diff --git a/pages.hi/windows/exit.md b/pages.hi/windows/exit.md new file mode 100644 index 0000000000..5ea5d82a51 --- /dev/null +++ b/pages.hi/windows/exit.md @@ -0,0 +1,16 @@ +# exit + +> वर्तमान सीएमडी इंस्टेंस या वर्तमान बैच फ़ाइल से बाहर निकलें। +> अधिक जानकारी: . + +- वर्तमान सीएमडी उदाहरण से बाहर निकलें: + +`exit` + +- वर्तमान बैच स्क्रिप्ट से बाहर निकलें: + +`exit /b` + +- विशिष्ट निकास कोड का उपयोग करना बंद करें: + +`exit {{2}}` diff --git a/pages.hi/windows/ipconfig.md b/pages.hi/windows/ipconfig.md new file mode 100644 index 0000000000..9ca3f6d623 --- /dev/null +++ b/pages.hi/windows/ipconfig.md @@ -0,0 +1,28 @@ +# ipconfig + +> विंडोज़ के नेटवर्क कॉन्फ़िगरेशन को प्रदर्शित और प्रबंधित करें। +> अधिक जानकारी: . + +- नेटवर्क अडैप्टर की एक सूची दिखाएँ: + +`ipconfig` + +- नेटवर्क अडैप्टर की एक विस्तृत सूची दिखाएँ: + +`ipconfig /all` + +- नेटवर्क अडैप्टर के लिए आईपी पते नवीनीकृत करें: + +`ipconfig /renew {{अडैप्टर}}` + +- नेटवर्क अडैप्टर के लिए आईपी पते खाली करें: + +`ipconfig /release {{अडैप्टर}}` + +- स्थानीय डीएनएस कैश दिखाएँ: + +`ipconfig /displaydns` + +- स्थानीय डीएनएस कैश से सभी डेटा हटाएँ: + +`ipconfig /flushdns` diff --git a/pages.hi/windows/iwr.md b/pages.hi/windows/iwr.md new file mode 100644 index 0000000000..1d0eedc2d9 --- /dev/null +++ b/pages.hi/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> यह आदेश `invoke-webrequest` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr invoke-webrequest` diff --git a/pages.hi/windows/pwsh-where.md b/pages.hi/windows/pwsh-where.md new file mode 100644 index 0000000000..2020eddb48 --- /dev/null +++ b/pages.hi/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> यह आदेश `Where-Object` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr Where-Object` diff --git a/pages.hi/windows/rd.md b/pages.hi/windows/rd.md new file mode 100644 index 0000000000..22209e2e4d --- /dev/null +++ b/pages.hi/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> यह आदेश `rmdir` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr rmdir` diff --git a/pages.hi/windows/scoop.md b/pages.hi/windows/scoop.md new file mode 100644 index 0000000000..47028e37a9 --- /dev/null +++ b/pages.hi/windows/scoop.md @@ -0,0 +1,32 @@ +# scoop + +> स्कूप पैकेज मैनेजर। +> अधिक जानकारी: . + +- एक पैकेज स्थापित करें: + +`scoop install {{पैकेज}}` + +- एक पैकेज निकालें: + +`scoop uninstall {{पैकेज}}` + +- सभी स्थापित पैकेजों को अद्यतन करें: + +`scoop update --all` + +- स्थापित पैकेजों की सूची बनाएं: + +`scoop list` + +- किसी पैकेज के बारे में जानकारी प्रदर्शित करें: + +`scoop info {{पैकेज}}` + +- एक पैकेज खोजें: + +`scoop search {{पैकेज}}` + +- सभी पैकेजों के पुराने संस्करण हटाएँ और डाउनलोड कैश साफ़ करें: + +`scoop cleanup --cache --all` diff --git a/pages.hi/windows/sls.md b/pages.hi/windows/sls.md new file mode 100644 index 0000000000..72b90b6bd7 --- /dev/null +++ b/pages.hi/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> यह आदेश `where-object` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr where-object` diff --git a/pages.hi/windows/wget.md b/pages.hi/windows/wget.md new file mode 100644 index 0000000000..228cf8f87f --- /dev/null +++ b/pages.hi/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> यह आदेश `wget -p common` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr wget -p common` diff --git a/pages.hi/windows/winget.md b/pages.hi/windows/winget.md new file mode 100644 index 0000000000..d1464752b0 --- /dev/null +++ b/pages.hi/windows/winget.md @@ -0,0 +1,36 @@ +# winget + +> विंडोज़ पैकेज प्रबंधक। +> अधिक जानकारी: . + +- एक पैकेज इनस्टॉल करें: + +`winget install {{पैकेज}}` + +- एक पैकेज निकालें (अनइंस्टॉल करें): (नोट: `uninstall` की जगह `remove` का भी इस्तेमाल किया जा सकता है): + +`winget uninstall {{पैकेज}}` + +- पैकेज के बारे में जानकारी प्रदर्शित करें: + +`winget show {{पैकेज}}` + +- पैकेज की खोज करें: + +`winget search {{पैकेज}}` + +- सभी पैकेज़ को नवीनतम संस्करणों में अपग्रेड करें: + +`winget upgrade --all` + +- `winget` के साथ प्रबंधित इन्सटाल्ड पैकेजों की सूची बनाएं: + +`winget list --source winget` + +- किसी फ़ाइल से पैकेज आयात करें, या स्थापित पैकेज़ को किसी फ़ाइल में निर्यात करें: + +`winget {{import|export}} {{--import-file|--output}} {{फ़ाइल/का/पथ}}` + +- विंगेट-पीकेजीएस(winget-pkgs) रिपॉजिटरी में पीआर(PR) सबमिट करने से पहले मैनिफ़ेस्ट को सत्यापित करें: + +`winget validate {{प्रकट/का/पथ}}` diff --git a/pages.id/android/bugreport.md b/pages.id/android/bugreport.md index 37f4e83f67..ed0b14d6f4 100644 --- a/pages.id/android/bugreport.md +++ b/pages.id/android/bugreport.md @@ -2,7 +2,7 @@ > Tunjukkan sebuah laporan masalah bagi Android. > Perintah ini hanya dapat digunakan di dalam `adb shell`. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . - Tunjukkan laporan masalah perangkat Android secara lengkap: diff --git a/pages.id/android/bugreportz.md b/pages.id/android/bugreportz.md index 4677e0ee2d..8a6d2bf3f7 100644 --- a/pages.id/android/bugreportz.md +++ b/pages.id/android/bugreportz.md @@ -2,7 +2,7 @@ > Buat sebuah laporan masalah Android dalam format file arsip (zip). > Perintah ini hanya dapat digunakan di dalam `adb shell`. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . - Buatkan sebuah arsip laporan masalah perangkat Android secara lengkap: diff --git a/pages.id/android/cmd.md b/pages.id/android/cmd.md index d861bf032b..d99b1a73d2 100644 --- a/pages.id/android/cmd.md +++ b/pages.id/android/cmd.md @@ -1,7 +1,7 @@ # cmd > Manajer layanan (daemon) untuk Android. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . - Lihat daftar layanan yang sedang berjalan: diff --git a/pages.id/android/logcat.md b/pages.id/android/logcat.md index d58295c08b..ce3efa67a1 100644 --- a/pages.id/android/logcat.md +++ b/pages.id/android/logcat.md @@ -14,3 +14,11 @@ - Saring informasi log berdasarkan sintaks ekspresi reguler (regex) tertentu: `logcat --regex {{regular_expression}}` + +- Tampilkan log untuk nomor induk (PID) program yang sedang dijalankan: + +`logcat --pid={{pid}}` + +- Tampilkan log untuk (kemasan) aplikasi yang sedang dijalankan: + +`logcat --pid=$(pidof -s {{nama_kemasan_aplikasi}})` diff --git a/pages.id/android/screencap.md b/pages.id/android/screencap.md new file mode 100644 index 0000000000..21cebd20c3 --- /dev/null +++ b/pages.id/android/screencap.md @@ -0,0 +1,9 @@ +# screencap + +> Lakukan tangkapan (screenshot) layar perangkat Anda. +> Perintah ini hanya dapat dijalankan melalui `adb shell`. +> Informasi lebih lanjut: . + +- Lakukan tangkapan layar (screenshot): + +`screencap {{path/to/file}}` diff --git a/pages.id/common/7z.md b/pages.id/common/7z.md index 27d07e3913..6fb90f214c 100644 --- a/pages.id/common/7z.md +++ b/pages.id/common/7z.md @@ -1,7 +1,7 @@ # 7z > Pengarsip file dengan rasio kompresi yang tinggi. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . - Meng[a]rsipkan sebuah file atau direktori: @@ -19,7 +19,7 @@ `7z x {{jalan/menuju/arsip.7z}} -o{{jalan/menuju/direktori}}` -- Mengekstrak sebuah file arsip menuju stdout: +- Mengekstrak sebuah file arsip menuju `stdout`: `7z x {{jalan/menuju/arsip.7z}} -so` diff --git a/pages.id/common/7za.md b/pages.id/common/7za.md index 60b03e4658..55c37e36dc 100644 --- a/pages.id/common/7za.md +++ b/pages.id/common/7za.md @@ -2,7 +2,7 @@ > Pengarsip file dengan rasio kompresi yang tinggi. > Serupa dengan `7z` namun mendukung lebih sedikit format file arsip dan dapat digunakan lintas sistem operasi. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . - Meng[a]rsipkan sebuah file atau direktori: @@ -20,7 +20,7 @@ `7za x {{jalan/menuju/arsip.7z}} -o{{jalan/menuju/direktori}}` -- Mengekstrak sebuah file arsip menuju stdout: +- Mengekstrak sebuah file arsip menuju `stdout`: `7za x {{jalan/menuju/arsip.7z}} -so` diff --git a/pages.id/common/7zr.md b/pages.id/common/7zr.md index d0c7b036cc..bed476cede 100644 --- a/pages.id/common/7zr.md +++ b/pages.id/common/7zr.md @@ -2,7 +2,7 @@ > Pengarsip file dengan rasio kompresi yang tinggi. > Serupa dengan `7z` namun mendukung format file arsip `.7z` saja. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . - Meng[a]rsipkan sebuah file atau direktori: @@ -10,7 +10,7 @@ - Mengenkripsi sebuah file arsip (termasuk nama-nama file yang terkandung di dalamnya): -`7zr a {{jalan/menuju/arsip_terenkripsi.7z}} -p{{kata sandi}} -mhe=on {{jalan/menuju/arsip.7z}}` +`7zr a {{jalan/menuju/arsip_terenkripsi.7z}} -p{{kata sandi}} -mhe={{on}} {{jalan/menuju/arsip.7z}}` - Mengekstrak sebuah file arsip dengan mempertahankan struktur direktori asli: @@ -20,7 +20,7 @@ `7zr x {{jalan/menuju/arsip.7z}} -o{{jalan/menuju/direktori}}` -- Mengekstrak sebuah file arsip menuju stdout: +- Mengekstrak sebuah file arsip menuju `stdout`: `7zr x {{jalan/menuju/arsip.7z}} -so` diff --git a/pages.id/common/[.md b/pages.id/common/[.md index 76832aaece..163d705eb9 100644 --- a/pages.id/common/[.md +++ b/pages.id/common/[.md @@ -1,25 +1,33 @@ # [ -> Mengevaluasi syarat dalam perintah syel komputer. +> Cek jenis file dan bandingkan nilai dalam syel. > Mengembalikan nilai 0 jika syarat tersebut terpenuhi (bernilai benar) atau 1 jika tidak. > Informasi lebih lanjut: . -- Menguji apakah sebuah variabel memiliki nilai sama dengan sebuah string: +- Ujikan apakah sebuah variabel memiliki nilai yang sama/tidak sama dengan sebuah string: -`[ "{{$VARIABEL}}" == "{{/bin/zsh}}" ]` +`[ "${{variabel}}" {{==|!=}} "{{string}}" ]` -- Menguji apakah sebuah variable tidak memiliki nilai sama sekali (null): +- Ujikan apakah sebuah variabel memiliki nilai yang sama/tidak sama/lebih besar/lebih kecil/lebih besar atau sama dengan/lebih kecil atau sama dengan sebuah angka: -`[ -z "{{$VARIABEL}}" ]` +`[ "${{variabel}}" -{{eq|ne|gt|lt|ge|le}} {{bilangan_bulat}} ]` -- Menguji apakah sebuah file dapat ditemukan: +- Ujikan apakah sebuah variabel memiliki nilai yang tidak sama dengan hampa/null: + +`[ -n "${{variabel}}" ]` + +- Ujikan apakah sebuah variabel memiliki nilai hampa/null: + +`[ -z "{{$variabel}}" ]` + +- Ujikan apakah sebuah [f]ile dapat ditemukan: `[ -f "{{jalan/menuju/file}}" ]` -- Menguji apakah sebuah direktori dapat ditemukan: +- Ujikan apakah sebuah [d]irektori dapat ditemukan: -`[ ! -d "{{jalan/menuju/direktori}}" ]` +`[ -d "{{jalan/menuju/direktori}}" ]` -- Pernyataan if-else di dalam syel: +- Ujikan apakah sebuah file atau direktori dapat ditemukan: -`[ {{syarat}} ] && {{echo "benar"}} || {{echo "salah"}}` +`[ -e {{jalan/menuju/file_atau_direktori}} ]` diff --git a/pages.id/common/[[.md b/pages.id/common/[[.md new file mode 100644 index 0000000000..9b46048e66 --- /dev/null +++ b/pages.id/common/[[.md @@ -0,0 +1,37 @@ +# [[ + +> Cek jenis file dan bandingkan nilai dalam syel. +> Mengembalikan nilai 0 jika syarat tersebut terpenuhi (bernilai benar) atau 1 jika tidak. +> Informasi lebih lanjut: . + +- Ujikan apakah sebuah variabel memiliki nilai yang sama/tidak sama dengan sebuah string: + +`[[ ${{variabel}} {{==|!=}} "{{string}}" ]]` + +- Ujikan apakah sebuah variabel string memenuhi kriteria pola pencarian glob/regex: + +`[[ ${{variabel}} {{==|=~}} {{pola_glob_atau_regex}} ]]` + +- Ujikan apakah sebuah variabel memiliki nilai yang sama/tidak sama/lebih besar/lebih kecil/lebih besar atau sama dengan/lebih kecil atau sama dengan sebuah angka: + +`[[ ${{variabel}} -{{eq|ne|gt|lt|ge|le}} {{bilangan_bulat}} ]]` + +- Ujikan apakah sebuah variabel memiliki nilai yang tidak sama dengan hampa/null: + +`[[ -n ${{variabel}} ]]` + +- Ujikan apakah sebuah variabel memiliki nilai hampa/null: + +`[[ -z ${{variabel}} ]]` + +- Ujikan apakah sebuah [f]ile dapat ditemukan: + +`[[ -f {{jalan/menuju/file}} ]]` + +- Ujikan apakah sebuah [d]irektori dapat ditemukan: + +`[[ -d {{jalan/menuju/direktori}} ]]` + +- Ujikan apakah sebuah file atau direktori dapat ditemukan: + +`[[ -e {{jalan/menuju/file_atau_direktori}} ]]` diff --git a/pages.id/common/adb-install.md b/pages.id/common/adb-install.md index 50f2578185..77ce55058b 100644 --- a/pages.id/common/adb-install.md +++ b/pages.id/common/adb-install.md @@ -3,18 +3,18 @@ > Android Debug Bridge Install: Menginstal paket ke emulator Android atau perangkat Android terhubung. > Informasi lebih lanjut: . -- Menginstal aplikasi Android ke emulator/perangkat: +- Instal aplikasi Android ke emulator/perangkat: `adb install {{alamat/ke/berkas.apk}}` -- Menginstal ulang aplikasi yang sudah ada, menjaga datanya: +- Instal ulang aplikasi yang sudah ada, menjaga datanya: `adb install -r {{alamat/ke/berkas.apk}}` -- Memberikan semua izin yang terdaftar di manifest aplikasi: +- Berikan semua izin yang terdaftar di manifest aplikasi: `adb install -g {{alamat/ke/berkas.apk}}` -- Memperbarui langsung paket terinstal dengan hanya memperbarui bagian dari APK yang berubah: +- Perbarui langsung paket terinstal dengan hanya memperbarui bagian dari APK yang berubah: `Adb install --fastdeploy {{alamat/ke/berkas.apk}}` diff --git a/pages.id/common/adb-reverse.md b/pages.id/common/adb-reverse.md index 0b1487948d..e7d289be9f 100644 --- a/pages.id/common/adb-reverse.md +++ b/pages.id/common/adb-reverse.md @@ -7,14 +7,14 @@ `adb reverse --list` -- Membalik port TCP dari emulator/perangkat ke localhost: +- Balikkan port TCP dari emulator/perangkat ke localhost: `adb reverse tcp:{{port_jarak_jauh}} tcp:{{port_lokal}}` -- Melepas koneksi socket terbalik dari emulator/perangkat: +- Lepaskan koneksi socket terbalik dari emulator/perangkat: `adb reverse --remove tcp:{{port_jarak_jauh}}` -- Melepas semua koneksi socket terbalik dari semua emulator dan perangkat: +- Lepaskan semua koneksi socket terbalik dari semua emulator dan perangkat: `adb reverse --remove-all` diff --git a/pages.id/common/adb-shell.md b/pages.id/common/adb-shell.md index 07a9438e8d..4b022ec369 100644 --- a/pages.id/common/adb-shell.md +++ b/pages.id/common/adb-shell.md @@ -3,34 +3,34 @@ > Android Debug Bridge Shell: Menjalankan perintah shell jarak jauh pada emulator Android atau perangkat Android terhubung. > Informasi lebih lanjut: . -- Memulai shell interaktif jarak jauh di emulator/perangkat: +- Mulaikan shell interaktif jarak jauh di emulator/perangkat: `adb shell` -- Mendapatkan semua properti dari emulator/perangkat: +- Dapatkan semua properti dari emulator/perangkat: `adb shell getprop` -- Mengembalikan semua izin runtime ke default: +- Kembalikan semua izin runtime ke default: `adb shell pm reset-permissions` -- Mencabut izin berbahaya dari sebuah aplikasi: +- Cabut izin berbahaya dari sebuah aplikasi: `adb shell pm revoke {{paket}} {{izin}}` -- Memicu sebuah peristiwa penting: +- Picukan sebuah peristiwa penting: `adb shell input keyevent {{keycode}}` -- Mengosongkan data aplikasi pada emulator/perangkat: +- Kosongkan data aplikasi pada emulator/perangkat: `adb shell pm clear {{paket}}` -- Memulai aktivitas pada emulator/perangkat: +- Mulaikan aktivitas pada emulator/perangkat: `adb shell am start -n {{paket}}/{{aktivitas}}` -- Memulai aktivitas beranda pada emulator/perangkat: +- Mulaikan aktivitas beranda pada emulator/perangkat: `adb shell am start -W -c android.intent.category.HOME -a android.intent.action.MAIN` diff --git a/pages.id/common/adb.md b/pages.id/common/adb.md index a2eb9d6a8c..c1430a5ca6 100644 --- a/pages.id/common/adb.md +++ b/pages.id/common/adb.md @@ -8,26 +8,26 @@ `adb start-server` -- Menghentikan proses server adb: +- Hentikan proses server adb: `adb kill-server` -- Memulai shell jarak jauh pada emulator/perangkat tujuan: +- Mulai shell jarak jauh pada emulator/perangkat tujuan: `adb shell` -- Menginstal aplikasi Android ke emulator/perangkat tujuan: +- Instal aplikasi Android ke emulator/perangkat tujuan: `adb install -r {{alamat/ke/berkas.apk}}` -- Menyalin berkas/direktori dari perangkat tujuan: +- Salin berkas/direktori dari perangkat tujuan: `adb pull {{alamat/ke/berkas_atau_direktori_perangkat}} {{alamat/ke/direktori_lokal_tujuan}}` -- Menyalin berkas/direktori ke perangkat tujuan: +- Salin berkas/direktori ke perangkat tujuan: `adb push {{alamat/ke/berkas_atau_direktori_lokal}} {{alamat/ke/direktori_perangkat_tujuan}}` -- Mendapatkan daftar perangkat yang terhubung: +- Dapatkan daftar perangkat yang terhubung: `adb devices` diff --git a/pages.id/common/bundler.md b/pages.id/common/bundler.md new file mode 100644 index 0000000000..1575ca3d79 --- /dev/null +++ b/pages.id/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> Perintah ini merupakan alias dari `bundle`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr bundle` diff --git a/pages.id/common/cd.md b/pages.id/common/cd.md index 265f39e0dd..463b0cbff3 100644 --- a/pages.id/common/cd.md +++ b/pages.id/common/cd.md @@ -1,20 +1,28 @@ # cd -> Mengganti direktori yang dikunjungi saat ini. +> Mengganti direktori kerja saat ini. > Informasi lebih lanjut: . -- Menuju ke direktori yang telah ditentukan: +- Pergi menuju direktori yang ditentukan: -`cd {{lokasi/ke/direktori}}` +`cd {{jalan/menuju/direktori}}` -- Menuju ke direktori pangkal/home milik pengguna: - -`cd` - -- Menuju ke induk direktori dari direktori saat ini: +- Pergi menuju induk direktori dari direktori saat ini: `cd ..` -- Menuju direktori yang telah dikunjungi sebelumnya: +- Pergi menuju direktori pangkal/home milik pengguna saat ini: + +`cd` + +- Pergi menuju direktori pangkal/home milik pengguna yang ditentukan: + +`cd ~{{username}}` + +- Pergi menuju direktori yang dikunjungi sebelumnya: `cd -` + +- Pergi menuju direktori akar (root): + +`cd /` diff --git a/pages.id/common/clamav.md b/pages.id/common/clamav.md new file mode 100644 index 0000000000..eb8eb875bb --- /dev/null +++ b/pages.id/common/clamav.md @@ -0,0 +1,17 @@ +# ClamAV + +> Program antivirus bersumber terbuka (open-source). +> Program ClamAV memiliki beberapa perintah, dan `clamav` bukanlah nama perintah. +> Informasi lebih lanjut: . + +- Tampilkan dokumentasi perintah untuk memindai file menggunakan daemon ClamAV (`clamd`): + +`tldr clamdscan` + +- Tampilkan dokumentasi perintah untuk memindai file tanpa menggunakan daemon: + +`tldr clamscan` + +- Tampilkan dokumentasi perintah untuk memutakhirkan basis data (database) definisi virus: + +`tldr freshclam` diff --git a/pages.id/common/clamdscan.md b/pages.id/common/clamdscan.md new file mode 100644 index 0000000000..6489f82eea --- /dev/null +++ b/pages.id/common/clamdscan.md @@ -0,0 +1,36 @@ +# clamdscan + +> Sebuah program pemindai virus berbasis command-line. +> Informasi lebih lanjut: . + +- Pindai kerentanan suatu file atau direktori tertentu: + +`clamdscan {{jalan/menuju/file_atau_direktori}}` + +- Pindai data dari input `stdin`: + +`{{perintah}} | clamdscan -` + +- Pindai direktori saat ini dan hanya tampilkan file yang terinfeksi: + +`clamdscan --infected` + +- Simpan hasil laporan pemindaian kepada sebuah file log: + +`clamdscan --log {{jalan/menuju/file_log}}` + +- Pindahkan file-file yang terinfeksi kepada suatu direktori: + +`clamdscan --move {{jalan/menuju/direktori_karantina}}` + +- Hapus file-file yang terinfeksi: + +`clamdscan --remove` + +- Gunakan lebih dari satu thread untuk memindai sebuah direktori: + +`clamdscan --multiscan` + +- Pindai file dengan memberikan deskriptor kepada daemon daripada mengoper isi mentah file tersebut seperti biasa: + +`clamdscan --fdpass` diff --git a/pages.id/common/clamscan.md b/pages.id/common/clamscan.md new file mode 100644 index 0000000000..5b9ffbb28f --- /dev/null +++ b/pages.id/common/clamscan.md @@ -0,0 +1,36 @@ +# clamscan + +> Sebuah program pemindai virus berbasis command-line. +> Informasi lebih lanjut: . + +- Pindai kerentanan sebuah file: + +`clamscan {{jalan/menuju/file}}` + +- Pindai seluruh file dalam sebuah direktori secara rekursif: + +`clamscan -r {{jalan/menuju/direktori}}` + +- Pindai data dari input `stdin`: + +`{{perintah}} | clamscan -` + +- Gunakan basis data (database) definisi virus yang terkandung dalam sebuah file atau direktori: + +`clamscan --database {{jalan/menuju/file_atau_direktori_basis_data}}` + +- Pindai direktori saat ini dan hanya tampilkan file yang terinfeksi: + +`clamscan --infected` + +- Simpan hasil laporan pemindaian kepada sebuah file log: + +`clamscan --log {{jalan/menuju/file_log}}` + +- Pindahkan file-file yang terinfeksi kepada suatu direktori: + +`clamscan --move {{jalan/menuju/direktori_karantina}}` + +- Hapus file-file yang terinfeksi: + +`clamscan --remove` diff --git a/pages.id/common/cron.md b/pages.id/common/cron.md new file mode 100644 index 0000000000..b87d158216 --- /dev/null +++ b/pages.id/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> Perintah ini merupakan alias dari `crontab`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr crontab` diff --git a/pages.id/common/docker-build.md b/pages.id/common/docker-build.md new file mode 100644 index 0000000000..10ad04dd0f --- /dev/null +++ b/pages.id/common/docker-build.md @@ -0,0 +1,32 @@ +# docker build + +> Bangun sebuah image dari Dockerfile. +> Informasi lebih lanjut: https://docs.docker.com/engine/reference/commandline/build/. + +- Bangun sebuah image docker meggunakan Dockerfile dalam direktori saat ini: + +`docker build .` + +- Bangun sebuah docker image dari Dockerfile dengan menggunakan URL yang spesifik: + +`docker build {{github.com/creack/docker-firefox}}` + +- Bangun sebuah docker image dengan tag tertentu: + +`docker build --tag {{nama:tag}} .` + +- Bangun sebuah docker image tanpa konteks pembangunan: + +`docker build --tag {{nama:tag}} - < {{Dockerfile}}` + +- Bangun sebuah image tanpa menggunakan cache: + +`docker build --no-cache --tag {{nama:tag}} .` + +- Bangun sebuah docker image dengan Dockerfile tertentu: + +`docker build --file {{Dockerfile}} .` + +- Bangun sebuah docker image dengan variabel lingkungan tertentu: + +`docker build --build-arg {{HTTP_PROXY=http://10.20.30.2:1234}} --build-arg {{FTP_PROXY=http://40.50.60.5:4567}} .` diff --git a/pages.id/common/docker-compose.md b/pages.id/common/docker-compose.md new file mode 100644 index 0000000000..f57be80287 --- /dev/null +++ b/pages.id/common/docker-compose.md @@ -0,0 +1,36 @@ +# docker compose + +> Jalankan dan kelola aplikasi Docker dengan beberapa kontainer. +> Informasi lebih lanjut: . + +- Tampilkan semua kontainer yang sedang berjalan: + +`docker compose ps` + +- Buat dan nyalakan semua kontainer di latar belakang menggunakan file docker-compose.yml dari direktori saat ini: + +`docker compose up --detach` + +- Nyalakan semua kontainer, dan bangun ulang jika diperlukan: + +`docker compose up --build` + +- Nyalakan semua kontainer dengan menentukan nama proyek dan menggunakan file compose alternatif: + +`docker compose -p {{nama_proyek}} --file {{jalan/menuju/file}} up` + +- Hentikan semua kontainer yang sedang berjalan: + +`docker compose stop` + +- Hentikan dan menghapus semua kontainer, jaringan, image, dan volume: + +`docker compose down --rmi all --volumes` + +- Ikuti log untuk semua kontainer: + +`docker compose logs --follow` + +- Ikuti log untuk kontainer tertentu: + +`docker compose logs --follow {{container_name}}` diff --git a/pages.id/common/docker-ps.md b/pages.id/common/docker-ps.md new file mode 100644 index 0000000000..2817738ebc --- /dev/null +++ b/pages.id/common/docker-ps.md @@ -0,0 +1,36 @@ +# docker ps + +> Tampilkan daftar kontainer Docker. +> Informasi lebih lanjut: . + +- Tampilkan kontainer Docker yang sedang berjalan saat ini: + +`docker ps` + +- Tampilkan semua kontainer Docker (yang berjalan dan yang berhenti): + +`docker ps --all` + +- Tampilkan kontainer yang dibuat terakhir (termasuk semua status): + +`docker ps --latest` + +- Pilah kontainer yang mengandung substring dalam namanya: + +`docker ps --filter="name={{nama}}"` + +- Pilah kontainer yang memiliki gambar yang sama sebagai leluhur: + +`docker ps --filter "ancestor={{image}}:{{tag}}"` + +- Pilah kontainer berdasarkan kode status keluar (exit status code): + +`docker ps --all --filter="exited={{kode}}"` + +- Pilah kontainer berdasarkan status (created, running, removing, paused, exited, dan dead): + +`docker ps --filter="status={{status}}"` + +- Pilah kontainer yang mengaitkan suatu volume tertentu atau memiliki volume yang terpasang pada jalur tertentu: + +`docker ps --filter="volume={{jalan/menuju/direktori}}" --format "table {{.ID}}\t{{.Image}}\t{{.Names}}\t{{.Mounts}}"` diff --git a/pages.id/common/fossil-ci.md b/pages.id/common/fossil-ci.md new file mode 100644 index 0000000000..cc683309a8 --- /dev/null +++ b/pages.id/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> Perintah ini merupakan alias dari `fossil-commit`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr fossil-commit` diff --git a/pages.id/common/fossil-delete.md b/pages.id/common/fossil-delete.md new file mode 100644 index 0000000000..c29b25bcc2 --- /dev/null +++ b/pages.id/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> Perintah ini merupakan alias dari `fossil rm`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr fossil rm` diff --git a/pages.id/common/fossil-forget.md b/pages.id/common/fossil-forget.md new file mode 100644 index 0000000000..a19b5f688e --- /dev/null +++ b/pages.id/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> Perintah ini merupakan alias dari `fossil rm`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr fossil rm` diff --git a/pages.id/common/fossil-new.md b/pages.id/common/fossil-new.md new file mode 100644 index 0000000000..1836bc710f --- /dev/null +++ b/pages.id/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> Perintah ini merupakan alias dari `fossil-init`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr fossil-init` diff --git a/pages.id/common/freshclam.md b/pages.id/common/freshclam.md new file mode 100644 index 0000000000..9553e21d6a --- /dev/null +++ b/pages.id/common/freshclam.md @@ -0,0 +1,8 @@ +# freshclam + +> Mutakhirkan basis data (database) definisi virus untuk program antivirus ClamAV. +> Informasi lebih lanjut: . + +- Mutakhirkan basis data (database) definisi virus: + +`freshclam` diff --git a/pages.id/common/gh-cs.md b/pages.id/common/gh-cs.md new file mode 100644 index 0000000000..5be02cc7d6 --- /dev/null +++ b/pages.id/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> Perintah ini merupakan alias dari `gh-codespace`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr gh-codespace` diff --git a/pages.id/common/git-alias.md b/pages.id/common/git-alias.md new file mode 100644 index 0000000000..4c219402cd --- /dev/null +++ b/pages.id/common/git-alias.md @@ -0,0 +1,17 @@ +# git alias + +> Buat alias untuk perintah Git. +> Bagian dari `git-extras`. +> Informasi lebih lanjut: . + +- Tampilkan daftar semua alias: + +`git alias` + +- Buat alias baru: + +`git alias "{{nama}}" "{{perintah}}"` + +- Cari alias yang sudah ada: + +`git alias ^{{nama}}` diff --git a/pages.id/common/gnmic-sub.md b/pages.id/common/gnmic-sub.md new file mode 100644 index 0000000000..4651626742 --- /dev/null +++ b/pages.id/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> Perintah ini merupakan alias dari `gnmic subscribe`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr gnmic subscribe` diff --git a/pages.id/common/google-chrome.md b/pages.id/common/google-chrome.md new file mode 100644 index 0000000000..57a3b46ff4 --- /dev/null +++ b/pages.id/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> Perintah ini merupakan alias dari `chromium`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr chromium` diff --git a/pages.id/common/hugo.md b/pages.id/common/hugo.md index 94cf6281ff..e7be79acb6 100644 --- a/pages.id/common/hugo.md +++ b/pages.id/common/hugo.md @@ -7,7 +7,7 @@ `hugo new site {{alamat/ke/website}}` -- Membuat tema Hugo baru (tema juga dapat diunduh dari https://themes.gohugo.io/): +- Membuat tema Hugo baru (tema juga dapat diunduh dari ): `hugo new theme {{nama_tema}}` diff --git a/pages.id/common/hx.md b/pages.id/common/hx.md new file mode 100644 index 0000000000..874490a67d --- /dev/null +++ b/pages.id/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> Perintah ini merupakan alias dari `helix`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr helix` diff --git a/pages.id/common/java.md b/pages.id/common/java.md index b36bb71f05..5738bd1f37 100644 --- a/pages.id/common/java.md +++ b/pages.id/common/java.md @@ -1,7 +1,7 @@ # java > Peluncur Aplikasi Java. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . - Jalankan berkas java `.class` yang mengandung method main dengan hanya menggunakan nama class: diff --git a/pages.id/common/kafkacat.md b/pages.id/common/kafkacat.md new file mode 100644 index 0000000000..8f6f93d6f7 --- /dev/null +++ b/pages.id/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> Perintah ini merupakan alias dari `kcat`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr kcat` diff --git a/pages.id/common/lzcat.md b/pages.id/common/lzcat.md new file mode 100644 index 0000000000..7ea29d1877 --- /dev/null +++ b/pages.id/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> Perintah ini merupakan alias dari `xz`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr xz` diff --git a/pages.id/common/lzma.md b/pages.id/common/lzma.md new file mode 100644 index 0000000000..224112cbb3 --- /dev/null +++ b/pages.id/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> Perintah ini merupakan alias dari `xz`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr xz` diff --git a/pages.id/common/mv.md b/pages.id/common/mv.md index bcb63ea6c9..3c746e45bf 100644 --- a/pages.id/common/mv.md +++ b/pages.id/common/mv.md @@ -5,20 +5,20 @@ - Memindahkan file ke lokasi yang baru: -`mv {{sumber}} {{tujuan}}` +`mv {{jalan/menuju/sumber}} {{jalan/menuju/tujuan}}` - Memindah tanpa meminta konfirmasi sebelum menimpa file yang sudah ada: -`mv -f {{sumber}} {{tujuan}}` +`mv -f {{jalan/menuju/sumber}} {{jalan/menuju/tujuan}}` - Meminta konfirmasi sebelum menimpa file yang sudah ada, apapun *file permissions*-nya: -`mv -i {{sumber}} {{tujuan}}` +`mv -i {{jalan/menuju/sumber}} {{jalan/menuju/tujuan}}` - Jangan menimpa file yang sudah ada di direktori tujuan: -`mv -n {{sumber}} {{tujuan}}` +`mv -n {{jalan/menuju/sumber}} {{jalan/menuju/tujuan}}` - Memindahkan file dalam mode *verbose*, menampilkan file-file yang dipindahkan: -`mv -v {{sumber}} {{tujuan}}` +`mv -v {{jalan/menuju/sumber}} {{jalan/menuju/tujuan}}` diff --git a/pages.id/common/nm-classic.md b/pages.id/common/nm-classic.md new file mode 100644 index 0000000000..b3ea6eb4dc --- /dev/null +++ b/pages.id/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> Perintah ini merupakan alias dari `nm`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr nm` diff --git a/pages.id/common/ntl.md b/pages.id/common/ntl.md new file mode 100644 index 0000000000..b0d3c5f97a --- /dev/null +++ b/pages.id/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> Perintah ini merupakan alias dari `netlify`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr netlify` diff --git a/pages.id/common/open.fish.md b/pages.id/common/open.fish.md new file mode 100644 index 0000000000..a9df7b7090 --- /dev/null +++ b/pages.id/common/open.fish.md @@ -0,0 +1,25 @@ +# open + +> Buka file, direktori, dan alamat URI dengan aplikasi-aplikasi default yang dapat membukanya. +> Perintah ini tersedia melalui `fish` dalam sistem operasi yang tidak menawarkan perintah `open` secara bawaan (seperti Haiku dan macOS). +> Informasi lebih lanjut: + +- Buka sebuah file di dalam aplikasi default: + +`open {{file.ext}}` + +- Buka semua file dengan ekstensi tertentu di dalam aplikasi default pada direktori saat ini: + +`open {{*.ext}}` + +- Buka sebuah direktori di dalam aplikasi manajer file default: + +`open {{jalan/menuju/direktori}}` + +- Buka sebuah situs web di dalam aplikasi peramban default: + +`open {{https://example.com}}` + +- Buka sebuah alamat URI di dalam aplikasi default yang dapat menanganinya: + +`open {{tel:123}}` diff --git a/pages.id/common/open.md b/pages.id/common/open.md new file mode 100644 index 0000000000..14807ae094 --- /dev/null +++ b/pages.id/common/open.md @@ -0,0 +1,15 @@ +# open + +> `open` dapat merujuk ke beberapa perintah dengan nama yang sama. + +- Lihat dokumentasi perintah `open` yang disediakan dalam macOS: + +`tldr open -p osx` + +- Lihat dokumentasi perintah macOS dalam klien command-line `tldr` versi lawas: + +`tldr open -o osx` + +- Lihat dokumentasi perintah `open` yang disediakan dalam `fish`: + +`tldr open.fish` diff --git a/pages.id/common/pnpm.md b/pages.id/common/pnpm.md index c4634906a9..9ccd06bd37 100644 --- a/pages.id/common/pnpm.md +++ b/pages.id/common/pnpm.md @@ -2,7 +2,7 @@ > Manajer paket JavaScript dan Node.js yang cepat dan efisien. > Mengelola proyek Node.js dan dependensi modulnya. -> Informasi lebih lanjut:: . +> Informasi lebih lanjut: . - Buat file `package.json` file: diff --git a/pages.id/common/ptpython3.md b/pages.id/common/ptpython3.md new file mode 100644 index 0000000000..2b1898f96c --- /dev/null +++ b/pages.id/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> Perintah ini merupakan alias dari `ptpython`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr ptpython` diff --git a/pages.id/common/python3.md b/pages.id/common/python3.md new file mode 100644 index 0000000000..a6152ee369 --- /dev/null +++ b/pages.id/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> Perintah ini merupakan alias dari `python`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr python` diff --git a/pages.id/common/rcat.md b/pages.id/common/rcat.md new file mode 100644 index 0000000000..bf3e751747 --- /dev/null +++ b/pages.id/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> Perintah ini merupakan alias dari `rc`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr rc` diff --git a/pages.id/common/ripgrep.md b/pages.id/common/ripgrep.md new file mode 100644 index 0000000000..bf7c34f8af --- /dev/null +++ b/pages.id/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> Perintah ini merupakan alias dari `rg`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr rg` diff --git a/pages.id/common/rsync.md b/pages.id/common/rsync.md index 510dcf753e..79e95b748b 100644 --- a/pages.id/common/rsync.md +++ b/pages.id/common/rsync.md @@ -2,7 +2,7 @@ > Transfer file ke atau dari sebuah _remote host_ (bukan di antara 2 _remote host_). > Bisa transfer satuan file, maupun beberapa file yang sesuai dengan pola tertentu. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . - Transfer file dari lokal ke _remote host_: diff --git a/pages.id/common/todoman.md b/pages.id/common/todoman.md new file mode 100644 index 0000000000..cf0bfaa83b --- /dev/null +++ b/pages.id/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> Perintah ini merupakan alias dari `todo`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr todo` diff --git a/pages.id/common/touch.md b/pages.id/common/touch.md index 3c6b8ee043..9f246f458e 100644 --- a/pages.id/common/touch.md +++ b/pages.id/common/touch.md @@ -1,7 +1,7 @@ # touch > Mengubah waktu akses (atime) dan waktu modifikasi (mtime) dari sebuah file. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . - Membuat file baru yang kosong atau mengubah waktu file yang telahj ada ke waktu sekarang: diff --git a/pages.id/common/transmission.md b/pages.id/common/transmission.md new file mode 100644 index 0000000000..e156ed2852 --- /dev/null +++ b/pages.id/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> Perintah ini merupakan alias dari `transmission-daemon`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr transmission-daemon` diff --git a/pages.id/common/unlzma.md b/pages.id/common/unlzma.md new file mode 100644 index 0000000000..479556dfb6 --- /dev/null +++ b/pages.id/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> Perintah ini merupakan alias dari `xz`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr xz` diff --git a/pages.id/common/unxz.md b/pages.id/common/unxz.md new file mode 100644 index 0000000000..6d309f3eb9 --- /dev/null +++ b/pages.id/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> Perintah ini merupakan alias dari `xz`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr xz` diff --git a/pages.id/common/xzcat.md b/pages.id/common/xzcat.md new file mode 100644 index 0000000000..be3da622cc --- /dev/null +++ b/pages.id/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> Perintah ini merupakan alias dari `xz`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr xz` diff --git a/pages.id/linux/alternatives.md b/pages.id/linux/alternatives.md new file mode 100644 index 0000000000..423d950c4e --- /dev/null +++ b/pages.id/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> Perintah ini merupakan alias dari `update-alternatives`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr update-alternatives` diff --git a/pages.id/linux/batcat.md b/pages.id/linux/batcat.md new file mode 100644 index 0000000000..2b2292acca --- /dev/null +++ b/pages.id/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> Perintah ini merupakan alias dari `bat`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr bat` diff --git a/pages.id/linux/bspwm.md b/pages.id/linux/bspwm.md new file mode 100644 index 0000000000..351ea2542e --- /dev/null +++ b/pages.id/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> Perintah ini merupakan alias dari `bspc`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr bspc` diff --git a/pages.id/linux/cc.md b/pages.id/linux/cc.md new file mode 100644 index 0000000000..18b69fe851 --- /dev/null +++ b/pages.id/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> Perintah ini merupakan alias dari `gcc`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr gcc` diff --git a/pages.id/linux/cgroups.md b/pages.id/linux/cgroups.md new file mode 100644 index 0000000000..6e294fe5dc --- /dev/null +++ b/pages.id/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> Perintah ini merupakan alias dari `cgclassify`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr cgclassify` diff --git a/pages.id/linux/free.md b/pages.id/linux/free.md new file mode 100644 index 0000000000..a330be1be9 --- /dev/null +++ b/pages.id/linux/free.md @@ -0,0 +1,20 @@ +# free + +> Menampilkan jumlah memori kosong/tersedia dan memori yang digunakan dalam sistem. +> Informasi lebih lanjut: . + +- Tampilkan memori sistem: + +`free` + +- Tampilkan memori dalam Bytes/KB/MB/GB: + +`free -{{b|k|m|g}}` + +- Tampilkan memori dalam unit yang dapat dibaca manusia: + +`free -h` + +- Tampilkan output setiap 2 detik: + +`free -s {{2}}` diff --git a/pages.id/linux/halt.md b/pages.id/linux/halt.md index 29897ccd0d..7b9d2d2edf 100644 --- a/pages.id/linux/halt.md +++ b/pages.id/linux/halt.md @@ -1,7 +1,7 @@ # halt > Hentikan sistem. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . - Hentikan sistem: diff --git a/pages.id/linux/ip-route-list.md b/pages.id/linux/ip-route-list.md new file mode 100644 index 0000000000..fa580f6b44 --- /dev/null +++ b/pages.id/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> Perintah ini merupakan alias dari `ip-route-show`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr ip-route-show` diff --git a/pages.id/linux/man.md b/pages.id/linux/man.md new file mode 100644 index 0000000000..7ce5c412f1 --- /dev/null +++ b/pages.id/linux/man.md @@ -0,0 +1,32 @@ +# man + +> Format dan tampilkan halaman manual. +> Informasi lebih lanjut: . + +- Tampilkan halaman manual untuk sebuah perintah: + +`man {{perintah}}` + +- Tampilkan halaman manual untuk perintah dari bagian 7: + +`man {{7}} {{perintah}}` + +- Tampilkan semua bagian yang tersedia untuk suatu perintah: + +`man --whatis {{perintah}}` + +- Tampilkan jalur yang dicari untuk halaman manual: + +`man --path` + +- Tampilkan lokasi sebuah halaman manual alih-alih halaman manual itu sendiri: + +`man --where {{perintah}}` + +- Tampilkan halaman manual menggunakan locale tertentu: + +`man --locale={{locale}} {{perintah}}` + +- Cari halaman manual yang berisi string pencarian: + +`man --apropos "{{string_pencarian}}"` diff --git a/pages.id/linux/megadl.md b/pages.id/linux/megadl.md new file mode 100644 index 0000000000..02bc6b4a9d --- /dev/null +++ b/pages.id/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> Perintah ini merupakan alias dari `megatools-dl`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr megatools-dl` diff --git a/pages.id/linux/pacman-query.md b/pages.id/linux/pacman-query.md index ae56cf891d..237537c402 100644 --- a/pages.id/linux/pacman-query.md +++ b/pages.id/linux/pacman-query.md @@ -1,6 +1,7 @@ # pacman --query > Kegunaan manajer paket Arch Linux. +> Guarda anche: `pacman`. > Informasi lebih lanjut: . - Tampilkan daftar paket yang diinstal beserta versinya: diff --git a/pages.id/linux/pacman-remove.md b/pages.id/linux/pacman-remove.md index 86ad5c265a..78c30255ae 100644 --- a/pages.id/linux/pacman-remove.md +++ b/pages.id/linux/pacman-remove.md @@ -1,6 +1,7 @@ # pacman --remove > Kegunaan manajer paket Arch Linux. +> Guarda anche: `pacman`. > Informasi lebih lanjut: . - Hapus paket beserta dependensinya: diff --git a/pages.id/linux/pacman-sync.md b/pages.id/linux/pacman-sync.md index 748b9ae565..4deb05cde0 100644 --- a/pages.id/linux/pacman-sync.md +++ b/pages.id/linux/pacman-sync.md @@ -1,6 +1,7 @@ # pacman --sync > Kegunaan manajer paket Arch Linux. +> Guarda anche: `pacman`. > Informasi lebih lanjut: . - Instal paket baru: diff --git a/pages.id/linux/pacman-upgrade.md b/pages.id/linux/pacman-upgrade.md index 717bf18f66..3c6e7dc916 100644 --- a/pages.id/linux/pacman-upgrade.md +++ b/pages.id/linux/pacman-upgrade.md @@ -1,6 +1,7 @@ # pacman --upgrade > Kegunaan manajer paket Arch Linux. +> Guarda anche: `pacman`. > Informasi lebih lanjut: . - Instal satu paket atau lebih dari file: diff --git a/pages.id/linux/pacman.md b/pages.id/linux/pacman.md index 69ddf8c574..2b1e433795 100644 --- a/pages.id/linux/pacman.md +++ b/pages.id/linux/pacman.md @@ -1,7 +1,7 @@ # pacman > Kegunaan manajer paket Arch Linux. -> Kami mempunyai dokumentasi terpisah untuk menggunakan subperintah seperti `pacman sync`. +> Guarda anche: `pacman-database`, `pacman-deptest`, `pacman-files`, `pacman-key`, `pacman-mirrors`, `pacman-query`, `pacman-remove`, `pacman-sync`, `pacman-upgrade`. > Informasi lebih lanjut: . - Sinkronkan dan perbarui semua paket: diff --git a/pages.id/linux/ubuntu-bug.md b/pages.id/linux/ubuntu-bug.md new file mode 100644 index 0000000000..2948cae12f --- /dev/null +++ b/pages.id/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> Perintah ini merupakan alias dari `apport-bug`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr apport-bug` diff --git a/pages.id/linux/yum.md b/pages.id/linux/yum.md new file mode 100644 index 0000000000..a611b18c3a --- /dev/null +++ b/pages.id/linux/yum.md @@ -0,0 +1,29 @@ +# yum + +> Utilitas manajemen paket untuk RHEL, Fedora, dan CentOS (untuk versi-versi yang lebih lama). +> Untuk perintah-perintah setara dalam pengelola paket lainnya, lihat . +> Informasi lebih lanjut: . + +- Instal sebuah paket baru + +`yum install {{nama_paket}}` + +- Instal sebuah paket baru dan mengasumsikan jawaban [y]a untuk semua pertanyaan (juga berfungsi dengan perintah pembaruan, sangat berguna untuk pembaruan otomatis): + +`yum -y install {{nama_paket}}` + +- Cari sebuah paket yang menyediakan suatu perintah tertentu: + +`yum provides {{perintah}}` + +- Hapus paket yang terpasang sebelumnya: + +`yum remove {{paket}}` + +- Tampilkan pembaruan yang tersedia untuk paket yang terpasang: + +`yum check-update` + +- Perbarui seluruh paket yang terpasang ke versi terbaru: + +`yum upgrade` diff --git a/pages.id/osx/aa.md b/pages.id/osx/aa.md new file mode 100644 index 0000000000..9aba4a8723 --- /dev/null +++ b/pages.id/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> Perintah ini merupakan alias dari `yaa`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr yaa` diff --git a/pages.id/osx/g[.md b/pages.id/osx/g[.md new file mode 100644 index 0000000000..90c86fa8b8 --- /dev/null +++ b/pages.id/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> Perintah ini merupakan alias dari `-p linux [`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux [` diff --git a/pages.id/osx/gawk.md b/pages.id/osx/gawk.md new file mode 100644 index 0000000000..5c2324abce --- /dev/null +++ b/pages.id/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> Perintah ini merupakan alias dari `-p linux awk`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux awk` diff --git a/pages.id/osx/gb2sum.md b/pages.id/osx/gb2sum.md new file mode 100644 index 0000000000..7934dcca99 --- /dev/null +++ b/pages.id/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> Perintah ini merupakan alias dari `-p linux b2sum`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux b2sum` diff --git a/pages.id/osx/gbase32.md b/pages.id/osx/gbase32.md new file mode 100644 index 0000000000..450a07412c --- /dev/null +++ b/pages.id/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> Perintah ini merupakan alias dari `-p linux base32`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux base32` diff --git a/pages.id/osx/gbase64.md b/pages.id/osx/gbase64.md new file mode 100644 index 0000000000..b9455605bb --- /dev/null +++ b/pages.id/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> Perintah ini merupakan alias dari `-p linux base64`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux base64` diff --git a/pages.id/osx/gbasename.md b/pages.id/osx/gbasename.md new file mode 100644 index 0000000000..9a240d779c --- /dev/null +++ b/pages.id/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> Perintah ini merupakan alias dari `-p linux basename`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux basename` diff --git a/pages.id/osx/gbasenc.md b/pages.id/osx/gbasenc.md new file mode 100644 index 0000000000..7832d0be6e --- /dev/null +++ b/pages.id/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> Perintah ini merupakan alias dari `-p linux basenc`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux basenc` diff --git a/pages.id/osx/gcat.md b/pages.id/osx/gcat.md new file mode 100644 index 0000000000..18db6f0050 --- /dev/null +++ b/pages.id/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> Perintah ini merupakan alias dari `-p linux cat`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux cat` diff --git a/pages.id/osx/gchcon.md b/pages.id/osx/gchcon.md new file mode 100644 index 0000000000..f6f5410584 --- /dev/null +++ b/pages.id/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> Perintah ini merupakan alias dari `-p linux chcon`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux chcon` diff --git a/pages.id/osx/gchgrp.md b/pages.id/osx/gchgrp.md new file mode 100644 index 0000000000..abf271bb00 --- /dev/null +++ b/pages.id/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> Perintah ini merupakan alias dari `-p linux chgrp`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux chgrp` diff --git a/pages.id/osx/gchmod.md b/pages.id/osx/gchmod.md new file mode 100644 index 0000000000..bbead830ea --- /dev/null +++ b/pages.id/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> Perintah ini merupakan alias dari `-p linux chmod`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux chmod` diff --git a/pages.id/osx/gchown.md b/pages.id/osx/gchown.md new file mode 100644 index 0000000000..d26405c46d --- /dev/null +++ b/pages.id/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> Perintah ini merupakan alias dari `-p linux chown`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux chown` diff --git a/pages.id/osx/gchroot.md b/pages.id/osx/gchroot.md new file mode 100644 index 0000000000..9ff4ce3ecc --- /dev/null +++ b/pages.id/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> Perintah ini merupakan alias dari `-p linux chroot`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux chroot` diff --git a/pages.id/osx/gcksum.md b/pages.id/osx/gcksum.md new file mode 100644 index 0000000000..7b080a564f --- /dev/null +++ b/pages.id/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> Perintah ini merupakan alias dari `-p linux cksum`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux cksum` diff --git a/pages.id/osx/gcomm.md b/pages.id/osx/gcomm.md new file mode 100644 index 0000000000..b43657e9be --- /dev/null +++ b/pages.id/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> Perintah ini merupakan alias dari `-p linux comm`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux comm` diff --git a/pages.id/osx/gcp.md b/pages.id/osx/gcp.md new file mode 100644 index 0000000000..3dff6f9775 --- /dev/null +++ b/pages.id/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> Perintah ini merupakan alias dari `-p linux cp`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux cp` diff --git a/pages.id/osx/gcsplit.md b/pages.id/osx/gcsplit.md new file mode 100644 index 0000000000..c5fddf21bb --- /dev/null +++ b/pages.id/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> Perintah ini merupakan alias dari `-p linux csplit`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux csplit` diff --git a/pages.id/osx/gcut.md b/pages.id/osx/gcut.md new file mode 100644 index 0000000000..c8f394cd06 --- /dev/null +++ b/pages.id/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> Perintah ini merupakan alias dari `-p linux cut`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux cut` diff --git a/pages.id/osx/gdate.md b/pages.id/osx/gdate.md new file mode 100644 index 0000000000..fcf42db30d --- /dev/null +++ b/pages.id/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> Perintah ini merupakan alias dari `-p linux date`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux date` diff --git a/pages.id/osx/gdd.md b/pages.id/osx/gdd.md new file mode 100644 index 0000000000..6c2b363e4c --- /dev/null +++ b/pages.id/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> Perintah ini merupakan alias dari `-p linux dd`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux dd` diff --git a/pages.id/osx/gdf.md b/pages.id/osx/gdf.md new file mode 100644 index 0000000000..096e63e7c6 --- /dev/null +++ b/pages.id/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> Perintah ini merupakan alias dari `-p linux df`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux df` diff --git a/pages.id/osx/gdir.md b/pages.id/osx/gdir.md new file mode 100644 index 0000000000..221485ff2c --- /dev/null +++ b/pages.id/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> Perintah ini merupakan alias dari `-p linux dir`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux dir` diff --git a/pages.id/osx/gdircolors.md b/pages.id/osx/gdircolors.md new file mode 100644 index 0000000000..bb35e59792 --- /dev/null +++ b/pages.id/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> Perintah ini merupakan alias dari `-p linux dircolors`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux dircolors` diff --git a/pages.id/osx/gdirname.md b/pages.id/osx/gdirname.md new file mode 100644 index 0000000000..6bbe20516b --- /dev/null +++ b/pages.id/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> Perintah ini merupakan alias dari `-p linux dirname`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux dirname` diff --git a/pages.id/osx/gdnsdomainname.md b/pages.id/osx/gdnsdomainname.md new file mode 100644 index 0000000000..4aaebe1728 --- /dev/null +++ b/pages.id/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> Perintah ini merupakan alias dari `-p linux dnsdomainname`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux dnsdomainname` diff --git a/pages.id/osx/gecho.md b/pages.id/osx/gecho.md new file mode 100644 index 0000000000..735aeb2ff9 --- /dev/null +++ b/pages.id/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> Perintah ini merupakan alias dari `-p linux echo`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux echo` diff --git a/pages.id/osx/ged.md b/pages.id/osx/ged.md new file mode 100644 index 0000000000..b478d6258f --- /dev/null +++ b/pages.id/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> Perintah ini merupakan alias dari `-p linux ed`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux ed` diff --git a/pages.id/osx/gegrep.md b/pages.id/osx/gegrep.md new file mode 100644 index 0000000000..7e2a65f372 --- /dev/null +++ b/pages.id/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> Perintah ini merupakan alias dari `-p linux egrep`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux egrep` diff --git a/pages.id/osx/genv.md b/pages.id/osx/genv.md new file mode 100644 index 0000000000..3b4f3d1314 --- /dev/null +++ b/pages.id/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> Perintah ini merupakan alias dari `-p linux env`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux env` diff --git a/pages.id/osx/gexpand.md b/pages.id/osx/gexpand.md new file mode 100644 index 0000000000..d2b7d893c2 --- /dev/null +++ b/pages.id/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> Perintah ini merupakan alias dari `-p linux expand`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux expand` diff --git a/pages.id/osx/gexpr.md b/pages.id/osx/gexpr.md new file mode 100644 index 0000000000..4e935151f7 --- /dev/null +++ b/pages.id/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> Perintah ini merupakan alias dari `-p linux expr`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux expr` diff --git a/pages.id/osx/gfactor.md b/pages.id/osx/gfactor.md new file mode 100644 index 0000000000..bf17447263 --- /dev/null +++ b/pages.id/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> Perintah ini merupakan alias dari `-p linux factor`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux factor` diff --git a/pages.id/osx/gfalse.md b/pages.id/osx/gfalse.md new file mode 100644 index 0000000000..280e583d03 --- /dev/null +++ b/pages.id/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> Perintah ini merupakan alias dari `-p linux false`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux false` diff --git a/pages.id/osx/gfgrep.md b/pages.id/osx/gfgrep.md new file mode 100644 index 0000000000..a32eb2f52f --- /dev/null +++ b/pages.id/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> Perintah ini merupakan alias dari `-p linux fgrep`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux fgrep` diff --git a/pages.id/osx/gfind.md b/pages.id/osx/gfind.md new file mode 100644 index 0000000000..34adcb1b7a --- /dev/null +++ b/pages.id/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> Perintah ini merupakan alias dari `-p linux find`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux find` diff --git a/pages.id/osx/gfmt.md b/pages.id/osx/gfmt.md new file mode 100644 index 0000000000..5eaa2ba798 --- /dev/null +++ b/pages.id/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> Perintah ini merupakan alias dari `-p linux fmt`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux fmt` diff --git a/pages.id/osx/gfold.md b/pages.id/osx/gfold.md new file mode 100644 index 0000000000..ff75075e0f --- /dev/null +++ b/pages.id/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> Perintah ini merupakan alias dari `-p linux fold`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux fold` diff --git a/pages.id/osx/gftp.md b/pages.id/osx/gftp.md new file mode 100644 index 0000000000..307d1b7c00 --- /dev/null +++ b/pages.id/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> Perintah ini merupakan alias dari `-p linux ftp`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux ftp` diff --git a/pages.id/osx/ggrep.md b/pages.id/osx/ggrep.md new file mode 100644 index 0000000000..258cb73ad6 --- /dev/null +++ b/pages.id/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> Perintah ini merupakan alias dari `-p linux grep`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux grep` diff --git a/pages.id/osx/ggroups.md b/pages.id/osx/ggroups.md new file mode 100644 index 0000000000..2300379886 --- /dev/null +++ b/pages.id/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> Perintah ini merupakan alias dari `-p linux groups`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux groups` diff --git a/pages.id/osx/ghead.md b/pages.id/osx/ghead.md new file mode 100644 index 0000000000..238cfcb9e0 --- /dev/null +++ b/pages.id/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> Perintah ini merupakan alias dari `-p linux head`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux head` diff --git a/pages.id/osx/ghostid.md b/pages.id/osx/ghostid.md new file mode 100644 index 0000000000..06c690d9ef --- /dev/null +++ b/pages.id/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> Perintah ini merupakan alias dari `-p linux hostid`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux hostid` diff --git a/pages.id/osx/ghostname.md b/pages.id/osx/ghostname.md new file mode 100644 index 0000000000..07a876277e --- /dev/null +++ b/pages.id/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> Perintah ini merupakan alias dari `-p linux hostname`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux hostname` diff --git a/pages.id/osx/gid.md b/pages.id/osx/gid.md new file mode 100644 index 0000000000..d8d1c8c526 --- /dev/null +++ b/pages.id/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> Perintah ini merupakan alias dari `-p linux id`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux id` diff --git a/pages.id/osx/gifconfig.md b/pages.id/osx/gifconfig.md new file mode 100644 index 0000000000..ff5eac8a01 --- /dev/null +++ b/pages.id/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> Perintah ini merupakan alias dari `-p linux ifconfig`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux ifconfig` diff --git a/pages.id/osx/gindent.md b/pages.id/osx/gindent.md new file mode 100644 index 0000000000..663306f401 --- /dev/null +++ b/pages.id/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> Perintah ini merupakan alias dari `-p linux indent`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux indent` diff --git a/pages.id/osx/ginstall.md b/pages.id/osx/ginstall.md new file mode 100644 index 0000000000..c928982f2e --- /dev/null +++ b/pages.id/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> Perintah ini merupakan alias dari `-p linux install`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux install` diff --git a/pages.id/osx/gjoin.md b/pages.id/osx/gjoin.md new file mode 100644 index 0000000000..2a87c31911 --- /dev/null +++ b/pages.id/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> Perintah ini merupakan alias dari `-p linux join`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux join` diff --git a/pages.id/osx/gkill.md b/pages.id/osx/gkill.md new file mode 100644 index 0000000000..15c56047e7 --- /dev/null +++ b/pages.id/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> Perintah ini merupakan alias dari `-p linux kill`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux kill` diff --git a/pages.id/osx/glibtool.md b/pages.id/osx/glibtool.md new file mode 100644 index 0000000000..bb9c74b8e5 --- /dev/null +++ b/pages.id/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> Perintah ini merupakan alias dari `-p linux libtool`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux libtool` diff --git a/pages.id/osx/glibtoolize.md b/pages.id/osx/glibtoolize.md new file mode 100644 index 0000000000..1cf44d3145 --- /dev/null +++ b/pages.id/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> Perintah ini merupakan alias dari `-p linux libtoolize`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux libtoolize` diff --git a/pages.id/osx/glink.md b/pages.id/osx/glink.md new file mode 100644 index 0000000000..a68e87dad9 --- /dev/null +++ b/pages.id/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> Perintah ini merupakan alias dari `-p linux link`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux link` diff --git a/pages.id/osx/gln.md b/pages.id/osx/gln.md new file mode 100644 index 0000000000..624446e704 --- /dev/null +++ b/pages.id/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> Perintah ini merupakan alias dari `-p linux ln`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux ln` diff --git a/pages.id/osx/glocate.md b/pages.id/osx/glocate.md new file mode 100644 index 0000000000..16674afa17 --- /dev/null +++ b/pages.id/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> Perintah ini merupakan alias dari `-p linux locate`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux locate` diff --git a/pages.id/osx/glogger.md b/pages.id/osx/glogger.md new file mode 100644 index 0000000000..a48d4b0524 --- /dev/null +++ b/pages.id/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> Perintah ini merupakan alias dari `-p linux logger`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux logger` diff --git a/pages.id/osx/glogname.md b/pages.id/osx/glogname.md new file mode 100644 index 0000000000..ae65b89445 --- /dev/null +++ b/pages.id/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> Perintah ini merupakan alias dari `-p linux logname`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux logname` diff --git a/pages.id/osx/gls.md b/pages.id/osx/gls.md new file mode 100644 index 0000000000..d5cc673b51 --- /dev/null +++ b/pages.id/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> Perintah ini merupakan alias dari `-p linux ls`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux ls` diff --git a/pages.id/osx/gmake.md b/pages.id/osx/gmake.md new file mode 100644 index 0000000000..fadae18d3d --- /dev/null +++ b/pages.id/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> Perintah ini merupakan alias dari `-p linux make`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux make` diff --git a/pages.id/osx/gmd5sum.md b/pages.id/osx/gmd5sum.md new file mode 100644 index 0000000000..fd444cbe9f --- /dev/null +++ b/pages.id/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> Perintah ini merupakan alias dari `-p linux md5sum`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux md5sum` diff --git a/pages.id/osx/gmkdir.md b/pages.id/osx/gmkdir.md new file mode 100644 index 0000000000..0486a384a0 --- /dev/null +++ b/pages.id/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> Perintah ini merupakan alias dari `-p linux mkdir`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux mkdir` diff --git a/pages.id/osx/gmkfifo.md b/pages.id/osx/gmkfifo.md new file mode 100644 index 0000000000..3c8c3a092d --- /dev/null +++ b/pages.id/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> Perintah ini merupakan alias dari `-p linux mkfifo`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux mkfifo` diff --git a/pages.id/osx/gmknod.md b/pages.id/osx/gmknod.md new file mode 100644 index 0000000000..3bcd11c1dc --- /dev/null +++ b/pages.id/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> Perintah ini merupakan alias dari `-p linux mknod`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux mknod` diff --git a/pages.id/osx/gmktemp.md b/pages.id/osx/gmktemp.md new file mode 100644 index 0000000000..c569ff1008 --- /dev/null +++ b/pages.id/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> Perintah ini merupakan alias dari `-p linux mktemp`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux mktemp` diff --git a/pages.id/osx/gmv.md b/pages.id/osx/gmv.md new file mode 100644 index 0000000000..6f269e22c0 --- /dev/null +++ b/pages.id/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> Perintah ini merupakan alias dari `-p linux mv`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux mv` diff --git a/pages.id/osx/gnice.md b/pages.id/osx/gnice.md new file mode 100644 index 0000000000..72b6d9a597 --- /dev/null +++ b/pages.id/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> Perintah ini merupakan alias dari `-p linux nice`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux nice` diff --git a/pages.id/osx/gnl.md b/pages.id/osx/gnl.md new file mode 100644 index 0000000000..5b5f2d261e --- /dev/null +++ b/pages.id/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> Perintah ini merupakan alias dari `-p linux nl`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux nl` diff --git a/pages.id/osx/gnohup.md b/pages.id/osx/gnohup.md new file mode 100644 index 0000000000..a6185d7cd3 --- /dev/null +++ b/pages.id/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> Perintah ini merupakan alias dari `-p linux nohup`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux nohup` diff --git a/pages.id/osx/gnproc.md b/pages.id/osx/gnproc.md new file mode 100644 index 0000000000..c560ba4d27 --- /dev/null +++ b/pages.id/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> Perintah ini merupakan alias dari `-p linux nproc`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux nproc` diff --git a/pages.id/osx/gnumfmt.md b/pages.id/osx/gnumfmt.md new file mode 100644 index 0000000000..2cec3eedc7 --- /dev/null +++ b/pages.id/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> Perintah ini merupakan alias dari `-p linux numfmt`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux numfmt` diff --git a/pages.id/osx/god.md b/pages.id/osx/god.md new file mode 100644 index 0000000000..afc38ccb6a --- /dev/null +++ b/pages.id/osx/god.md @@ -0,0 +1,7 @@ +# god + +> Perintah ini merupakan alias dari `-p linux od`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux od` diff --git a/pages.id/osx/gpaste.md b/pages.id/osx/gpaste.md new file mode 100644 index 0000000000..75c875abe3 --- /dev/null +++ b/pages.id/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> Perintah ini merupakan alias dari `-p linux paste`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux paste` diff --git a/pages.id/osx/gpathchk.md b/pages.id/osx/gpathchk.md new file mode 100644 index 0000000000..14144ce4b3 --- /dev/null +++ b/pages.id/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> Perintah ini merupakan alias dari `-p linux pathchk`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux pathchk` diff --git a/pages.id/osx/gping.md b/pages.id/osx/gping.md new file mode 100644 index 0000000000..6b50b71da2 --- /dev/null +++ b/pages.id/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> Perintah ini merupakan alias dari `-p linux ping`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux ping` diff --git a/pages.id/osx/gping6.md b/pages.id/osx/gping6.md new file mode 100644 index 0000000000..1e591e4c64 --- /dev/null +++ b/pages.id/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> Perintah ini merupakan alias dari `-p linux ping6`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux ping6` diff --git a/pages.id/osx/gpinky.md b/pages.id/osx/gpinky.md new file mode 100644 index 0000000000..b539f80668 --- /dev/null +++ b/pages.id/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> Perintah ini merupakan alias dari `-p linux pinky`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux pinky` diff --git a/pages.id/osx/gpr.md b/pages.id/osx/gpr.md new file mode 100644 index 0000000000..5566918117 --- /dev/null +++ b/pages.id/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> Perintah ini merupakan alias dari `-p linux pr`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux pr` diff --git a/pages.id/osx/gprintenv.md b/pages.id/osx/gprintenv.md new file mode 100644 index 0000000000..4c26f105a0 --- /dev/null +++ b/pages.id/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> Perintah ini merupakan alias dari `-p linux printenv`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux printenv` diff --git a/pages.id/osx/gprintf.md b/pages.id/osx/gprintf.md new file mode 100644 index 0000000000..5f9a2a178a --- /dev/null +++ b/pages.id/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> Perintah ini merupakan alias dari `-p linux printf`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux printf` diff --git a/pages.id/osx/gptx.md b/pages.id/osx/gptx.md new file mode 100644 index 0000000000..95252e1a0e --- /dev/null +++ b/pages.id/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> Perintah ini merupakan alias dari `-p linux ptx`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux ptx` diff --git a/pages.id/osx/gpwd.md b/pages.id/osx/gpwd.md new file mode 100644 index 0000000000..5e4aa068aa --- /dev/null +++ b/pages.id/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> Perintah ini merupakan alias dari `-p linux pwd`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux pwd` diff --git a/pages.id/osx/grcp.md b/pages.id/osx/grcp.md new file mode 100644 index 0000000000..1b1bd5dc32 --- /dev/null +++ b/pages.id/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> Perintah ini merupakan alias dari `-p linux rcp`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux rcp` diff --git a/pages.id/osx/greadlink.md b/pages.id/osx/greadlink.md new file mode 100644 index 0000000000..ec81325f9f --- /dev/null +++ b/pages.id/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> Perintah ini merupakan alias dari `-p linux readlink`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux readlink` diff --git a/pages.id/osx/grealpath.md b/pages.id/osx/grealpath.md new file mode 100644 index 0000000000..495c4bd1a4 --- /dev/null +++ b/pages.id/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> Perintah ini merupakan alias dari `-p linux realpath`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux realpath` diff --git a/pages.id/osx/grexec.md b/pages.id/osx/grexec.md new file mode 100644 index 0000000000..9ac048fd06 --- /dev/null +++ b/pages.id/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> Perintah ini merupakan alias dari `-p linux rexec`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux rexec` diff --git a/pages.id/osx/grlogin.md b/pages.id/osx/grlogin.md new file mode 100644 index 0000000000..1eccb8e8f8 --- /dev/null +++ b/pages.id/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> Perintah ini merupakan alias dari `-p linux rlogin`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux rlogin` diff --git a/pages.id/osx/grm.md b/pages.id/osx/grm.md new file mode 100644 index 0000000000..45255865fd --- /dev/null +++ b/pages.id/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> Perintah ini merupakan alias dari `-p linux rm`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux rm` diff --git a/pages.id/osx/grmdir.md b/pages.id/osx/grmdir.md new file mode 100644 index 0000000000..048eac7e02 --- /dev/null +++ b/pages.id/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> Perintah ini merupakan alias dari `-p linux rmdir`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux rmdir` diff --git a/pages.id/osx/grsh.md b/pages.id/osx/grsh.md new file mode 100644 index 0000000000..0aa6f778bd --- /dev/null +++ b/pages.id/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> Perintah ini merupakan alias dari `-p linux rsh`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux rsh` diff --git a/pages.id/osx/gruncon.md b/pages.id/osx/gruncon.md new file mode 100644 index 0000000000..0f47187e69 --- /dev/null +++ b/pages.id/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> Perintah ini merupakan alias dari `-p linux runcon`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux runcon` diff --git a/pages.id/osx/gsed.md b/pages.id/osx/gsed.md new file mode 100644 index 0000000000..44e9e58030 --- /dev/null +++ b/pages.id/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> Perintah ini merupakan alias dari `-p linux sed`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux sed` diff --git a/pages.id/osx/gseq.md b/pages.id/osx/gseq.md new file mode 100644 index 0000000000..6c65f0be34 --- /dev/null +++ b/pages.id/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> Perintah ini merupakan alias dari `-p linux seq`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux seq` diff --git a/pages.id/osx/gsha1sum.md b/pages.id/osx/gsha1sum.md new file mode 100644 index 0000000000..43b777b589 --- /dev/null +++ b/pages.id/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> Perintah ini merupakan alias dari `-p linux sha1sum`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux sha1sum` diff --git a/pages.id/osx/gsha224sum.md b/pages.id/osx/gsha224sum.md new file mode 100644 index 0000000000..0d646031f7 --- /dev/null +++ b/pages.id/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> Perintah ini merupakan alias dari `-p linux sha224sum`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux sha224sum` diff --git a/pages.id/osx/gsha256sum.md b/pages.id/osx/gsha256sum.md new file mode 100644 index 0000000000..3b141cf5f0 --- /dev/null +++ b/pages.id/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> Perintah ini merupakan alias dari `-p linux sha256sum`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux sha256sum` diff --git a/pages.id/osx/gsha384sum.md b/pages.id/osx/gsha384sum.md new file mode 100644 index 0000000000..9ab6fadb93 --- /dev/null +++ b/pages.id/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> Perintah ini merupakan alias dari `-p linux sha384sum`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux sha384sum` diff --git a/pages.id/osx/gsha512sum.md b/pages.id/osx/gsha512sum.md new file mode 100644 index 0000000000..65ecc458d3 --- /dev/null +++ b/pages.id/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> Perintah ini merupakan alias dari `-p linux sha512sum`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux sha512sum` diff --git a/pages.id/osx/gshred.md b/pages.id/osx/gshred.md new file mode 100644 index 0000000000..f7386bfac2 --- /dev/null +++ b/pages.id/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> Perintah ini merupakan alias dari `-p linux shred`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux shred` diff --git a/pages.id/osx/gshuf.md b/pages.id/osx/gshuf.md new file mode 100644 index 0000000000..c62eff7785 --- /dev/null +++ b/pages.id/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> Perintah ini merupakan alias dari `-p linux shuf`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux shuf` diff --git a/pages.id/osx/gsleep.md b/pages.id/osx/gsleep.md new file mode 100644 index 0000000000..8c8e20fb48 --- /dev/null +++ b/pages.id/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> Perintah ini merupakan alias dari `-p linux sleep`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux sleep` diff --git a/pages.id/osx/gsort.md b/pages.id/osx/gsort.md new file mode 100644 index 0000000000..4139b3c84d --- /dev/null +++ b/pages.id/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> Perintah ini merupakan alias dari `-p linux sort`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux sort` diff --git a/pages.id/osx/gsplit.md b/pages.id/osx/gsplit.md new file mode 100644 index 0000000000..b7951376f5 --- /dev/null +++ b/pages.id/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> Perintah ini merupakan alias dari `-p linux split`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux split` diff --git a/pages.id/osx/gstat.md b/pages.id/osx/gstat.md new file mode 100644 index 0000000000..e15e9f1d55 --- /dev/null +++ b/pages.id/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> Perintah ini merupakan alias dari `-p linux stat`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux stat` diff --git a/pages.id/osx/gstdbuf.md b/pages.id/osx/gstdbuf.md new file mode 100644 index 0000000000..8ec906142f --- /dev/null +++ b/pages.id/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> Perintah ini merupakan alias dari `-p linux stdbuf`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux stdbuf` diff --git a/pages.id/osx/gstty.md b/pages.id/osx/gstty.md new file mode 100644 index 0000000000..65bf67ce46 --- /dev/null +++ b/pages.id/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> Perintah ini merupakan alias dari `-p linux stty`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux stty` diff --git a/pages.id/osx/gsum.md b/pages.id/osx/gsum.md new file mode 100644 index 0000000000..4a0a82bf23 --- /dev/null +++ b/pages.id/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> Perintah ini merupakan alias dari `-p linux sum`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux sum` diff --git a/pages.id/osx/gsync.md b/pages.id/osx/gsync.md new file mode 100644 index 0000000000..51e544e9cd --- /dev/null +++ b/pages.id/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> Perintah ini merupakan alias dari `-p linux sync`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux sync` diff --git a/pages.id/osx/gtac.md b/pages.id/osx/gtac.md new file mode 100644 index 0000000000..011faf32ed --- /dev/null +++ b/pages.id/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> Perintah ini merupakan alias dari `-p linux tac`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux tac` diff --git a/pages.id/osx/gtail.md b/pages.id/osx/gtail.md new file mode 100644 index 0000000000..ed43bffc8f --- /dev/null +++ b/pages.id/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> Perintah ini merupakan alias dari `-p linux tail`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux tail` diff --git a/pages.id/osx/gtalk.md b/pages.id/osx/gtalk.md new file mode 100644 index 0000000000..155842de9d --- /dev/null +++ b/pages.id/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> Perintah ini merupakan alias dari `-p linux talk`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux talk` diff --git a/pages.id/osx/gtar.md b/pages.id/osx/gtar.md new file mode 100644 index 0000000000..696be34abc --- /dev/null +++ b/pages.id/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> Perintah ini merupakan alias dari `-p linux tar`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux tar` diff --git a/pages.id/osx/gtee.md b/pages.id/osx/gtee.md new file mode 100644 index 0000000000..8f6486c4d3 --- /dev/null +++ b/pages.id/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> Perintah ini merupakan alias dari `-p linux tee`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux tee` diff --git a/pages.id/osx/gtelnet.md b/pages.id/osx/gtelnet.md new file mode 100644 index 0000000000..e5e12af28b --- /dev/null +++ b/pages.id/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> Perintah ini merupakan alias dari `-p linux telnet`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux telnet` diff --git a/pages.id/osx/gtest.md b/pages.id/osx/gtest.md new file mode 100644 index 0000000000..23666cd4c8 --- /dev/null +++ b/pages.id/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> Perintah ini merupakan alias dari `-p linux test`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux test` diff --git a/pages.id/osx/gtftp.md b/pages.id/osx/gtftp.md new file mode 100644 index 0000000000..01972e4ed8 --- /dev/null +++ b/pages.id/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> Perintah ini merupakan alias dari `-p linux tftp`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux tftp` diff --git a/pages.id/osx/gtime.md b/pages.id/osx/gtime.md new file mode 100644 index 0000000000..d460861478 --- /dev/null +++ b/pages.id/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> Perintah ini merupakan alias dari `-p linux time`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux time` diff --git a/pages.id/osx/gtimeout.md b/pages.id/osx/gtimeout.md new file mode 100644 index 0000000000..7407b620af --- /dev/null +++ b/pages.id/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> Perintah ini merupakan alias dari `-p linux timeout`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux timeout` diff --git a/pages.id/osx/gtouch.md b/pages.id/osx/gtouch.md new file mode 100644 index 0000000000..37d510f0c5 --- /dev/null +++ b/pages.id/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> Perintah ini merupakan alias dari `-p linux touch`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux touch` diff --git a/pages.id/osx/gtr.md b/pages.id/osx/gtr.md new file mode 100644 index 0000000000..e46fe13f6e --- /dev/null +++ b/pages.id/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> Perintah ini merupakan alias dari `-p linux tr`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux tr` diff --git a/pages.id/osx/gtraceroute.md b/pages.id/osx/gtraceroute.md new file mode 100644 index 0000000000..18ade2a833 --- /dev/null +++ b/pages.id/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> Perintah ini merupakan alias dari `-p linux traceroute`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux traceroute` diff --git a/pages.id/osx/gtrue.md b/pages.id/osx/gtrue.md new file mode 100644 index 0000000000..a83c25c773 --- /dev/null +++ b/pages.id/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> Perintah ini merupakan alias dari `-p linux true`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux true` diff --git a/pages.id/osx/gtruncate.md b/pages.id/osx/gtruncate.md new file mode 100644 index 0000000000..ce0f7e0211 --- /dev/null +++ b/pages.id/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> Perintah ini merupakan alias dari `-p linux truncate`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux truncate` diff --git a/pages.id/osx/gtsort.md b/pages.id/osx/gtsort.md new file mode 100644 index 0000000000..caeb55c524 --- /dev/null +++ b/pages.id/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> Perintah ini merupakan alias dari `-p linux tsort`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux tsort` diff --git a/pages.id/osx/gtty.md b/pages.id/osx/gtty.md new file mode 100644 index 0000000000..4d32d4ee1a --- /dev/null +++ b/pages.id/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> Perintah ini merupakan alias dari `-p linux tty`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux tty` diff --git a/pages.id/osx/guname.md b/pages.id/osx/guname.md new file mode 100644 index 0000000000..f855a7a95f --- /dev/null +++ b/pages.id/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> Perintah ini merupakan alias dari `-p linux uname`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux uname` diff --git a/pages.id/osx/gunexpand.md b/pages.id/osx/gunexpand.md new file mode 100644 index 0000000000..57667ac426 --- /dev/null +++ b/pages.id/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> Perintah ini merupakan alias dari `-p linux unexpand`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux unexpand` diff --git a/pages.id/osx/guniq.md b/pages.id/osx/guniq.md new file mode 100644 index 0000000000..243e75e7ea --- /dev/null +++ b/pages.id/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> Perintah ini merupakan alias dari `-p linux uniq`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux uniq` diff --git a/pages.id/osx/gunits.md b/pages.id/osx/gunits.md new file mode 100644 index 0000000000..407888a797 --- /dev/null +++ b/pages.id/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> Perintah ini merupakan alias dari `-p linux units`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux units` diff --git a/pages.id/osx/gunlink.md b/pages.id/osx/gunlink.md new file mode 100644 index 0000000000..ab81f3d386 --- /dev/null +++ b/pages.id/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> Perintah ini merupakan alias dari `-p linux unlink`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux unlink` diff --git a/pages.id/osx/gupdatedb.md b/pages.id/osx/gupdatedb.md new file mode 100644 index 0000000000..b36bd94d15 --- /dev/null +++ b/pages.id/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> Perintah ini merupakan alias dari `-p linux updatedb`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux updatedb` diff --git a/pages.id/osx/guptime.md b/pages.id/osx/guptime.md new file mode 100644 index 0000000000..98af348308 --- /dev/null +++ b/pages.id/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> Perintah ini merupakan alias dari `-p linux uptime`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux uptime` diff --git a/pages.id/osx/gusers.md b/pages.id/osx/gusers.md new file mode 100644 index 0000000000..4562aa8b0c --- /dev/null +++ b/pages.id/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> Perintah ini merupakan alias dari `-p linux users`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux users` diff --git a/pages.id/osx/gvdir.md b/pages.id/osx/gvdir.md new file mode 100644 index 0000000000..75486fd6eb --- /dev/null +++ b/pages.id/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> Perintah ini merupakan alias dari `-p linux vdir`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux vdir` diff --git a/pages.id/osx/gwc.md b/pages.id/osx/gwc.md new file mode 100644 index 0000000000..3a980ba389 --- /dev/null +++ b/pages.id/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> Perintah ini merupakan alias dari `-p linux wc`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux wc` diff --git a/pages.id/osx/gwhich.md b/pages.id/osx/gwhich.md new file mode 100644 index 0000000000..d561a0b93b --- /dev/null +++ b/pages.id/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> Perintah ini merupakan alias dari `-p linux which`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux which` diff --git a/pages.id/osx/gwho.md b/pages.id/osx/gwho.md new file mode 100644 index 0000000000..edc1895605 --- /dev/null +++ b/pages.id/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> Perintah ini merupakan alias dari `-p linux who`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux who` diff --git a/pages.id/osx/gwhoami.md b/pages.id/osx/gwhoami.md new file mode 100644 index 0000000000..27381179d5 --- /dev/null +++ b/pages.id/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> Perintah ini merupakan alias dari `-p linux whoami`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux whoami` diff --git a/pages.id/osx/gwhois.md b/pages.id/osx/gwhois.md new file mode 100644 index 0000000000..63271d8841 --- /dev/null +++ b/pages.id/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> Perintah ini merupakan alias dari `-p linux whois`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux whois` diff --git a/pages.id/osx/gxargs.md b/pages.id/osx/gxargs.md new file mode 100644 index 0000000000..601f34dba4 --- /dev/null +++ b/pages.id/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> Perintah ini merupakan alias dari `-p linux xargs`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux xargs` diff --git a/pages.id/osx/gyes.md b/pages.id/osx/gyes.md new file mode 100644 index 0000000000..804b4b74bc --- /dev/null +++ b/pages.id/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> Perintah ini merupakan alias dari `-p linux yes`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr -p linux yes` diff --git a/pages.id/osx/launchd.md b/pages.id/osx/launchd.md new file mode 100644 index 0000000000..0e1ead599f --- /dev/null +++ b/pages.id/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> Perintah ini merupakan alias dari `launchctl`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr launchctl` diff --git a/pages.id/osx/open.md b/pages.id/osx/open.md index aba105a719..df12e20693 100644 --- a/pages.id/osx/open.md +++ b/pages.id/osx/open.md @@ -1,17 +1,17 @@ # open -> Membuka file, direktori, dan aplikasi. +> Buka file, direktori, dan aplikasi. > Informasi lebih lanjut: . -- Membuka sebuah file di dalam aplikasi default: +- Buka sebuah file di dalam aplikasi default: -`open {{file.ext}}` +`open {{jalan/menuju/file.ext}}` -- Membuka aplikasi macOS tertentu: +- Buka aplikasi macOS tertentu: `open -a "{{Aplikasi}}"` -- Membuka sebuah aplikasi macOS berdasarkan ID pengenal (bundle identifier) tertentu (gunakan `osascript` untuk mencari ID pengenal aplikasi secara mudah dan cepat): +- Buka sebuah aplikasi macOS berdasarkan ID pengenal (bundle identifier) tertentu (gunakan `osascript` untuk mencari ID pengenal aplikasi secara mudah dan cepat): `open -b {{com.domain.aplikasi}}` diff --git a/pages.id/osx/xcodes-runtimes.md b/pages.id/osx/xcodes-runtimes.md new file mode 100644 index 0000000000..9ac3b3085c --- /dev/null +++ b/pages.id/osx/xcodes-runtimes.md @@ -0,0 +1,16 @@ +# xcodes runtimes + +> Atur pemasangan runtime Simulator yang tersedia bagi aplikasi Xcode. +> Informasi lebih lanjut: . + +- Tampilkan seluruh Simulator yang tersedia bagi aplikasi Xcode: + +`xcodes runtimes --include-betas` + +- Unduh sebuah runtime Simulator: + +`xcodes runtimes download {{nama_runtime}}` + +- Unduh dan pasang sebuah runtime Simulator: + +`xcodes runtimes install {{nama_runtime}}` diff --git a/pages.id/osx/xcodes.md b/pages.id/osx/xcodes.md new file mode 100644 index 0000000000..fd41f8b682 --- /dev/null +++ b/pages.id/osx/xcodes.md @@ -0,0 +1,28 @@ +# xcodes + +> Unduh, pasang, dan atur pemasangan aplikasi Xcode dalam versi yang berbeda. +> Informasi lebih lanjut: . + +- Tampilkan daftar versi Xcode yang terpasang: + +`xcodes installed` + +- Tampilkan daftar versi Xcode yang tersedia: + +`xcodes list` + +- Pilih versi Xcode yang hendak digunakan sebagai default, dengan menyertakan versi atau lokasi aplikasi + +`xcodes select {{versi_xcode|jalan/menuju/Xcode.app}}` + +- Unduh dan pasang Xcode versi tertentu: + +`xcodes install {{versi_xcode}}` + +- Pasang aplikasi Xcode terkini dan pilih sebagai versi default: + +`xcodes install --latest --select` + +- Unduh Xcode versi tertentu ke sebuah direktori tanpa memasangnya ke dalam perangkat: + +`xcodes-download {{versi_xcode}} --directory {{jalan/menuju/direktori}}` diff --git a/pages.id/windows/cd.md b/pages.id/windows/cd.md index f173ced2e0..cc1448df1c 100644 --- a/pages.id/windows/cd.md +++ b/pages.id/windows/cd.md @@ -1,20 +1,24 @@ # cd -> Menampilkan nama atau ganti direktori saat ini. +> Menampilkan direktori kerja saat ini atau pindah ke direktori lain. > Informasi lebih lanjut: . -- Menuju suatu direktori pada drive yang sama: - -`cd {{lokasi/ke/direktori}}` - -- Menampilkan nama dari direktori saat ini: +- Tampilkan nama dari direktori saat ini: `cd` -- Menuju ke induk direktori dari direktori saat ini: +- Pergi menuju root dari drive saat ini: + +`cd \` + +- Pergi menuju induk dari direktori dari saat ini: `cd ..` -- Menuju direktori di dalam suatu drive: +- Pergi menuju suatu direktori pada drive yang sama: -`cd {{lokasi/ke/direktori}} /d` +`cd {{jalan/menuju/direktori}}` + +- Pergi menuju direktori tertentu di [d]rive yang berbeda: + +`cd /d {{C}}:{{jalan\menuju\direktori}}` diff --git a/pages.id/windows/choco-install.md b/pages.id/windows/choco-install.md index 7151972c75..1e670e428f 100644 --- a/pages.id/windows/choco-install.md +++ b/pages.id/windows/choco-install.md @@ -1,7 +1,7 @@ # choco install > Instal satu paket atau lebih dengan Chocolatey. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . - Instal satu paket atau lebih paket yang dipisahkan oleh spasi: diff --git a/pages.id/windows/chrome.md b/pages.id/windows/chrome.md new file mode 100644 index 0000000000..b9c5a327d5 --- /dev/null +++ b/pages.id/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> Perintah ini merupakan alias dari `chromium`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr chromium` diff --git a/pages.id/windows/cpush.md b/pages.id/windows/cpush.md new file mode 100644 index 0000000000..3dfbde7062 --- /dev/null +++ b/pages.id/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> Perintah ini merupakan alias dari `choco-push`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr choco-push` diff --git a/pages.id/windows/date.md b/pages.id/windows/date.md new file mode 100644 index 0000000000..a35cf4c276 --- /dev/null +++ b/pages.id/windows/date.md @@ -0,0 +1,16 @@ +# date + +> Menampilkan atau mengatur tanggal sistem. +> Informasi lebih lanjut: . + +- Tampilkan tanggal sistem saat ini dan meminta untuk memasukkan tanggal baru (biarkan kosong agar tidak berubah): + +`date` + +- Tampilkan tanggal sistem saat ini tanpa meminta untuk memasukkan tanggal baru: + +`date /t` + +- Ubah tanggal sistem saat ini ke tanggal tertentu: + +`date {{bulan}}-{{hari}}-{{tahun}}` diff --git a/pages.id/windows/logoff.md b/pages.id/windows/logoff.md new file mode 100644 index 0000000000..3a04d9154e --- /dev/null +++ b/pages.id/windows/logoff.md @@ -0,0 +1,16 @@ +# logoff + +> Akhiri sesi masuk. +> Informasi lebih lanjut: . + +- Akhiri sesi saat ini: + +`logoff` + +- Akhiri sesi dengan nama atau id-nya: + +`logoff {{nama_sesi|id_sesi}}` + +- Akhiri sesi pada server tertentu yang terhubung melalui RDP: + +`logoff {{nama_sesi|id_sesi}} /server:{{namaserver}}` diff --git a/pages.id/windows/pwsh-where.md b/pages.id/windows/pwsh-where.md new file mode 100644 index 0000000000..352ee586eb --- /dev/null +++ b/pages.id/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> Perintah ini merupakan alias dari `Where-Object`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr Where-Object` diff --git a/pages.id/windows/rd.md b/pages.id/windows/rd.md new file mode 100644 index 0000000000..6a2da8b994 --- /dev/null +++ b/pages.id/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> Perintah ini merupakan alias dari `rmdir`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr rmdir` diff --git a/pages.id/windows/sls.md b/pages.id/windows/sls.md new file mode 100644 index 0000000000..717b9a7d37 --- /dev/null +++ b/pages.id/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> Perintah ini merupakan alias dari `where-object`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr where-object` diff --git a/pages.id/windows/winget.md b/pages.id/windows/winget.md index 69b70bd293..4467ef5cc9 100644 --- a/pages.id/windows/winget.md +++ b/pages.id/windows/winget.md @@ -1,7 +1,7 @@ # winget > Manajer Paket Antarmuka Baris Perintah Windows. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . - Instal paket: diff --git a/pages.it/android/bugreport.md b/pages.it/android/bugreport.md index c243429fa4..e6c6f62503 100644 --- a/pages.it/android/bugreport.md +++ b/pages.it/android/bugreport.md @@ -2,7 +2,7 @@ > Mostra un report dei bug del dispositivo Android. > Questo comando può essere usato solamente addraverso la `adb shell`. -> Informazioni aggiuntive: . +> Maggiori informazioni: . - Mostra un report completo dei bug riscontrati nel dispositivo Android: diff --git a/pages.it/android/cmd.md b/pages.it/android/cmd.md index 359bde5234..136843aa79 100644 --- a/pages.it/android/cmd.md +++ b/pages.it/android/cmd.md @@ -1,7 +1,7 @@ # cmd > Gestore del servizio Android. -> Maggiori informazioni: . +> Maggiori informazioni: . - Elenca tutti i servizi in esecuzione: diff --git a/pages.it/common/7z.md b/pages.it/common/7z.md index 6e52d28641..515b277aaa 100644 --- a/pages.it/common/7z.md +++ b/pages.it/common/7z.md @@ -1,7 +1,7 @@ # 7z > Archiviatore di file con alto fattore di compressione. -> Maggiori informazioni: . +> Maggiori informazioni: . - Archivia un file o una directory: diff --git a/pages.it/common/7za.md b/pages.it/common/7za.md index ee4db01cd6..f3cc4a5186 100644 --- a/pages.it/common/7za.md +++ b/pages.it/common/7za.md @@ -2,7 +2,7 @@ > Archiviatore di file con alto fattore di compressione. > Versione standalone di `7z` con supporto a meno tipi di archivi. -> Maggiori informazioni: . +> Maggiori informazioni: . - Archivia un file o una directory: diff --git a/pages.it/common/7zr.md b/pages.it/common/7zr.md index 876d4613b0..681aaed0c1 100644 --- a/pages.it/common/7zr.md +++ b/pages.it/common/7zr.md @@ -2,7 +2,7 @@ > Archiviatore di file con alto fattore di compressione. > Versione standalone di `7z` che supporta solo file .7z. -> Maggiori informazioni: . +> Maggiori informazioni: . - Archivia un file o una directory: diff --git a/pages.it/common/age.md b/pages.it/common/age.md index 6c66133d9b..2ecc3357e4 100644 --- a/pages.it/common/age.md +++ b/pages.it/common/age.md @@ -7,7 +7,7 @@ `age --passphrase --output {{percorso/del/file_cifrato}} {{percorso/del/file_non_cifrato}}` -- Generare una coppia di chiavi, salvando la chiave privata in un file non cifrato e stampando sullo stdout la chiave pubblica: +- Generare una coppia di chiavi, salvando la chiave privata in un file non cifrato e stampando sullo `stdout` la chiave pubblica: `age-keygen --output {{percorso/del/file}}` diff --git a/pages.it/common/apg.md b/pages.it/common/apg.md index 2fe8167927..4bbe06e4b0 100644 --- a/pages.it/common/apg.md +++ b/pages.it/common/apg.md @@ -21,4 +21,4 @@ - Crea una password che non è già presente in un dizionario (file dizionario fornito come argomento): -`apg -r {{dizionario}}` +`apg -r {{percorso/del/dizionario}}` diff --git a/pages.it/common/apm.md b/pages.it/common/apm.md index e8f745a038..7361e1721e 100644 --- a/pages.it/common/apm.md +++ b/pages.it/common/apm.md @@ -4,7 +4,7 @@ > Vedi `atom`. > Maggiori informazioni: . -- Installa pacchetti da http://atom.io/packages e temi da http://atom.io/themes: +- Installa pacchetti da e temi da : `apm install {{nome_pacchetto}}` diff --git a/pages.it/common/arp.md b/pages.it/common/arp.md index fcbc9553f3..1469b989af 100644 --- a/pages.it/common/arp.md +++ b/pages.it/common/arp.md @@ -7,10 +7,6 @@ `arp -a` -- Elimina l'intera cache: - -`sudo arp -a -d` - - Elimina una specifica voce: `arp -d {{indirizzo}}` diff --git a/pages.it/common/asciinema.md b/pages.it/common/asciinema.md index 083172c9f4..1351ad3712 100644 --- a/pages.it/common/asciinema.md +++ b/pages.it/common/asciinema.md @@ -1,7 +1,7 @@ # asciinema > Registra e riproduci sessioni di terminale, condividendole opzionalmente su asciiname.org. -> Maggiori informazioni: . +> Maggiori informazioni: . - Associa l'installazione locale di `asciiname` ad un account di asciiname.org: diff --git a/pages.it/common/assimp.md b/pages.it/common/assimp.md index 0de2ab9c05..52749214a8 100644 --- a/pages.it/common/assimp.md +++ b/pages.it/common/assimp.md @@ -2,7 +2,7 @@ > Client da linea di comando per la Open Asset Import Library. > Supporta il caricamento di 40+ formati di file per modelli 3D, e l'espoerazione di diversi formati 3D popolari. -> Maggiori informazioni: . +> Maggiori informazioni: . - Elenca tutti i formati supportati: diff --git a/pages.it/common/astyle.md b/pages.it/common/astyle.md index 663fee2667..d1573adf47 100644 --- a/pages.it/common/astyle.md +++ b/pages.it/common/astyle.md @@ -2,7 +2,7 @@ > Indentatore, formattatore e beautifier di codice sorgente per i linguaggi C, C++, C# e Java. > Quando eseguito, una copia del file originale è creata con l'estensione ".orig" aggiunta come suffisso. -> Maggiori informazioni: . +> Maggiori informazioni: . - Applica lo stile di default di 4 spazi per livello di indentazione e nessun cambiamento alla formattazione: diff --git a/pages.it/common/autoflake.md b/pages.it/common/autoflake.md index fdbfa6d03f..9513988a47 100644 --- a/pages.it/common/autoflake.md +++ b/pages.it/common/autoflake.md @@ -5,15 +5,15 @@ - Rimuovi le variabili inutilizzate da un file e mostra la differenza: -`autoflake --remove-unused-variables {{file.py}}` +`autoflake --remove-unused-variables {{percorso/del/file.py}}` - Rimuovi gli import inutilizzati da multipli file mostrando le differenze: -`autoflake --remove-all-unused-imports {{file1.py}} {{file2.py}} {{file3.py}}` +`autoflake --remove-all-unused-imports {{percorso/del/file1.py percorso/del/file2.py ...}}` - Rimuovi le variabili inutilizzate da un file, sovrascrivendolo: -`autoflake --remove-unused-variables --in-place {{file.py}}` +`autoflake --remove-unused-variables --in-place {{percorso/del/file.py}}` - Rimuovi le variabili inutilizzate da tutti i file in una directory, ricorsivamente e sovrascrivendoli: diff --git a/pages.it/common/babel.md b/pages.it/common/babel.md index f3a04bcffc..b12c0ccb00 100644 --- a/pages.it/common/babel.md +++ b/pages.it/common/babel.md @@ -3,7 +3,7 @@ > Un transpiler che converte codice JavaScript da sintassi ES6/ES7 ad ES5. > Maggiori informazioni: . -- Transpila uno specifico file e stampa il risultato su stdout: +- Transpila uno specifico file e stampa il risultato su `stdout`: `babel {{percorso/del/file}}` diff --git a/pages.it/common/banner.md b/pages.it/common/banner.md index bad959033a..1aa1c24752 100644 --- a/pages.it/common/banner.md +++ b/pages.it/common/banner.md @@ -11,6 +11,6 @@ `banner -w {{50}} "{{Hello World}}"` -- Leggi testo da stdin: +- Leggi testo da `stdin`: `banner` diff --git a/pages.it/common/base32.md b/pages.it/common/base32.md index 52c8c0172a..88cab2c671 100644 --- a/pages.it/common/base32.md +++ b/pages.it/common/base32.md @@ -11,10 +11,10 @@ `base32 --decode {{nome_file}}` -- Codifica da stdin: +- Codifica da `stdin`: `{{comando}} | base32` -- Decodifica da stdin: +- Decodifica da `stdin`: `{{comando}} | base32 --decode` diff --git a/pages.it/common/base64.md b/pages.it/common/base64.md index e2811bbbeb..7c3d3562f2 100644 --- a/pages.it/common/base64.md +++ b/pages.it/common/base64.md @@ -11,10 +11,10 @@ `base64 --decode {{nome_file}}` -- Codifica da stdin: +- Codifica da `stdin`: `{{comando}} | base64` -- Decodifica da stdin: +- Decodifica da `stdin`: `{{comando}} | base64 --decode` diff --git a/pages.it/linux/binwalk.md b/pages.it/common/binwalk.md similarity index 100% rename from pages.it/linux/binwalk.md rename to pages.it/common/binwalk.md diff --git a/pages.it/common/black.md b/pages.it/common/black.md index a677acf80e..7870f316ce 100644 --- a/pages.it/common/black.md +++ b/pages.it/common/black.md @@ -1,7 +1,7 @@ # black > Un formattatore automatico di codice Python. -> Maggiori informazioni: . +> Maggiori informazioni: . - Auto-formatta un file o un'intera directory: diff --git a/pages.it/common/blender.md b/pages.it/common/blender.md index 8d70b42de0..9add0f3df9 100644 --- a/pages.it/common/blender.md +++ b/pages.it/common/blender.md @@ -2,7 +2,7 @@ > Interfaccia da linea di comando per il programma di grafica Blender 3D. > Gli argomenti sono eseguiti nell'ordine in cui sono dati. -> Maggiori informazioni: . +> Maggiori informazioni: . - Renderizza tutti i frame di una animazione in background, senza caricare l'interfaccia grafica (l'output è salvato in `/tmp`): diff --git a/pages.it/common/bundler.md b/pages.it/common/bundler.md new file mode 100644 index 0000000000..506bac5401 --- /dev/null +++ b/pages.it/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> Questo comando è un alias per `bundle`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr bundle` diff --git a/pages.it/common/bzip2.md b/pages.it/common/bzip2.md index a3b319f89e..c829b64b89 100644 --- a/pages.it/common/bzip2.md +++ b/pages.it/common/bzip2.md @@ -1,7 +1,7 @@ # bzip2 > Compressore di file a blocchi ordinati. -> Maggiori informazioni: . +> Maggiori informazioni: . - Comprimi un file: diff --git a/pages.it/common/calibre-server.md b/pages.it/common/calibre-server.md index 8a8858c836..b74677d21b 100644 --- a/pages.it/common/calibre-server.md +++ b/pages.it/common/calibre-server.md @@ -5,11 +5,11 @@ > Parte del manager di e-book Calibre. > Maggiori informazioni: . -- Avvia un server per distribuire e-book. Accesso a http://localhost:8080: +- Avvia un server per distribuire e-book. Accesso a : `calibre-server` -- Avvia il server su una specifica porta. Accesso a http://localhost:porta: +- Avvia il server su una specifica porta. Accesso a : `calibre-server --port {{porta}}` diff --git a/pages.it/common/cargo.md b/pages.it/common/cargo.md index 13cb5edfc5..fa0a79b69e 100644 --- a/pages.it/common/cargo.md +++ b/pages.it/common/cargo.md @@ -3,7 +3,7 @@ > Gestore di pacchetti di Rust. > Gestisce progetti Rust ed i moduli dai quali sono dipendenti (detti crate). > Alcuni comandi aggiuntivi, come `cargo build`, hanno la propria documentazione. -> Maggiori informazioni: . +> Maggiori informazioni: . - Cerca una crate: diff --git a/pages.it/common/clamav.md b/pages.it/common/clamav.md new file mode 100644 index 0000000000..8b05ce25a9 --- /dev/null +++ b/pages.it/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> Questo comando è un alias per `clamdscan`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr clamdscan` diff --git a/pages.it/common/clamscan.md b/pages.it/common/clamscan.md index 07782dba85..3a6bb469bc 100644 --- a/pages.it/common/clamscan.md +++ b/pages.it/common/clamscan.md @@ -1,7 +1,7 @@ # clamscan > Scanner antivirus da linea di comando. -> Maggiori informazioni: . +> Maggiori informazioni: . - Analizza un file cercando vulnerabilità: diff --git a/pages.it/common/cron.md b/pages.it/common/cron.md new file mode 100644 index 0000000000..f42dfe94d6 --- /dev/null +++ b/pages.it/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> Questo comando è un alias per `crontab`. + +- Consulta la documentazione del comando originale: + +`tldr crontab` diff --git a/pages.it/common/cut.md b/pages.it/common/cut.md index 615bdb473e..3996e579ae 100644 --- a/pages.it/common/cut.md +++ b/pages.it/common/cut.md @@ -1,9 +1,9 @@ # cut -> Taglia dividendo in campi stdin o file. +> Taglia dividendo in campi `stdin` o file. > Maggiori informazioni: . -- Estrai i primi 16 caratteri di ogni riga da stdin: +- Estrai i primi 16 caratteri di ogni riga da `stdin`: `cut -c {{1-16}}` diff --git a/pages.it/common/dash.md b/pages.it/common/dash.md index af0050eb36..9dbb2a5055 100644 --- a/pages.it/common/dash.md +++ b/pages.it/common/dash.md @@ -23,6 +23,6 @@ `dash -e {{percorso/dello/script.sh}}` -- Leggi ed esegui commandi dal stdin: +- Leggi ed esegui commandi dal `stdin`: `dash -s` diff --git a/pages.it/common/docker-compose.md b/pages.it/common/docker-compose.md index 96110c4e77..b839263727 100644 --- a/pages.it/common/docker-compose.md +++ b/pages.it/common/docker-compose.md @@ -9,7 +9,7 @@ - Crea ed avvia tutti i container in background utilizzando il file `docker-compose.yml` nella directory corrente: -`docker compose up -d` +`docker compose up --detach` - Avvia tutti i container, buildandoli di nuovo se necessario: diff --git a/pages.it/common/docker-exec.md b/pages.it/common/docker-exec.md index fcc4dd8ba8..82f7367f57 100644 --- a/pages.it/common/docker-exec.md +++ b/pages.it/common/docker-exec.md @@ -15,7 +15,7 @@ `docker exec --interactive -tty --workdir {{percorso/della/directory}} {{nome_container}} {{comando}}` -- Esegui un comando in background su un container esistente, mantenendo aperto stdin: +- Esegui un comando in background su un container esistente, mantenendo aperto `stdin`: `docker exec --interactive --detach {{nome_container}} {{comando}}` diff --git a/pages.it/common/elm.md b/pages.it/common/elm.md index d87ffd6843..80b1a04ac1 100644 --- a/pages.it/common/elm.md +++ b/pages.it/common/elm.md @@ -23,6 +23,6 @@ `elm reactor` -- Installa un pacchetto Elm da https://package.elm-lang.org: +- Installa un pacchetto Elm da : `elm install {{author}}/{{package}}` diff --git a/pages.it/common/envsubst.md b/pages.it/common/envsubst.md index 05d595ac71..96b1ea8c51 100644 --- a/pages.it/common/envsubst.md +++ b/pages.it/common/envsubst.md @@ -4,11 +4,11 @@ > Le variabili da sostituire devono essere nella forma `${var}` oppure `$var`. > Maggiori informazioni: . -- Sostituisci variabili di ambiente in stdin e stampa l'output su stdout: +- Sostituisci variabili di ambiente in `stdin` e stampa l'output su `stdout`: `echo '{{$HOME}}' | envsubst` -- Sostituisci variabili di ambiente in un file input e stampa l'output su stdout: +- Sostituisci variabili di ambiente in un file input e stampa l'output su `stdout`: `envsubst < {{percorso/del/file_input}}` diff --git a/pages.it/common/eslint.md b/pages.it/common/eslint.md index 23ef22c9a6..09843e530a 100644 --- a/pages.it/common/eslint.md +++ b/pages.it/common/eslint.md @@ -9,7 +9,7 @@ - Esegui il linting di un dato set di file: -`eslint {{file1.js file2.js}}` +`eslint {{percorso/del/file1.js percorso/del/file2.js ...}}` - Risolvi gli errori di linting: @@ -17,4 +17,4 @@ - Esegui il linting utilizzando un determinato file di configurazione: -`eslint -c {{percorso/del/file_config}} {{app/src}}` +`eslint -c {{percorso/del/file_config}} {{percorso/del/file1.js percorso/del/file2.js ...}}` diff --git a/pages.it/common/fastboot.md b/pages.it/common/fastboot.md index 581e927014..78755fbd32 100644 --- a/pages.it/common/fastboot.md +++ b/pages.it/common/fastboot.md @@ -1,7 +1,7 @@ # fastboot > Comunica con il dispositivo Android connessione quando in modalità bootloader (la situazione in cui `adb` non funziona). -> Maggiori informazioni: . +> Maggiori informazioni: . - Sblocca il bootloader: diff --git a/pages.it/common/fossil-ci.md b/pages.it/common/fossil-ci.md new file mode 100644 index 0000000000..46b31e6aa3 --- /dev/null +++ b/pages.it/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> Questo comando è un alias per `fossil-commit`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr fossil-commit` diff --git a/pages.it/common/fossil-delete.md b/pages.it/common/fossil-delete.md new file mode 100644 index 0000000000..045c510887 --- /dev/null +++ b/pages.it/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> Questo comando è un alias per `fossil rm`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr fossil rm` diff --git a/pages.it/common/fossil-forget.md b/pages.it/common/fossil-forget.md new file mode 100644 index 0000000000..4047c7b2a9 --- /dev/null +++ b/pages.it/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> Questo comando è un alias per `fossil rm`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr fossil rm` diff --git a/pages.it/common/fossil-new.md b/pages.it/common/fossil-new.md new file mode 100644 index 0000000000..929b3c0345 --- /dev/null +++ b/pages.it/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> Questo comando è un alias per `fossil-init`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr fossil-init` diff --git a/pages.it/common/gh-cs.md b/pages.it/common/gh-cs.md new file mode 100644 index 0000000000..9a71c8c027 --- /dev/null +++ b/pages.it/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> Questo comando è un alias per `gh-codespace`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr gh-codespace` diff --git a/pages.it/common/git-check-ignore.md b/pages.it/common/git-check-ignore.md index 98d5b60073..ca1a96b6d0 100644 --- a/pages.it/common/git-check-ignore.md +++ b/pages.it/common/git-check-ignore.md @@ -11,7 +11,7 @@ `git check-ignore {{percorso/del/file}} {{percorso/della/directory}}` -- Leggi i percorsi di file o directory da stdin (uno per riga) invece che dalla riga di comando: +- Leggi i percorsi di file o directory da `stdin` (uno per riga) invece che dalla riga di comando: `git check-ignore --stdin < {{percorso/della/lista_dei_file_o_directory}}` diff --git a/pages.it/common/git-cherry-pick.md b/pages.it/common/git-cherry-pick.md index a1c51ceafb..843a93b716 100644 --- a/pages.it/common/git-cherry-pick.md +++ b/pages.it/common/git-cherry-pick.md @@ -18,4 +18,4 @@ - Aggiungi le modifiche introdotte da un commit alla directory di lavoro, ma senza creare un nuovo commit: -`git cherry-pick -n {{commit}}` +`git cherry-pick --no-commit {{commit}}` diff --git a/pages.it/common/git-format-patch.md b/pages.it/common/git-format-patch.md index 22d7f397f6..9fbcf02c28 100644 --- a/pages.it/common/git-format-patch.md +++ b/pages.it/common/git-format-patch.md @@ -8,7 +8,7 @@ `git format-patch {{origin}}` -- Scrivi su stdout un file `.patch` per l'intervallo di commit definito dai due commit dati: +- Scrivi su `stdout` un file `.patch` per l'intervallo di commit definito dai due commit dati: `git format-patch --stdout {{commit_1}}..{{commit_2}}` diff --git a/pages.it/common/git-init.md b/pages.it/common/git-init.md index 8265695644..5f6b1edffb 100644 --- a/pages.it/common/git-init.md +++ b/pages.it/common/git-init.md @@ -7,6 +7,14 @@ `git init` +- Inizializza un repository con il nome specificato per il ramo iniziale: + +`git init --initial-branch={{nome_ramo}}` + +- Inizializza un repository usando SHA256 per gli hash degli oggetti (richiede Git versione 2.29+): + +`git init --object-format={{sha256}}` + - Inizializza un repository di soli dati, adatto per essere usato come server remoto accessibile via ssh: `git init --bare` diff --git a/pages.it/common/git-prune.md b/pages.it/common/git-prune.md index 5071ad4761..e3da1586da 100644 --- a/pages.it/common/git-prune.md +++ b/pages.it/common/git-prune.md @@ -8,7 +8,7 @@ `git prune --dry-run` -- Elimina gli oggetti non raggiungibili e stampane un elenco su stdout: +- Elimina gli oggetti non raggiungibili e stampane un elenco su `stdout`: `git prune --verbose` diff --git a/pages.it/common/git-push.md b/pages.it/common/git-push.md index 8a0432e0db..663afefa46 100644 --- a/pages.it/common/git-push.md +++ b/pages.it/common/git-push.md @@ -1,6 +1,6 @@ # git push -> Invia i commit a un repository remoto. +> Invia i commit ad un repository remoto. > Maggiori informazioni: . - Invia le modifiche fatte nel ramo corrente locale al corrispondente ramo remoto: @@ -11,11 +11,15 @@ `git push {{nome_repository_remoto}} {{nome_ramo}}` -- Pubblica il ramo corrente in un repository remoto, specificando il nome del ramo remoto: +- Invia le modifiche fatte in uno specifico ramo locale al corrispondente ramo remoto ed imposta il ramo remoto come destinazione di default per i push/pull del ramo locale: -`git push {{nome_repository_remoto}} -u {{nome_ramo_remoto}}` +`git push -u {{nome_repository_remoto}} {{nome_ramo}}` -- Invia le modifiche fatte in ogni ramo locale ai corrispondenti rami remoti: +- Invia le modifiche fatte in uno specifico ramo locale ad uno specifico ramo remoto: + +`git push {{nome_repository_remoto}} {{nome_ramo}}:{{nome_ramo_remoto}}` + +- Invia le modifiche fatte in ogni ramo locale ai corrispondenti rami remoti in uno specifico repository remoto: `git push --all {{nome_repository_remoto}}` diff --git a/pages.it/common/gnmic-sub.md b/pages.it/common/gnmic-sub.md new file mode 100644 index 0000000000..aafbcef884 --- /dev/null +++ b/pages.it/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> Questo comando è un alias per `gnmic subscribe`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr gnmic subscribe` diff --git a/pages.it/common/google-chrome.md b/pages.it/common/google-chrome.md new file mode 100644 index 0000000000..fc8eebf425 --- /dev/null +++ b/pages.it/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> Questo comando è un alias per `chromium`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr chromium` diff --git a/pages.it/common/hx.md b/pages.it/common/hx.md new file mode 100644 index 0000000000..56522955f7 --- /dev/null +++ b/pages.it/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> Questo comando è un alias per `helix`. + +- Consulta la documentazione del comando originale: + +`tldr helix` diff --git a/pages.it/common/kafkacat.md b/pages.it/common/kafkacat.md new file mode 100644 index 0000000000..849065f675 --- /dev/null +++ b/pages.it/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> Questo comando è un alias per `kcat`. + +- Consulta la documentazione del comando originale: + +`tldr kcat` diff --git a/pages.it/common/kubectl.md b/pages.it/common/kubectl.md index c02eb657e2..9719f60f1e 100644 --- a/pages.it/common/kubectl.md +++ b/pages.it/common/kubectl.md @@ -2,7 +2,7 @@ > Interfaccia interattiva da linea di comando per eseguire comandi sui clusters Kubernetes. > Alcuni comandi aggiuntivi, come `kubectl run`, hanno la propria documentazione.. -> Maggiorni informazioni: . +> Maggiori informazioni: . - Elenca le informazioni su una risorsa in maniera dettagliata: diff --git a/pages.it/common/ls.md b/pages.it/common/ls.md index e79b508073..22d39c221b 100644 --- a/pages.it/common/ls.md +++ b/pages.it/common/ls.md @@ -11,11 +11,15 @@ `ls -a` -- Elenca tutti i file e mostra informazioni (permessi, dimensione e data di ultima modifica): +- Elenca tutti i file, aggiungendo `/` in coda ai nomi delle directory: + +`ls -F` + +- Elenca tutti i file e mostra informazioni (permessi, proprietà, dimensione e data di ultima modifica): `ls -la` -- Elenca tutti i file e mostra informazioni usando un formato facilmente leggibile (KiB, MiB, GiB): +- Elenca tutti i file e mostra informazioni con la dimensione esposta usando un formato facilmente leggibile (KiB, MiB, GiB): `ls -lh` @@ -23,6 +27,10 @@ `ls -lS` -- Elenca tutti i file e mostra informazioni, ordinandoli per ultima modifica: +- Elenca tutti i file e mostra informazioni, ordinandoli per data di ultima modifica (i più vecchi prima): `ls -ltr` + +- Elenca solo le directory: + +`ls -d */` diff --git a/pages.it/common/lzcat.md b/pages.it/common/lzcat.md new file mode 100644 index 0000000000..4a6f90b6f4 --- /dev/null +++ b/pages.it/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> Questo comando è un alias per `xz`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr xz` diff --git a/pages.it/common/lzma.md b/pages.it/common/lzma.md new file mode 100644 index 0000000000..a936e330d8 --- /dev/null +++ b/pages.it/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> Questo comando è un alias per `xz`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr xz` diff --git a/pages.it/common/mv.md b/pages.it/common/mv.md index de31603df9..faea9dc8c9 100644 --- a/pages.it/common/mv.md +++ b/pages.it/common/mv.md @@ -5,20 +5,20 @@ - Sposta file: -`mv {{sorgente}} {{destinazione}}` +`mv {{percorso/del/sorgente}} {{percorso/del/destinazione}}` - Sposta file senza chiedere conferma prima di sovrascrivere file esistenti: -`mv -f {{sorgente}} {{destinazione}}` +`mv -f {{percorso/del/sorgente}} {{percorso/del/destinazione}}` - Sposta file interattivamente, chiedendo conferma prima di sovrascrivere file esistenti: -`mv -i {{sorgente}} {{destinazione}}` +`mv -i {{percorso/del/sorgente}} {{percorso/del/destinazione}}` - Sposta file senza sovrascrivere file esistenti: -`mv -n {{sorgente}} {{destinazione}}` +`mv -n {{percorso/del/sorgente}} {{percorso/del/destinazione}}` - Sposta file in modalità verbosa, mostrando a schermo ogni file che viene spostato: -`mv -v {{sorgente}} {{destinazione}}` +`mv -v {{percorso/del/sorgente}} {{percorso/del/destinazione}}` diff --git a/pages.it/common/nm-classic.md b/pages.it/common/nm-classic.md new file mode 100644 index 0000000000..0d76ab5969 --- /dev/null +++ b/pages.it/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> Questo comando è un alias per `nm`. + +- Consulta la documentazione del comando originale: + +`tldr nm` diff --git a/pages.it/common/node.md b/pages.it/common/node.md new file mode 100644 index 0000000000..2a8d28c945 --- /dev/null +++ b/pages.it/common/node.md @@ -0,0 +1,24 @@ +# node + +> Piattaforma JavaScript Server-side (Node.js). +> Maggiori informazioni: . + +- Esegue un file JavaScript: + +`node {{percorso/al/file}}` + +- Avvia una REPL (shell interattiva): + +`node` + +- Esegue il codice JavaScript che viene specificato come argomento: + +`node -e "{{codice}}"` + +- Valuta un'espressione e ne stampa il risultato, questo comando specifico è utile per vedere le versioni delle dipendenze di node: + +`node -p "process.versions"` + +- Attiva il debugger mettendo in pausa l'esecuzione finché il codice sorgente non viene caricato: + +`node --no-lazy --inspect-brk {{percorso/al/file}}` diff --git a/pages.it/common/npx.md b/pages.it/common/npx.md new file mode 100644 index 0000000000..57d5d9d4cb --- /dev/null +++ b/pages.it/common/npx.md @@ -0,0 +1,24 @@ +# npx + +> Esegue file binari dai pacchetti `npm`. +> Maggiori informazioni: . + +- Esegue un file binario di uno specifico modulo: + +`npx {{nome_modulo}} {{argomenti_comando}}` + +- Nel caso in cui ci siano più binari per lo stesso modulo, specifica il pacchetto da eseguire: + +`npx --package {{nome_pacchetto}} {{nome_modulo}}` + +- Lancia un comando unicamente se questo esiste nel path corrente o in `node_modules/.bin`: + +`npx --no-install {{comando}} {{argomenti_comando}}` + +- Esegue il file binario del modulo specificato evitando di mostrare l'output prodotto dallo stesso `npx`: + +`npx --quiet {{nome_modulo}} {{argomenti_comando}}` + +- Mostra il menù d'aiuto: + +`npx --help` diff --git a/pages.it/common/ntl.md b/pages.it/common/ntl.md new file mode 100644 index 0000000000..4baf77f279 --- /dev/null +++ b/pages.it/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> Questo comando è un alias per `netlify`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr netlify` diff --git a/pages.it/common/powershell.md b/pages.it/common/powershell.md new file mode 100644 index 0000000000..676bd462a1 --- /dev/null +++ b/pages.it/common/powershell.md @@ -0,0 +1,37 @@ +# powershell + +> Shell della riga di comando e linguaggio di scripting progettato appositamente per l'amministrazione dei sistemi. +> Guarda anche: `pwsh`. +> Maggiori informazioni: . + +- Avvia una sessione di shell interattiva: + +`powershell` + +- Avvia una sessione shell interattiva senza caricare le configurazioni di avvio: + +`powershell -NoProfile` + +- Esegui specifici comandi: + +`powershell -Command "{{echo 'powershell è eseguito'}}"` + +- Esegui uno specifico script: + +`powershell -File {{percorso/dello/script.ps1}}` + +- Avvia una sessione con una versione specifica di PowerShell: + +`powershell -Version {{versione}}` + +- Impedisci l'uscita dalla shell dopo aver eseguito i comandi di avvio: + +`powershell -NoExit` + +- Specifica il formato dei dati inviati a PowerShell: + +`powershell -InputFormat {{Text|XML}}` + +- Specifica come formattatare l'output da PowerShell: + +`powershell -OutputFormat {{Text|XML}}` diff --git a/pages.it/common/ptpython3.md b/pages.it/common/ptpython3.md new file mode 100644 index 0000000000..98f6f62d94 --- /dev/null +++ b/pages.it/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> Questo comando è un alias per `ptpython`. + +- Consulta la documentazione del comando originale: + +`tldr ptpython` diff --git a/pages.it/common/rcat.md b/pages.it/common/rcat.md new file mode 100644 index 0000000000..e551deb253 --- /dev/null +++ b/pages.it/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> Questo comando è un alias per `rc`. + +- Consulta la documentazione del comando originale: + +`tldr rc` diff --git a/pages.it/common/ripgrep.md b/pages.it/common/ripgrep.md new file mode 100644 index 0000000000..ab09014505 --- /dev/null +++ b/pages.it/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> Questo comando è un alias per `rg`. + +- Consulta la documentazione del comando originale: + +`tldr rg` diff --git a/pages.it/common/rm.md b/pages.it/common/rm.md index f95892e25e..913073ae31 100644 --- a/pages.it/common/rm.md +++ b/pages.it/common/rm.md @@ -17,7 +17,7 @@ - Rimuovi file interattivamente, chiedendo conferma prima di rimuovere ogni file: -`rm -i {{file(s)}}` +`rm -i {{percorso/del/file1 percorso/del/file2 ...}}` - Rimuovi file in modalità verbosa, scrivendo un messaggio a schermo per ogni file rimosso: diff --git a/pages.it/common/task.md b/pages.it/common/task.md index 3efe8c2595..aa68be807a 100644 --- a/pages.it/common/task.md +++ b/pages.it/common/task.md @@ -1,7 +1,7 @@ # task > Gestore della lista dei TODO. -> Maggiori informazioni: . +> Maggiori informazioni: . - Aggiungere un nuovo task: diff --git a/pages.it/common/todoman.md b/pages.it/common/todoman.md new file mode 100644 index 0000000000..582a39a083 --- /dev/null +++ b/pages.it/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> Questo comando è un alias per `todo`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr todo` diff --git a/pages.it/common/transmission.md b/pages.it/common/transmission.md new file mode 100644 index 0000000000..1591bb9766 --- /dev/null +++ b/pages.it/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> Questo comando è un alias per `transmission-daemon`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr transmission-daemon` diff --git a/pages.it/common/unlzma.md b/pages.it/common/unlzma.md new file mode 100644 index 0000000000..316d24c7e2 --- /dev/null +++ b/pages.it/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> Questo comando è un alias per `xz`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr xz` diff --git a/pages.it/common/unxz.md b/pages.it/common/unxz.md new file mode 100644 index 0000000000..87bf76f79e --- /dev/null +++ b/pages.it/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> Questo comando è un alias per `xz`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr xz` diff --git a/pages.it/common/xzcat.md b/pages.it/common/xzcat.md new file mode 100644 index 0000000000..eb8db8e308 --- /dev/null +++ b/pages.it/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> Questo comando è un alias per `xz`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr xz` diff --git a/pages.it/linux/alternatives.md b/pages.it/linux/alternatives.md new file mode 100644 index 0000000000..37ca18d6d3 --- /dev/null +++ b/pages.it/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> Questo comando è un alias per `update-alternatives`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr update-alternatives` diff --git a/pages.it/linux/apk.md b/pages.it/linux/apk.md new file mode 100644 index 0000000000..ad46b62a36 --- /dev/null +++ b/pages.it/linux/apk.md @@ -0,0 +1,28 @@ +# apk + +> Gestore pacchetti di Alpine Linux. +> Maggiori informazioni: . + +- Aggiorna gli indici di tutti i repository remoti: + +`apk update` + +- Installa un nuovo pacchetto: + +`apk add {{pacchetto}}` + +- Disinstalla un pacchetto: + +`apk del {{pacchetto}}` + +- Prova a riparare un pacchetto o ad aggiornare un pacchetto senza modificarne le dipendenze: + +`apk fix {{paquet}}` + +- Ricerca pacchetti data una parola chiave: + +`apk search {{parola_chiave}}` + +- Ottieni informazioni su un pacchetto: + +`apk info {{pacchetto}}` diff --git a/pages.it/linux/batcat.md b/pages.it/linux/batcat.md new file mode 100644 index 0000000000..ac21b04e6e --- /dev/null +++ b/pages.it/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> Questo comando è un alias per `bat`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr bat` diff --git a/pages.it/linux/beep.md b/pages.it/linux/beep.md new file mode 100644 index 0000000000..9b0b37227e --- /dev/null +++ b/pages.it/linux/beep.md @@ -0,0 +1,24 @@ +# beep + +> Un'utilità per emettere un segnale acustico all'altoparlante del PC. +> Maggiori informazioni: . + +- Emetti un suono: + +`beep` + +- Emetti un suono che si ripete: + +`beep -r {{ripetizioni}}` + +- Emetti un suono a una specifica frequenza (Hz) e durata (millisecondi): + +`beep -f {{frequenza}} -l {{durata}}` + +- Riproduci ogni nuova frequenza e durata come un segnale acustico distinto: + +`beep -f {{frequenza}} -l {{durata}} -n -f {{frequenza}} -l {{durata}}` + +- Suona la scala di do maggiore: + +`beep -f {{262}} -n -f {{294}} -n -f {{330}} -n -f {{349}} -n -f {{392}} -n -f {{440}} -n -f {{494}} -n -f {{523}}` diff --git a/pages.it/linux/bspwm.md b/pages.it/linux/bspwm.md new file mode 100644 index 0000000000..340d84829e --- /dev/null +++ b/pages.it/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> Questo comando è un alias per `bspc`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr bspc` diff --git a/pages.it/linux/cc.md b/pages.it/linux/cc.md new file mode 100644 index 0000000000..54b34cd75c --- /dev/null +++ b/pages.it/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> Questo comando è un alias per `gcc`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr gcc` diff --git a/pages.it/linux/cgroups.md b/pages.it/linux/cgroups.md new file mode 100644 index 0000000000..fb53a53a48 --- /dev/null +++ b/pages.it/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> Questo comando è un alias per `cgclassify`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr cgclassify` diff --git a/pages.it/linux/halt.md b/pages.it/linux/halt.md index 6a57abedb8..f0c42b8720 100644 --- a/pages.it/linux/halt.md +++ b/pages.it/linux/halt.md @@ -1,7 +1,7 @@ # halt > Arresta, spegne o riavvia la macchina. -> Maggiori informazioni: . +> Maggiori informazioni: . - Arresta la macchina: diff --git a/pages.it/linux/ip-route-list.md b/pages.it/linux/ip-route-list.md new file mode 100644 index 0000000000..9dce3a6efe --- /dev/null +++ b/pages.it/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> Questo comando è un alias per `ip-route-show`. + +- Consulta la documentazione del comando originale: + +`tldr ip-route-show` diff --git a/pages.it/linux/ip.md b/pages.it/linux/ip.md new file mode 100644 index 0000000000..762169cd76 --- /dev/null +++ b/pages.it/linux/ip.md @@ -0,0 +1,36 @@ +# ip + +> Mostra / manipola routing, dispositivi, criteri di routing e tunnel. +> Alcuni sottocomandi, come `ip address`, hanno una propria documentazione d'uso. Maggiori informazioni: + +- Elenca le interfacce con informazioni dettagliate: + +`ip address` + +- Elenca le interfacce con informazioni brevi sul livello di rete: + +`ip -brief address` + +- Elenca le interfacce con informazioni brevi sul livello di collegamento: + +`ip -brief link` + +- Visualizza la tabella di routing: + +`ip route` + +- Mostra i vicini (tabella ARP): + +`ip neighbour` + +- Attiva/disattiva un'interfaccia: + +`ip link set {{interfaccia}} up/down` + +- Aggiungi/elimina un indirizzo IP a/da un'interfaccia: + +`ip addr add/del {{ip}}/{{mask}} dev {{interfaccia}}` + +- Aggiungi una route predefinita: + +`ip route add default via {{ip}} dev {{interfaccia}}` diff --git a/pages.it/linux/megadl.md b/pages.it/linux/megadl.md new file mode 100644 index 0000000000..8f9542bce6 --- /dev/null +++ b/pages.it/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> Questo comando è un alias per `megatools-dl`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr megatools-dl` diff --git a/pages.it/linux/mpicc.md b/pages.it/linux/mpicc.md new file mode 100644 index 0000000000..3d33ca287b --- /dev/null +++ b/pages.it/linux/mpicc.md @@ -0,0 +1,17 @@ +# mpicc + +> Involucro Open MPI per il compilatore di C. +> Shell che esegue sul compilatore, aggiungono i relevanti argomenti e linkers necessari a compilare/collegare programmi Open MPI, invocando il sottostante compilatore di C per effettuare le effetive operazioni. +> Maggiori informazioni: . + +- Compila un file sorgente in un file oggetto: + +`mpicc -c {{percorso/del/file.c}}` + +- Linka un file oggetto file e genera un eseguibile: + +`mpicc -o {{executable}} {{percorso/del/file.o}}` + +- Linka e compila i file sorgente in un solo commando: + +`mpicc -o {{executable}} {{percorso/del/file.c}}` diff --git a/pages.it/linux/reset.md b/pages.it/linux/reset.md new file mode 100644 index 0000000000..eb9abcdc77 --- /dev/null +++ b/pages.it/linux/reset.md @@ -0,0 +1,12 @@ +# reset + +> Reinizializza il terminale corrente. Cancella l'intera schermata del terminale. +> Maggiori informazioni: . + +- Reinizializza il terminale corrente: + +`reset` + +- Visualizza invece il tipo di terminale: + +`reset -q` diff --git a/pages.it/linux/smbclient.md b/pages.it/linux/smbclient.md new file mode 100644 index 0000000000..4006fb1c21 --- /dev/null +++ b/pages.it/linux/smbclient.md @@ -0,0 +1,32 @@ +# smbclient + +> Programma client simile ad FTP per server SMB/CIFS. +> Maggiori informazioni: . + +- Connettiti ad una share (all'utente verrà richiesta la password; `exit` per uscire dalla sessione): + +`smbclient {{//server/share}}` + +- Connettiti con un altro nome utente: + +`smbclient {{//server/share}} --user {{username}}` + +- Connettiti con un altro gruppo di lavoro: + +`smbclient {{//server/share}} --workgroup {{dominio}} --user {{username}}` + +- Connettiti con un nome utente ed una password: + +`smbclient {{//server/share}} --user {{username%password}}` + +- Scarica un file dal server: + +`smbclient {{//server/share}} --directory {{percorso/della/directory}} --command "get {{file.txt}}"` + +- Carica un file sul server: + +`smbclient {{//server/share}} --directory {{percorso/della/directory}} --command "put {{file.txt}}"` + +- Elenca le share di un server in modo anonimo: + +`smbclient --list={{server}} --no-pass` diff --git a/pages.it/linux/ubuntu-bug.md b/pages.it/linux/ubuntu-bug.md new file mode 100644 index 0000000000..c8bfcab092 --- /dev/null +++ b/pages.it/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> Questo comando è un alias per `apport-bug`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr apport-bug` diff --git a/pages.it/linux/ufw.md b/pages.it/linux/ufw.md index 0e812b09f8..5a138814e6 100644 --- a/pages.it/linux/ufw.md +++ b/pages.it/linux/ufw.md @@ -1,7 +1,7 @@ # ufw > ufw (Uncomplicated Firewall) - Firewall Semplice. -> Frontend per iptables per semplificare la configurazione di un firewall. +> Frontend per `iptables` per semplificare la configurazione di un firewall. > Maggiori informazioni: . - Accendi ufw: diff --git a/pages.it/osx/aa.md b/pages.it/osx/aa.md new file mode 100644 index 0000000000..2c3c91d19a --- /dev/null +++ b/pages.it/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> Questo comando è un alias per `yaa`. + +- Consulta la documentazione del comando originale: + +`tldr yaa` diff --git a/pages.it/osx/base64.md b/pages.it/osx/base64.md index 968e34004f..f4d346554b 100644 --- a/pages.it/osx/base64.md +++ b/pages.it/osx/base64.md @@ -11,10 +11,10 @@ `base64 --decode -i {{file_da_decodificare}}` -- Codifica da stdin: +- Codifica da `stdin`: `echo -n {{testo_da_codificare}} | base64` -- Decodifica da stdin: +- Decodifica da `stdin`: `echo -n {{testo_da_decodificare}} | base64 --decode` diff --git a/pages.it/osx/g[.md b/pages.it/osx/g[.md new file mode 100644 index 0000000000..2f8e076eb7 --- /dev/null +++ b/pages.it/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> Questo comando è un alias per `-p linux [`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux [` diff --git a/pages.it/osx/gawk.md b/pages.it/osx/gawk.md new file mode 100644 index 0000000000..ba5d5ed5da --- /dev/null +++ b/pages.it/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> Questo comando è un alias per `-p linux awk`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux awk` diff --git a/pages.it/osx/gb2sum.md b/pages.it/osx/gb2sum.md new file mode 100644 index 0000000000..f69372ec8d --- /dev/null +++ b/pages.it/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> Questo comando è un alias per `-p linux b2sum`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux b2sum` diff --git a/pages.it/osx/gbase32.md b/pages.it/osx/gbase32.md new file mode 100644 index 0000000000..b092bc264d --- /dev/null +++ b/pages.it/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> Questo comando è un alias per `-p linux base32`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux base32` diff --git a/pages.it/osx/gbase64.md b/pages.it/osx/gbase64.md new file mode 100644 index 0000000000..22d6b10003 --- /dev/null +++ b/pages.it/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> Questo comando è un alias per `-p linux base64`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux base64` diff --git a/pages.it/osx/gbasename.md b/pages.it/osx/gbasename.md new file mode 100644 index 0000000000..9c7629080e --- /dev/null +++ b/pages.it/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> Questo comando è un alias per `-p linux basename`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux basename` diff --git a/pages.it/osx/gbasenc.md b/pages.it/osx/gbasenc.md new file mode 100644 index 0000000000..1b8f2211ad --- /dev/null +++ b/pages.it/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> Questo comando è un alias per `-p linux basenc`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux basenc` diff --git a/pages.it/osx/gcat.md b/pages.it/osx/gcat.md new file mode 100644 index 0000000000..904c360458 --- /dev/null +++ b/pages.it/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> Questo comando è un alias per `-p linux cat`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux cat` diff --git a/pages.it/osx/gchcon.md b/pages.it/osx/gchcon.md new file mode 100644 index 0000000000..026a38b55a --- /dev/null +++ b/pages.it/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> Questo comando è un alias per `-p linux chcon`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux chcon` diff --git a/pages.it/osx/gchgrp.md b/pages.it/osx/gchgrp.md new file mode 100644 index 0000000000..f8888b2119 --- /dev/null +++ b/pages.it/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> Questo comando è un alias per `-p linux chgrp`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux chgrp` diff --git a/pages.it/osx/gchmod.md b/pages.it/osx/gchmod.md new file mode 100644 index 0000000000..9a5a52e057 --- /dev/null +++ b/pages.it/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> Questo comando è un alias per `-p linux chmod`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux chmod` diff --git a/pages.it/osx/gchown.md b/pages.it/osx/gchown.md new file mode 100644 index 0000000000..a3fccd20c1 --- /dev/null +++ b/pages.it/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> Questo comando è un alias per `-p linux chown`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux chown` diff --git a/pages.it/osx/gchroot.md b/pages.it/osx/gchroot.md new file mode 100644 index 0000000000..20adaf48f3 --- /dev/null +++ b/pages.it/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> Questo comando è un alias per `-p linux chroot`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux chroot` diff --git a/pages.it/osx/gcksum.md b/pages.it/osx/gcksum.md new file mode 100644 index 0000000000..92f603ed8b --- /dev/null +++ b/pages.it/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> Questo comando è un alias per `-p linux cksum`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux cksum` diff --git a/pages.it/osx/gcomm.md b/pages.it/osx/gcomm.md new file mode 100644 index 0000000000..0b9d4e5d0c --- /dev/null +++ b/pages.it/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> Questo comando è un alias per `-p linux comm`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux comm` diff --git a/pages.it/osx/gcp.md b/pages.it/osx/gcp.md new file mode 100644 index 0000000000..52802ad066 --- /dev/null +++ b/pages.it/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> Questo comando è un alias per `-p linux cp`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux cp` diff --git a/pages.it/osx/gcsplit.md b/pages.it/osx/gcsplit.md new file mode 100644 index 0000000000..cd2078e160 --- /dev/null +++ b/pages.it/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> Questo comando è un alias per `-p linux csplit`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux csplit` diff --git a/pages.it/osx/gcut.md b/pages.it/osx/gcut.md new file mode 100644 index 0000000000..a8d87ac699 --- /dev/null +++ b/pages.it/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> Questo comando è un alias per `-p linux cut`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux cut` diff --git a/pages.it/osx/gdate.md b/pages.it/osx/gdate.md new file mode 100644 index 0000000000..d2b89f180b --- /dev/null +++ b/pages.it/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> Questo comando è un alias per `-p linux date`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux date` diff --git a/pages.it/osx/gdd.md b/pages.it/osx/gdd.md new file mode 100644 index 0000000000..49c7ac1ffb --- /dev/null +++ b/pages.it/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> Questo comando è un alias per `-p linux dd`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux dd` diff --git a/pages.it/osx/gdf.md b/pages.it/osx/gdf.md new file mode 100644 index 0000000000..a4e24ffe58 --- /dev/null +++ b/pages.it/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> Questo comando è un alias per `-p linux df`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux df` diff --git a/pages.it/osx/gdir.md b/pages.it/osx/gdir.md new file mode 100644 index 0000000000..11176b4df5 --- /dev/null +++ b/pages.it/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> Questo comando è un alias per `-p linux dir`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux dir` diff --git a/pages.it/osx/gdircolors.md b/pages.it/osx/gdircolors.md new file mode 100644 index 0000000000..a07c9fdc2c --- /dev/null +++ b/pages.it/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> Questo comando è un alias per `-p linux dircolors`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux dircolors` diff --git a/pages.it/osx/gdirname.md b/pages.it/osx/gdirname.md new file mode 100644 index 0000000000..30af222a34 --- /dev/null +++ b/pages.it/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> Questo comando è un alias per `-p linux dirname`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux dirname` diff --git a/pages.it/osx/gdnsdomainname.md b/pages.it/osx/gdnsdomainname.md new file mode 100644 index 0000000000..9b8eabad0f --- /dev/null +++ b/pages.it/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> Questo comando è un alias per `-p linux dnsdomainname`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux dnsdomainname` diff --git a/pages.it/osx/gecho.md b/pages.it/osx/gecho.md new file mode 100644 index 0000000000..4cddd7b781 --- /dev/null +++ b/pages.it/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> Questo comando è un alias per `-p linux echo`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux echo` diff --git a/pages.it/osx/ged.md b/pages.it/osx/ged.md new file mode 100644 index 0000000000..58ca412e40 --- /dev/null +++ b/pages.it/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> Questo comando è un alias per `-p linux ed`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux ed` diff --git a/pages.it/osx/gegrep.md b/pages.it/osx/gegrep.md new file mode 100644 index 0000000000..3b14f73d53 --- /dev/null +++ b/pages.it/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> Questo comando è un alias per `-p linux egrep`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux egrep` diff --git a/pages.it/osx/genv.md b/pages.it/osx/genv.md new file mode 100644 index 0000000000..a3d35211ac --- /dev/null +++ b/pages.it/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> Questo comando è un alias per `-p linux env`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux env` diff --git a/pages.it/osx/gexpand.md b/pages.it/osx/gexpand.md new file mode 100644 index 0000000000..94928c0ab2 --- /dev/null +++ b/pages.it/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> Questo comando è un alias per `-p linux expand`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux expand` diff --git a/pages.it/osx/gexpr.md b/pages.it/osx/gexpr.md new file mode 100644 index 0000000000..884e75471e --- /dev/null +++ b/pages.it/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> Questo comando è un alias per `-p linux expr`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux expr` diff --git a/pages.it/osx/gfactor.md b/pages.it/osx/gfactor.md new file mode 100644 index 0000000000..bf3179c103 --- /dev/null +++ b/pages.it/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> Questo comando è un alias per `-p linux factor`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux factor` diff --git a/pages.it/osx/gfalse.md b/pages.it/osx/gfalse.md new file mode 100644 index 0000000000..4c2da5a593 --- /dev/null +++ b/pages.it/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> Questo comando è un alias per `-p linux false`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux false` diff --git a/pages.it/osx/gfgrep.md b/pages.it/osx/gfgrep.md new file mode 100644 index 0000000000..32ae221d40 --- /dev/null +++ b/pages.it/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> Questo comando è un alias per `-p linux fgrep`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux fgrep` diff --git a/pages.it/osx/gfind.md b/pages.it/osx/gfind.md new file mode 100644 index 0000000000..9b11c7cd47 --- /dev/null +++ b/pages.it/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> Questo comando è un alias per `-p linux find`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux find` diff --git a/pages.it/osx/gfmt.md b/pages.it/osx/gfmt.md new file mode 100644 index 0000000000..d8b679f569 --- /dev/null +++ b/pages.it/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> Questo comando è un alias per `-p linux fmt`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux fmt` diff --git a/pages.it/osx/gfold.md b/pages.it/osx/gfold.md new file mode 100644 index 0000000000..c6d2b91937 --- /dev/null +++ b/pages.it/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> Questo comando è un alias per `-p linux fold`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux fold` diff --git a/pages.it/osx/gftp.md b/pages.it/osx/gftp.md new file mode 100644 index 0000000000..af31392870 --- /dev/null +++ b/pages.it/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> Questo comando è un alias per `-p linux ftp`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux ftp` diff --git a/pages.it/osx/ggrep.md b/pages.it/osx/ggrep.md new file mode 100644 index 0000000000..b418b14866 --- /dev/null +++ b/pages.it/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> Questo comando è un alias per `-p linux grep`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux grep` diff --git a/pages.it/osx/ggroups.md b/pages.it/osx/ggroups.md new file mode 100644 index 0000000000..abb31b6f6a --- /dev/null +++ b/pages.it/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> Questo comando è un alias per `-p linux groups`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux groups` diff --git a/pages.it/osx/ghead.md b/pages.it/osx/ghead.md new file mode 100644 index 0000000000..884d734dfe --- /dev/null +++ b/pages.it/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> Questo comando è un alias per `-p linux head`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux head` diff --git a/pages.it/osx/ghostid.md b/pages.it/osx/ghostid.md new file mode 100644 index 0000000000..21a0e56dbd --- /dev/null +++ b/pages.it/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> Questo comando è un alias per `-p linux hostid`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux hostid` diff --git a/pages.it/osx/ghostname.md b/pages.it/osx/ghostname.md new file mode 100644 index 0000000000..cb400bbbf0 --- /dev/null +++ b/pages.it/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> Questo comando è un alias per `-p linux hostname`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux hostname` diff --git a/pages.it/osx/gid.md b/pages.it/osx/gid.md new file mode 100644 index 0000000000..b48a93cd74 --- /dev/null +++ b/pages.it/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> Questo comando è un alias per `-p linux id`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux id` diff --git a/pages.it/osx/gifconfig.md b/pages.it/osx/gifconfig.md new file mode 100644 index 0000000000..a309bf8f69 --- /dev/null +++ b/pages.it/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> Questo comando è un alias per `-p linux ifconfig`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux ifconfig` diff --git a/pages.it/osx/gindent.md b/pages.it/osx/gindent.md new file mode 100644 index 0000000000..e405a4774c --- /dev/null +++ b/pages.it/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> Questo comando è un alias per `-p linux indent`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux indent` diff --git a/pages.it/osx/ginstall.md b/pages.it/osx/ginstall.md new file mode 100644 index 0000000000..55bc65a61e --- /dev/null +++ b/pages.it/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> Questo comando è un alias per `-p linux install`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux install` diff --git a/pages.it/osx/gjoin.md b/pages.it/osx/gjoin.md new file mode 100644 index 0000000000..68a1320fa5 --- /dev/null +++ b/pages.it/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> Questo comando è un alias per `-p linux join`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux join` diff --git a/pages.it/osx/gkill.md b/pages.it/osx/gkill.md new file mode 100644 index 0000000000..01d39e6484 --- /dev/null +++ b/pages.it/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> Questo comando è un alias per `-p linux kill`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux kill` diff --git a/pages.it/osx/glibtool.md b/pages.it/osx/glibtool.md new file mode 100644 index 0000000000..ff85223299 --- /dev/null +++ b/pages.it/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> Questo comando è un alias per `-p linux libtool`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux libtool` diff --git a/pages.it/osx/glibtoolize.md b/pages.it/osx/glibtoolize.md new file mode 100644 index 0000000000..ffefaeb3c0 --- /dev/null +++ b/pages.it/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> Questo comando è un alias per `-p linux libtoolize`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux libtoolize` diff --git a/pages.it/osx/glink.md b/pages.it/osx/glink.md new file mode 100644 index 0000000000..e75d221752 --- /dev/null +++ b/pages.it/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> Questo comando è un alias per `-p linux link`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux link` diff --git a/pages.it/osx/gln.md b/pages.it/osx/gln.md new file mode 100644 index 0000000000..b95f472136 --- /dev/null +++ b/pages.it/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> Questo comando è un alias per `-p linux ln`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux ln` diff --git a/pages.it/osx/glocate.md b/pages.it/osx/glocate.md new file mode 100644 index 0000000000..f89dea0af1 --- /dev/null +++ b/pages.it/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> Questo comando è un alias per `-p linux locate`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux locate` diff --git a/pages.it/osx/glogger.md b/pages.it/osx/glogger.md new file mode 100644 index 0000000000..bd92e5bcc6 --- /dev/null +++ b/pages.it/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> Questo comando è un alias per `-p linux logger`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux logger` diff --git a/pages.it/osx/glogname.md b/pages.it/osx/glogname.md new file mode 100644 index 0000000000..ce668902ad --- /dev/null +++ b/pages.it/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> Questo comando è un alias per `-p linux logname`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux logname` diff --git a/pages.it/osx/gls.md b/pages.it/osx/gls.md new file mode 100644 index 0000000000..0dcec228b7 --- /dev/null +++ b/pages.it/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> Questo comando è un alias per `-p linux ls`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux ls` diff --git a/pages.it/osx/gmake.md b/pages.it/osx/gmake.md new file mode 100644 index 0000000000..d87758707a --- /dev/null +++ b/pages.it/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> Questo comando è un alias per `-p linux make`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux make` diff --git a/pages.it/osx/gmd5sum.md b/pages.it/osx/gmd5sum.md new file mode 100644 index 0000000000..a2665125d5 --- /dev/null +++ b/pages.it/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> Questo comando è un alias per `-p linux md5sum`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux md5sum` diff --git a/pages.it/osx/gmkdir.md b/pages.it/osx/gmkdir.md new file mode 100644 index 0000000000..00a584acd0 --- /dev/null +++ b/pages.it/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> Questo comando è un alias per `-p linux mkdir`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux mkdir` diff --git a/pages.it/osx/gmkfifo.md b/pages.it/osx/gmkfifo.md new file mode 100644 index 0000000000..aec87e4616 --- /dev/null +++ b/pages.it/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> Questo comando è un alias per `-p linux mkfifo`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux mkfifo` diff --git a/pages.it/osx/gmknod.md b/pages.it/osx/gmknod.md new file mode 100644 index 0000000000..73e8cacf8c --- /dev/null +++ b/pages.it/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> Questo comando è un alias per `-p linux mknod`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux mknod` diff --git a/pages.it/osx/gmktemp.md b/pages.it/osx/gmktemp.md new file mode 100644 index 0000000000..6c24a7979f --- /dev/null +++ b/pages.it/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> Questo comando è un alias per `-p linux mktemp`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux mktemp` diff --git a/pages.it/osx/gmv.md b/pages.it/osx/gmv.md new file mode 100644 index 0000000000..23b7f486a1 --- /dev/null +++ b/pages.it/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> Questo comando è un alias per `-p linux mv`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux mv` diff --git a/pages.it/osx/gnice.md b/pages.it/osx/gnice.md new file mode 100644 index 0000000000..b5da53bb64 --- /dev/null +++ b/pages.it/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> Questo comando è un alias per `-p linux nice`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux nice` diff --git a/pages.it/osx/gnl.md b/pages.it/osx/gnl.md new file mode 100644 index 0000000000..0646887895 --- /dev/null +++ b/pages.it/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> Questo comando è un alias per `-p linux nl`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux nl` diff --git a/pages.it/osx/gnohup.md b/pages.it/osx/gnohup.md new file mode 100644 index 0000000000..fdcce998ce --- /dev/null +++ b/pages.it/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> Questo comando è un alias per `-p linux nohup`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux nohup` diff --git a/pages.it/osx/gnproc.md b/pages.it/osx/gnproc.md new file mode 100644 index 0000000000..ccbd6b6a58 --- /dev/null +++ b/pages.it/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> Questo comando è un alias per `-p linux nproc`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux nproc` diff --git a/pages.it/osx/gnumfmt.md b/pages.it/osx/gnumfmt.md new file mode 100644 index 0000000000..e0af244f8d --- /dev/null +++ b/pages.it/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> Questo comando è un alias per `-p linux numfmt`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux numfmt` diff --git a/pages.it/osx/god.md b/pages.it/osx/god.md new file mode 100644 index 0000000000..463c9e950e --- /dev/null +++ b/pages.it/osx/god.md @@ -0,0 +1,7 @@ +# god + +> Questo comando è un alias per `-p linux od`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux od` diff --git a/pages.it/osx/gpaste.md b/pages.it/osx/gpaste.md new file mode 100644 index 0000000000..de9ec97ddd --- /dev/null +++ b/pages.it/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> Questo comando è un alias per `-p linux paste`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux paste` diff --git a/pages.it/osx/gpathchk.md b/pages.it/osx/gpathchk.md new file mode 100644 index 0000000000..5c9c923bc0 --- /dev/null +++ b/pages.it/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> Questo comando è un alias per `-p linux pathchk`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux pathchk` diff --git a/pages.it/osx/gping.md b/pages.it/osx/gping.md new file mode 100644 index 0000000000..7ad0971a2f --- /dev/null +++ b/pages.it/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> Questo comando è un alias per `-p linux ping`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux ping` diff --git a/pages.it/osx/gping6.md b/pages.it/osx/gping6.md new file mode 100644 index 0000000000..e62aacc7a3 --- /dev/null +++ b/pages.it/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> Questo comando è un alias per `-p linux ping6`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux ping6` diff --git a/pages.it/osx/gpinky.md b/pages.it/osx/gpinky.md new file mode 100644 index 0000000000..d855addab3 --- /dev/null +++ b/pages.it/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> Questo comando è un alias per `-p linux pinky`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux pinky` diff --git a/pages.it/osx/gpr.md b/pages.it/osx/gpr.md new file mode 100644 index 0000000000..90d2f6df72 --- /dev/null +++ b/pages.it/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> Questo comando è un alias per `-p linux pr`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux pr` diff --git a/pages.it/osx/gprintenv.md b/pages.it/osx/gprintenv.md new file mode 100644 index 0000000000..5f5d9db059 --- /dev/null +++ b/pages.it/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> Questo comando è un alias per `-p linux printenv`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux printenv` diff --git a/pages.it/osx/gprintf.md b/pages.it/osx/gprintf.md new file mode 100644 index 0000000000..bb777f1af2 --- /dev/null +++ b/pages.it/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> Questo comando è un alias per `-p linux printf`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux printf` diff --git a/pages.it/osx/gptx.md b/pages.it/osx/gptx.md new file mode 100644 index 0000000000..f3de13c0fa --- /dev/null +++ b/pages.it/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> Questo comando è un alias per `-p linux ptx`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux ptx` diff --git a/pages.it/osx/gpwd.md b/pages.it/osx/gpwd.md new file mode 100644 index 0000000000..fd2f2df3a0 --- /dev/null +++ b/pages.it/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> Questo comando è un alias per `-p linux pwd`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux pwd` diff --git a/pages.it/osx/grcp.md b/pages.it/osx/grcp.md new file mode 100644 index 0000000000..912b3ba47d --- /dev/null +++ b/pages.it/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> Questo comando è un alias per `-p linux rcp`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux rcp` diff --git a/pages.it/osx/greadlink.md b/pages.it/osx/greadlink.md new file mode 100644 index 0000000000..5ac40b057e --- /dev/null +++ b/pages.it/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> Questo comando è un alias per `-p linux readlink`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux readlink` diff --git a/pages.it/osx/grealpath.md b/pages.it/osx/grealpath.md new file mode 100644 index 0000000000..813d057968 --- /dev/null +++ b/pages.it/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> Questo comando è un alias per `-p linux realpath`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux realpath` diff --git a/pages.it/osx/grexec.md b/pages.it/osx/grexec.md new file mode 100644 index 0000000000..d691adb242 --- /dev/null +++ b/pages.it/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> Questo comando è un alias per `-p linux rexec`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux rexec` diff --git a/pages.it/osx/grlogin.md b/pages.it/osx/grlogin.md new file mode 100644 index 0000000000..5d9923f601 --- /dev/null +++ b/pages.it/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> Questo comando è un alias per `-p linux rlogin`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux rlogin` diff --git a/pages.it/osx/grm.md b/pages.it/osx/grm.md new file mode 100644 index 0000000000..3f75514d8e --- /dev/null +++ b/pages.it/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> Questo comando è un alias per `-p linux rm`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux rm` diff --git a/pages.it/osx/grmdir.md b/pages.it/osx/grmdir.md new file mode 100644 index 0000000000..aedbd0d365 --- /dev/null +++ b/pages.it/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> Questo comando è un alias per `-p linux rmdir`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux rmdir` diff --git a/pages.it/osx/grsh.md b/pages.it/osx/grsh.md new file mode 100644 index 0000000000..a0c271df48 --- /dev/null +++ b/pages.it/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> Questo comando è un alias per `-p linux rsh`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux rsh` diff --git a/pages.it/osx/gruncon.md b/pages.it/osx/gruncon.md new file mode 100644 index 0000000000..2ccbfeb85c --- /dev/null +++ b/pages.it/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> Questo comando è un alias per `-p linux runcon`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux runcon` diff --git a/pages.it/osx/gsed.md b/pages.it/osx/gsed.md new file mode 100644 index 0000000000..9a6eff6163 --- /dev/null +++ b/pages.it/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> Questo comando è un alias per `-p linux sed`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux sed` diff --git a/pages.it/osx/gseq.md b/pages.it/osx/gseq.md new file mode 100644 index 0000000000..15837f60b4 --- /dev/null +++ b/pages.it/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> Questo comando è un alias per `-p linux seq`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux seq` diff --git a/pages.it/osx/gsha1sum.md b/pages.it/osx/gsha1sum.md new file mode 100644 index 0000000000..8dc4d519ab --- /dev/null +++ b/pages.it/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> Questo comando è un alias per `-p linux sha1sum`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux sha1sum` diff --git a/pages.it/osx/gsha224sum.md b/pages.it/osx/gsha224sum.md new file mode 100644 index 0000000000..dc0fdb7ad0 --- /dev/null +++ b/pages.it/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> Questo comando è un alias per `-p linux sha224sum`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux sha224sum` diff --git a/pages.it/osx/gsha256sum.md b/pages.it/osx/gsha256sum.md new file mode 100644 index 0000000000..a12fd57f10 --- /dev/null +++ b/pages.it/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> Questo comando è un alias per `-p linux sha256sum`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux sha256sum` diff --git a/pages.it/osx/gsha384sum.md b/pages.it/osx/gsha384sum.md new file mode 100644 index 0000000000..62fdb668ba --- /dev/null +++ b/pages.it/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> Questo comando è un alias per `-p linux sha384sum`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux sha384sum` diff --git a/pages.it/osx/gsha512sum.md b/pages.it/osx/gsha512sum.md new file mode 100644 index 0000000000..f5579c6f46 --- /dev/null +++ b/pages.it/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> Questo comando è un alias per `-p linux sha512sum`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux sha512sum` diff --git a/pages.it/osx/gshred.md b/pages.it/osx/gshred.md new file mode 100644 index 0000000000..5ad91234c3 --- /dev/null +++ b/pages.it/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> Questo comando è un alias per `-p linux shred`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux shred` diff --git a/pages.it/osx/gshuf.md b/pages.it/osx/gshuf.md new file mode 100644 index 0000000000..8df2dd8d17 --- /dev/null +++ b/pages.it/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> Questo comando è un alias per `-p linux shuf`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux shuf` diff --git a/pages.it/osx/gsleep.md b/pages.it/osx/gsleep.md new file mode 100644 index 0000000000..c24eda9ad8 --- /dev/null +++ b/pages.it/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> Questo comando è un alias per `-p linux sleep`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux sleep` diff --git a/pages.it/osx/gsort.md b/pages.it/osx/gsort.md new file mode 100644 index 0000000000..e2169592dd --- /dev/null +++ b/pages.it/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> Questo comando è un alias per `-p linux sort`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux sort` diff --git a/pages.it/osx/gsplit.md b/pages.it/osx/gsplit.md new file mode 100644 index 0000000000..8a369ce83e --- /dev/null +++ b/pages.it/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> Questo comando è un alias per `-p linux split`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux split` diff --git a/pages.it/osx/gstat.md b/pages.it/osx/gstat.md new file mode 100644 index 0000000000..f89d083415 --- /dev/null +++ b/pages.it/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> Questo comando è un alias per `-p linux stat`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux stat` diff --git a/pages.it/osx/gstdbuf.md b/pages.it/osx/gstdbuf.md new file mode 100644 index 0000000000..491dc0a338 --- /dev/null +++ b/pages.it/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> Questo comando è un alias per `-p linux stdbuf`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux stdbuf` diff --git a/pages.it/osx/gstty.md b/pages.it/osx/gstty.md new file mode 100644 index 0000000000..adbe87674f --- /dev/null +++ b/pages.it/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> Questo comando è un alias per `-p linux stty`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux stty` diff --git a/pages.it/osx/gsum.md b/pages.it/osx/gsum.md new file mode 100644 index 0000000000..b740f94397 --- /dev/null +++ b/pages.it/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> Questo comando è un alias per `-p linux sum`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux sum` diff --git a/pages.it/osx/gsync.md b/pages.it/osx/gsync.md new file mode 100644 index 0000000000..10d0702ac5 --- /dev/null +++ b/pages.it/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> Questo comando è un alias per `-p linux sync`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux sync` diff --git a/pages.it/osx/gtac.md b/pages.it/osx/gtac.md new file mode 100644 index 0000000000..82835288b6 --- /dev/null +++ b/pages.it/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> Questo comando è un alias per `-p linux tac`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux tac` diff --git a/pages.it/osx/gtail.md b/pages.it/osx/gtail.md new file mode 100644 index 0000000000..049dce8d2d --- /dev/null +++ b/pages.it/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> Questo comando è un alias per `-p linux tail`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux tail` diff --git a/pages.it/osx/gtalk.md b/pages.it/osx/gtalk.md new file mode 100644 index 0000000000..c88d2ab412 --- /dev/null +++ b/pages.it/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> Questo comando è un alias per `-p linux talk`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux talk` diff --git a/pages.it/osx/gtar.md b/pages.it/osx/gtar.md new file mode 100644 index 0000000000..14ed210b10 --- /dev/null +++ b/pages.it/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> Questo comando è un alias per `-p linux tar`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux tar` diff --git a/pages.it/osx/gtee.md b/pages.it/osx/gtee.md new file mode 100644 index 0000000000..92110397ed --- /dev/null +++ b/pages.it/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> Questo comando è un alias per `-p linux tee`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux tee` diff --git a/pages.it/osx/gtelnet.md b/pages.it/osx/gtelnet.md new file mode 100644 index 0000000000..36cf79bb78 --- /dev/null +++ b/pages.it/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> Questo comando è un alias per `-p linux telnet`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux telnet` diff --git a/pages.it/osx/gtest.md b/pages.it/osx/gtest.md new file mode 100644 index 0000000000..963523f4cc --- /dev/null +++ b/pages.it/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> Questo comando è un alias per `-p linux test`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux test` diff --git a/pages.it/osx/gtftp.md b/pages.it/osx/gtftp.md new file mode 100644 index 0000000000..b12727c22b --- /dev/null +++ b/pages.it/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> Questo comando è un alias per `-p linux tftp`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux tftp` diff --git a/pages.it/osx/gtime.md b/pages.it/osx/gtime.md new file mode 100644 index 0000000000..776d2a2d8b --- /dev/null +++ b/pages.it/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> Questo comando è un alias per `-p linux time`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux time` diff --git a/pages.it/osx/gtimeout.md b/pages.it/osx/gtimeout.md new file mode 100644 index 0000000000..5945b0b8de --- /dev/null +++ b/pages.it/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> Questo comando è un alias per `-p linux timeout`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux timeout` diff --git a/pages.it/osx/gtouch.md b/pages.it/osx/gtouch.md new file mode 100644 index 0000000000..78beac038b --- /dev/null +++ b/pages.it/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> Questo comando è un alias per `-p linux touch`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux touch` diff --git a/pages.it/osx/gtr.md b/pages.it/osx/gtr.md new file mode 100644 index 0000000000..4f5a34214d --- /dev/null +++ b/pages.it/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> Questo comando è un alias per `-p linux tr`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux tr` diff --git a/pages.it/osx/gtraceroute.md b/pages.it/osx/gtraceroute.md new file mode 100644 index 0000000000..9fcc934e98 --- /dev/null +++ b/pages.it/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> Questo comando è un alias per `-p linux traceroute`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux traceroute` diff --git a/pages.it/osx/gtrue.md b/pages.it/osx/gtrue.md new file mode 100644 index 0000000000..e4a9c6d6b0 --- /dev/null +++ b/pages.it/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> Questo comando è un alias per `-p linux true`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux true` diff --git a/pages.it/osx/gtruncate.md b/pages.it/osx/gtruncate.md new file mode 100644 index 0000000000..5b9f7e0a71 --- /dev/null +++ b/pages.it/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> Questo comando è un alias per `-p linux truncate`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux truncate` diff --git a/pages.it/osx/gtsort.md b/pages.it/osx/gtsort.md new file mode 100644 index 0000000000..1cbec8cfcb --- /dev/null +++ b/pages.it/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> Questo comando è un alias per `-p linux tsort`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux tsort` diff --git a/pages.it/osx/gtty.md b/pages.it/osx/gtty.md new file mode 100644 index 0000000000..e4cb9e1e44 --- /dev/null +++ b/pages.it/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> Questo comando è un alias per `-p linux tty`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux tty` diff --git a/pages.it/osx/guname.md b/pages.it/osx/guname.md new file mode 100644 index 0000000000..901974fe2a --- /dev/null +++ b/pages.it/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> Questo comando è un alias per `-p linux uname`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux uname` diff --git a/pages.it/osx/gunexpand.md b/pages.it/osx/gunexpand.md new file mode 100644 index 0000000000..272a207c84 --- /dev/null +++ b/pages.it/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> Questo comando è un alias per `-p linux unexpand`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux unexpand` diff --git a/pages.it/osx/guniq.md b/pages.it/osx/guniq.md new file mode 100644 index 0000000000..35c8e50b8c --- /dev/null +++ b/pages.it/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> Questo comando è un alias per `-p linux uniq`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux uniq` diff --git a/pages.it/osx/gunits.md b/pages.it/osx/gunits.md new file mode 100644 index 0000000000..08db0af834 --- /dev/null +++ b/pages.it/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> Questo comando è un alias per `-p linux units`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux units` diff --git a/pages.it/osx/gunlink.md b/pages.it/osx/gunlink.md new file mode 100644 index 0000000000..07cddcb806 --- /dev/null +++ b/pages.it/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> Questo comando è un alias per `-p linux unlink`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux unlink` diff --git a/pages.it/osx/gupdatedb.md b/pages.it/osx/gupdatedb.md new file mode 100644 index 0000000000..1622794283 --- /dev/null +++ b/pages.it/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> Questo comando è un alias per `-p linux updatedb`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux updatedb` diff --git a/pages.it/osx/guptime.md b/pages.it/osx/guptime.md new file mode 100644 index 0000000000..c0e71b0c7f --- /dev/null +++ b/pages.it/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> Questo comando è un alias per `-p linux uptime`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux uptime` diff --git a/pages.it/osx/gusers.md b/pages.it/osx/gusers.md new file mode 100644 index 0000000000..ae1153f480 --- /dev/null +++ b/pages.it/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> Questo comando è un alias per `-p linux users`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux users` diff --git a/pages.it/osx/gvdir.md b/pages.it/osx/gvdir.md new file mode 100644 index 0000000000..e1d7ab8454 --- /dev/null +++ b/pages.it/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> Questo comando è un alias per `-p linux vdir`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux vdir` diff --git a/pages.it/osx/gwc.md b/pages.it/osx/gwc.md new file mode 100644 index 0000000000..dcd3c1890e --- /dev/null +++ b/pages.it/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> Questo comando è un alias per `-p linux wc`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux wc` diff --git a/pages.it/osx/gwhich.md b/pages.it/osx/gwhich.md new file mode 100644 index 0000000000..1b929e7d72 --- /dev/null +++ b/pages.it/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> Questo comando è un alias per `-p linux which`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux which` diff --git a/pages.it/osx/gwho.md b/pages.it/osx/gwho.md new file mode 100644 index 0000000000..0d2c197f29 --- /dev/null +++ b/pages.it/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> Questo comando è un alias per `-p linux who`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux who` diff --git a/pages.it/osx/gwhoami.md b/pages.it/osx/gwhoami.md new file mode 100644 index 0000000000..dbfcbf0b55 --- /dev/null +++ b/pages.it/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> Questo comando è un alias per `-p linux whoami`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux whoami` diff --git a/pages.it/osx/gwhois.md b/pages.it/osx/gwhois.md new file mode 100644 index 0000000000..488e168f9d --- /dev/null +++ b/pages.it/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> Questo comando è un alias per `-p linux whois`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux whois` diff --git a/pages.it/osx/gxargs.md b/pages.it/osx/gxargs.md new file mode 100644 index 0000000000..62359bb54a --- /dev/null +++ b/pages.it/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> Questo comando è un alias per `-p linux xargs`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux xargs` diff --git a/pages.it/osx/gyes.md b/pages.it/osx/gyes.md new file mode 100644 index 0000000000..8be7f13260 --- /dev/null +++ b/pages.it/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> Questo comando è un alias per `-p linux yes`. + +- Consulta la documentazione del comando originale: + +`tldr -p linux yes` diff --git a/pages.it/osx/launchd.md b/pages.it/osx/launchd.md new file mode 100644 index 0000000000..fc2aa25f7d --- /dev/null +++ b/pages.it/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> Questo comando è un alias per `launchctl`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr launchctl` diff --git a/pages.it/osx/log.md b/pages.it/osx/log.md new file mode 100644 index 0000000000..400d423bf1 --- /dev/null +++ b/pages.it/osx/log.md @@ -0,0 +1,20 @@ +# log + +> Visualizza, esporta e configura i sistemi di log. +> Maggiori informazioni: . + +- Mostra i log di sistema in diretta: + +`log stream` + +- Mostra i log mandati a `syslog` da processi con un PID specifico: + +`log stream --process {{ID_processo}}` + +- Mostra i log mandati a `syslog` da processi con un nome specifico: + +`log show --predicate "process == '{{process_name}}'"` + +- Esporta sul disco tutti i log dell'ultima ora: + +`sudo log collect --last {{1h}} --output {{percorso/del/file.logarchive}}` diff --git a/pages.it/windows/attrib.md b/pages.it/windows/attrib.md new file mode 100644 index 0000000000..52a0ec464f --- /dev/null +++ b/pages.it/windows/attrib.md @@ -0,0 +1,28 @@ +# attrib + +> Mostra o cambia gli attributi di file e cartelle. +> Maggiori informazioni: . + +- Mostra tutti gli attributi dei file in una cartella: + +`attrib` + +- Mostra tutti gli attributi dei file in una cartella specifica: + +`attrib {{percorso\della\cartella}}` + +- Mostra tutti gli attributi dei file e delle cartelle nella cartella corrente: + +`attrib /d` + +- Mostra tutti gli attributi dei file in una cartella e le sue sotto-cartelle: + +`attrib /s` + +- Aggiungi l'attributo `[r]ead-only` o `[a]rchive` o `[s]ystem` o `[h]idden` o `not content [i]ndexed` a file o cartelle: + +`attrib +{{r|a|s|h|i}} {{percorso\del\file_o_cartella1 percorso\del\file_o_cartella2 ...}}` + +- Rimuovi un attributo specifico da un file o una cartella: + +`attrib -{{r|a|s|h|i}} {{percorso\del\file_o_cartella1 percorso\del\file_o_cartella2 ...}}` diff --git a/pages.it/windows/cd.md b/pages.it/windows/cd.md index eb84fbefe1..18f52ab6ae 100644 --- a/pages.it/windows/cd.md +++ b/pages.it/windows/cd.md @@ -1,7 +1,7 @@ # cd > Mostra informazioni riguardo alla directory corrente e permette di muoversi in un altra directory. -> Maggiori informazioni: . +> Maggiori informazioni: . - Mostra il percorso (path) della directory corrente: diff --git a/pages.it/windows/chkdsk.md b/pages.it/windows/chkdsk.md new file mode 100644 index 0000000000..12dd785415 --- /dev/null +++ b/pages.it/windows/chkdsk.md @@ -0,0 +1,20 @@ +# chkdsk + +> Controlla il file system e i metadata dei dischi per cercare errori. +> Maggiori informazioni: . + +- Specifica la lettera del disco (seguita da due punti ':'), monta una partizione o un disco da controllare: + +`chkdsk {{disco}}` + +- Ripara gli errori di un disco specifico: + +`chkdsk {{disco}} /f` + +- Smonta un disco specifico prima di eseguire il controllo: + +`chkdsk {{volume}} /x` + +- Cambia la dimensione dei file di log in una dimensione specifica (solo per NTFS): + +`chkdsk /l{{dimensione}}` diff --git a/pages.it/windows/choco-apikey.md b/pages.it/windows/choco-apikey.md new file mode 100644 index 0000000000..97803caf9c --- /dev/null +++ b/pages.it/windows/choco-apikey.md @@ -0,0 +1,20 @@ +# choco apikey + +> Gestisci le chiavi API per le fonti di Chocolatey. +> Maggiori informazioni: . + +- Mostra una lista di fonti e le loro chiavi API: + +`choco apikey` + +- Mostra una specifica fonte e la sua chiave API: + +`choco apikey --source "{{url_della_fonte}}"` + +- Imposta una chiave API per una fonte: + +`choco apikey --source "{{url_della_fonte}}" --key "{{chiave_api}}"` + +- Rimuovi una chiave API per una fonte: + +`choco apikey --source "{{url_della_fonte}}" --remove` diff --git a/pages.it/windows/choco-install.md b/pages.it/windows/choco-install.md new file mode 100644 index 0000000000..83e489e050 --- /dev/null +++ b/pages.it/windows/choco-install.md @@ -0,0 +1,36 @@ +# choco install + +> Installa uno o più pacchetti con Chocolatey. +> Maggiori informazioni: + +- Installa uno o più pacchetti separati da spazio: + +`choco install {{pacchetto1 pacchetto2 ...}}` + +- Installa pacchetti da un file di configurazione personalizzato: + +`choco install {{percorso\del\file_di_pacchetti.config}}` + +- Installa un file nuspec o nupkg specifico: + +`choco install {{percorso\del\file}}` + +- Installa una nuova versione specifica di un pacchetto: + +`choco install {{pacchetto}} --version {{versione}}` + +- Consenti l'installazione di più versioni di un pacchetto: + +`choco install {{pacchetto}} --allow-multiple` + +- Conferma automaticamente tutte le richieste: + +`choco install {{pacchetto}} --yes` + +- Specifica una fonte personalizzata per ricevere pacchetti: + +`choco install {{pacchetto}} --source {{url_fonte|alias}}` + +- Fornisci un nome utente e una password per l'autenticazione: + +`choco install {{pacchetto}} --user {{nome_utente}} --password {{password}}` diff --git a/pages.it/windows/choco.md b/pages.it/windows/choco.md new file mode 100644 index 0000000000..27137f90ba --- /dev/null +++ b/pages.it/windows/choco.md @@ -0,0 +1,21 @@ +# choco + +> Interfaccia a linea di comando per il gestore pacchetti Chocolatey. +> Alcuni sottocomandi come `choco install` hanno la loro documentazione. +> Maggiori informazioni: . + +- Esegui comandi Chocolatey: + +`choco {{comando}}` + +- Guarda il messaggio d'aiuto: + +`choco -?` + +- Guarda il messaggio d'aiuto di un comando specifico: + +`choco {{command}} -?` + +- Controlla la versione di Chocolatey: + +`choco --version` diff --git a/pages.it/windows/chrome.md b/pages.it/windows/chrome.md new file mode 100644 index 0000000000..329dd9cfcf --- /dev/null +++ b/pages.it/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> Questo comando è un alias per `chromium`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr chromium` diff --git a/pages.it/windows/clip.md b/pages.it/windows/clip.md new file mode 100644 index 0000000000..05bdff3225 --- /dev/null +++ b/pages.it/windows/clip.md @@ -0,0 +1,20 @@ +# clip + +> Copia il contenuto di input negli Appunti di Windows. +> Maggiori informazioni: . + +- Manda l'output della riga di comando negli Appunti di Windows: + +`{{dir}} | clip` + +- Copia i contenuti di un file negli appunti di Windows: + +`clip < {{percorso\per\file.ext}}` + +- Copia il testo con una nuova riga finale negli appunti di Windows: + +`echo {{testo_generico}} | clip` + +- Copia il testo senza una nuova riga finale negli appunti di Windows: + +`echo | set /p="testo_generico" | clip` diff --git a/pages.it/windows/cls.md b/pages.it/windows/cls.md new file mode 100644 index 0000000000..77c2dc9c17 --- /dev/null +++ b/pages.it/windows/cls.md @@ -0,0 +1,8 @@ +# cls + +> Pulisce lo schermo del terminale. +> Maggiori informazioni: . + +- Pulisce lo schermo: + +`cls` diff --git a/pages.it/windows/color.md b/pages.it/windows/color.md new file mode 100644 index 0000000000..542a414155 --- /dev/null +++ b/pages.it/windows/color.md @@ -0,0 +1,16 @@ +# color + +> Imposta i colori di primo piano e di sfondo della console. +> Maggiori informazioni: . + +- Imposta i colori della console sui valori predefiniti: + +`color` + +- Elenca i valori di colore disponibili e le informazioni dettagliate: + +`color /?` + +- Imposta il primo piano e lo sfondo della console su un colore specifico utilizzando numeri esadecimali (`1-9,a-f`): + +`color {{codice_primo_piano}}{{codice_sfondo}}` diff --git a/pages.it/windows/cpush.md b/pages.it/windows/cpush.md new file mode 100644 index 0000000000..bbef0d47bc --- /dev/null +++ b/pages.it/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> Questo comando è un alias per `choco-push`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr choco-push` diff --git a/pages.it/windows/curl.md b/pages.it/windows/curl.md new file mode 100644 index 0000000000..7dcd25a7d0 --- /dev/null +++ b/pages.it/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> Questo comando è un alias per `curl -p common`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr curl -p common` diff --git a/pages.it/windows/date.md b/pages.it/windows/date.md new file mode 100644 index 0000000000..f7ed179ef9 --- /dev/null +++ b/pages.it/windows/date.md @@ -0,0 +1,16 @@ +# date + +> Mostra o imposta la data del sistema. +> Maggiori informazioni: . + +- Mostra la data corrente e chiedi di impostarne una nuova (lascia vuoto per lasciare quella corrente): + +`date` + +- Mostra la data corrente senza chiedere di impostarne una nuova: + +`date /t` + +- Cambia la data corrente a una data specifica: + +`date {{mese}}-{{giorno}}-{{anno}}` diff --git a/pages.it/windows/del.md b/pages.it/windows/del.md new file mode 100644 index 0000000000..168811ce91 --- /dev/null +++ b/pages.it/windows/del.md @@ -0,0 +1,32 @@ +# del + +> Cancella uno o più file. +> Maggiori informazioni: . + +- Cancella uno o più (separati da uno spazio) file o pattern: + +`del {{pattern_di_file}}` + +- Chiedi conferma prima di cancellare ogni file: + +`del {{pattern_di_file}} /p` + +- Forza l'eliminazione di un file a sola lettura: + +`del {{pattern_di_file}} /f` + +- Elimina in modo ricorsivo i file da tutte le sottodirectory: + +`del {{pattern_di_file}} /s` + +- Non chiedere conferma quando si eliminano i file in base a un carattere globale: + +`del {{pattern_di_file}} /q` + +- Mostra il messaggio d'aiuto e fà vedere la lista di attributi disponibili: + +`del /?` + +- Cancella dei file in base a degli attributi specifici: + +`del {{pattern_di_file}} /a {{attributo}}` diff --git a/pages.it/windows/dir.md b/pages.it/windows/dir.md new file mode 100644 index 0000000000..54c3777669 --- /dev/null +++ b/pages.it/windows/dir.md @@ -0,0 +1,20 @@ +# dir + +> Elenca i contenuti di una directory. +> Maggiori informazioni: . + +- Mostra i contenuti della directory corrente: + +`dir` + +- Mostra i contenuti di una directory specifica: + +`dir {{percorso\della\directory}}` + +- Mostra i contenuti della directory corrente includendo quelli nascosti: + +`dir /A` + +- Mostra i contenuti di una directory specifica includendo quelli nascosti: + +`dir {{percorso\della\directory}} /A` diff --git a/pages.it/windows/diskpart.md b/pages.it/windows/diskpart.md new file mode 100644 index 0000000000..1d4ac5342a --- /dev/null +++ b/pages.it/windows/diskpart.md @@ -0,0 +1,32 @@ +# diskpart + +> Gestore di dischi, volumi e partizioni. +> Maggiori informazioni: . + +- Esegui diskpart da solo in un prompt dei comandi da amministratore per inserire la sua riga di comando: + +`diskpart` + +- Elenca tutti i dischi: + +`list disk` + +- Seleziona un volume: + +`select volume {{volume}}` + +- Assegna una lettera di unità al volume selezionato: + +`assign letter {{lettera}}` + +- Crea una nuova partizione: + +`create partition primary` + +- Attiva il volume selezionato: + +`active` + +- Esci da diskpart: + +`exit` diff --git a/pages.it/windows/exit.md b/pages.it/windows/exit.md new file mode 100644 index 0000000000..1895323e4c --- /dev/null +++ b/pages.it/windows/exit.md @@ -0,0 +1,16 @@ +# exit + +> Esci dall'istanza CMD corrente o dal file batch corrente. +> Maggiori informazioni: . + +- Esci dall'istanza CMD corrente: + +`exit` + +- Esci dallo script batch corrente: + +`exit /b` + +- Esci usando uno specifico codice d'uscita: + +`exit {{2}}` diff --git a/pages.it/windows/explorer.md b/pages.it/windows/explorer.md new file mode 100644 index 0000000000..02f10b1a07 --- /dev/null +++ b/pages.it/windows/explorer.md @@ -0,0 +1,16 @@ +# explorer + +> Il file explorer di Windows. +> Maggiori informazioni: . + +- Apri Windows Explorer: + +`explorer` + +- Apri Windows Explorer nella directory corrente: + +`explorer .` + +- Apri Windows Explorer in una directory specifica: + +`explorer {{percorso\della\directory}}` diff --git a/pages.it/windows/ftp.md b/pages.it/windows/ftp.md new file mode 100644 index 0000000000..62ea4e53bc --- /dev/null +++ b/pages.it/windows/ftp.md @@ -0,0 +1,36 @@ +# ftp + +> Trasferisci file in modo interattivo tra un server FTP locale e remoto. +> Maggiori informazioni: . + +- Connettiti a un server FTP remoto: + +`ftp {{host}}` + +- Accedi come utente anonimo: + +`ftp -A {{host}}` + +- Disabilita l'accesso automatico alla connessione iniziale: + +`ftp -n {{host}}` + +- Esegui un file contenente una lista di comandi FTP: + +`ftp -s:{{percorso\to\file}} {{host}}` + +- Carica file (espressione glob): + +`mget {{*.png}}` + +- Carica file (espressione glob): + +`mput {{*.zip}}` + +- Cancella file sul server remoto: + +`mdelete {{*.txt}}` + +- Mostra la pagina di aiuto dettagliato: + +`ftp --help` diff --git a/pages.it/windows/ipconfig.md b/pages.it/windows/ipconfig.md new file mode 100644 index 0000000000..5b51436e1e --- /dev/null +++ b/pages.it/windows/ipconfig.md @@ -0,0 +1,24 @@ +# ipconfig + +> Mostra e gestisce le configurazioni di rete di Windows. +> Maggiori informazioni: . + +- Mostra la lista delle schede di rete: + +`ipconfig` + +- Mostra la lista dettagliata delle schede di rete: + +`ipconfig /all` + +- Rinnova l'indirizzo IP di una scheda di rete: + +`ipconfig /renew {{scheda_di_rete}}` + +- Libera gli indirizzi IP per una scheda di rete: + +`ipconfig /release {{scheda_di_rete}}` + +- Rimuovi tutti i dati dalla cache DNS: + +`ipconfig /flushdns` diff --git a/pages.it/windows/iwr.md b/pages.it/windows/iwr.md new file mode 100644 index 0000000000..5a92b58ef1 --- /dev/null +++ b/pages.it/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> Questo comando è un alias per `invoke-webrequest`. + +- Consulta la documentazione del comando originale: + +`tldr invoke-webrequest` diff --git a/pages.it/windows/logoff.md b/pages.it/windows/logoff.md new file mode 100644 index 0000000000..97255f4f9a --- /dev/null +++ b/pages.it/windows/logoff.md @@ -0,0 +1,16 @@ +# logoff + +> Termina una sessione di accesso. +> Maggiori informazioni: . + +- Termina la sessione in uso: + +`logoff` + +- Termina una sessione con il suo nome o id: + +`logoff {{nome_sessione|id_sessione}}` + +- Termina la sessione su un server specifico connesso tramite RDP: + +`logoff {{name_sessione|id_sessione}} /server:{{nome_server}}` diff --git a/pages.it/windows/mount.md b/pages.it/windows/mount.md new file mode 100644 index 0000000000..c603449b94 --- /dev/null +++ b/pages.it/windows/mount.md @@ -0,0 +1,32 @@ +# mount + +> Montare le condivisioni di rete del Network File System (NFS). +> Maggiori informazioni: . + +- Monta una share con la lettera di unità "Z": + +`mount \\{{nome_del_computer}}\{{nome_della_share}} {{Z:}}` + +- Monta una share con la successiva lettera di unità disponibile: + +`mount \\{{nome_del_computer}}\{{nome_della_share}} *` + +- Monta una share con un timeout di lettura in secondi (predefinito a 0,8, può essere 0,9 o da 1 a 60): + +`mount -o timeout={{secondi}} \\{{nome_del_computer}}\{{nome_della_share}} {{Z:}}` + +- Monta una share e riprova fino a 10 volte se fallisce: + +`mount -o retry={{numero_di_ripetizioni}} \\{{nome_del_computer}}\{{nome_della_share}} {{Z:}}` + +- Monta una share forzando la distinzione tra maiuscole e minuscole: + +`mount -o casesensitive \\{{nome_del_computer}}\{{nome_della_share}} {{Z:}}` + +- Monta una share come utente anonimo: + +`mount -o anon \\{{nome_del_computer}}\{{nome_della_share}} {{Z:}}` + +- Monta una share utilizzando un tipo di montaggio specifico: + +`mount -o mtype={{soft|hard}} \\{{nome_del_computer}}\{{nome_della_share}} {{Z:}}` diff --git a/pages.it/windows/pwsh-where.md b/pages.it/windows/pwsh-where.md new file mode 100644 index 0000000000..edd3171a62 --- /dev/null +++ b/pages.it/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> Questo comando è un alias per `Where-Object`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr Where-Object` diff --git a/pages.it/windows/rd.md b/pages.it/windows/rd.md new file mode 100644 index 0000000000..4e342c23d7 --- /dev/null +++ b/pages.it/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> Questo comando è un alias per `rmdir`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr rmdir` diff --git a/pages.it/windows/robocopy.md b/pages.it/windows/robocopy.md new file mode 100644 index 0000000000..910ce5600e --- /dev/null +++ b/pages.it/windows/robocopy.md @@ -0,0 +1,33 @@ +# robocopy + +> Copia robusta di file e directory. +> Di default, i file saranno copiati solo se la sorgente e la destinazione hanno timestamp o dimensioni diverse. +> Maggiori informazioni: + +- Copia tutti i file `.jpg` e `.bmp` da una directory ad un'altra: + +`robocopy {{percorso\della\directory_sorgente}} {{percorso\della\directory_destinazione}} {{*.jpg}} {{*.bmp}}` + +- Copia tutti i file e le sottodirectory, includento anche quelle vuote: + +`robocopy {{percorso\della\directory_sorgente}} {{percorso\della\directory_destinazione}} /E` + +- Mirror/Sincronizza una directory, eliminando tutto ciò che non è nella sorgente e includendo tutti gli attributi e le autorizzazioni: + +`robocopy {{percorso\della\directory_sorgente}} {{percorso\della\directory_destinazione}} /MIR /COPYALL` + +- Copia tutti i file e le sottodirectory, escludendo i file di origine più vecchi rispetto ai file di destinazione: + +`robocopy {{percorso\della\directory_sorgente}} {{percorso\della\directory_destinazione}} /E /XO` + +- Elencare tutti i file di dimensioni maggiori o uguali a 50 MB anziché copiarli: + +`robocopy {{percorso\della\directory_sorgente}} {{percorso\della\directory_destinazione}} /MIN:{{52428800}} /L` + +- Consenti la ripresa se la connessione di rete viene interrotta, limita i tentativi di ripresa a 5 ed il tempo di attesa a 15 secondi: + +`robocopy {{percorso\della\directory_sorgente}} {{percorso\della\directory_destinazione}} /Z /R:5 /W:15` + +- Mostra l'aiuto dettagliato: + +`robocopy /?` diff --git a/pages.it/windows/sls.md b/pages.it/windows/sls.md new file mode 100644 index 0000000000..b46530b7c9 --- /dev/null +++ b/pages.it/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> Questo comando è un alias per `where-object`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr where-object` diff --git a/pages.it/windows/tasklist.md b/pages.it/windows/tasklist.md new file mode 100644 index 0000000000..e3835afac8 --- /dev/null +++ b/pages.it/windows/tasklist.md @@ -0,0 +1,24 @@ +# tasklist + +> Mostra una lista dei processi in esecuzione su una macchina locale o remota. +> Maggiori informazioni: . + +- Mostra i processi in esecuzione: + +`tasklist` + +- Mostra i processi in esecuzione in un formato specifico: + +`tasklist /fo {{table|list|csv}}` + +- Mostra i processi in esecuzione utilizzando il nome del file `.exe` o `.dll` specificato: + +`tasklist /m {{pattern_di_moduli}}` + +- Mostra i processi in esecuzione su una macchina remota: + +`tasklist /s {{nome_macchina_remota}} /u {{nome_utente}} /p {{password}}` + +- Visualizzare i servizi utilizzando ogni processo: + +`tasklist /svc` diff --git a/pages.it/windows/wget.md b/pages.it/windows/wget.md new file mode 100644 index 0000000000..fc6c17ce06 --- /dev/null +++ b/pages.it/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> Questo comando è un alias per `wget -p common`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr wget -p common` diff --git a/pages.it/windows/winget.md b/pages.it/windows/winget.md new file mode 100644 index 0000000000..f067d2777a --- /dev/null +++ b/pages.it/windows/winget.md @@ -0,0 +1,24 @@ +# winget + +> Gestore pacchetti a linea di comando di Windows. +> Maggiori informazioni: . + +- Installa un pacchetto: + +`winget install {{pacchetto}}` + +- Mostra informazioni su un pacchetto: + +`winget show {{pacchetto}}` + +- Cerca un pacchetto: + +`winget search {{pacchetto}}` + +- Aggiorna tutti i pacchetti all'ultima versione: + +`winget upgrade --all` + +- Elenca tutti i pacchetti installati che possono essere gestiti con winget: + +`winget list --source winget` diff --git a/pages.it/windows/xcopy.md b/pages.it/windows/xcopy.md new file mode 100644 index 0000000000..7a5c532f38 --- /dev/null +++ b/pages.it/windows/xcopy.md @@ -0,0 +1,36 @@ +# xcopy + +> Copia di file e directory. +> Maggiori informazioni: . + +- Copia il/i file nella destinazione specificata: + +`xcopy {{percorso\del\file_o_directory}} {{percorso\della\destinazione}}` + +- Elenca i file da copiare prima di copiarli verso la destinazione: + +`xcopy {{percorso\del\file_o_directory}} {{percorso\della\destinazione}} /p` + +- Copia solo la struttura della directory senza i file: + +`xcopy {{percorso\del\file_o_directory}} {{percorso\della\destinazione}} /t` + +- Copia le directory vuote: + +`xcopy {{percorso\del\file_o_directory}} {{percorso\della\destinazione}} /e` + +- Mantieni le politiche di accesso della sorgente (ACL) nella directory di destinazione: + +`xcopy {{percorso\del\file_o_directory}} {{percorso\della\destinazione}} /o` + +- Continua l'operazione dopo l'interruzione della connessione di rete: + +`xcopy {{percorso\del\file_o_directory}} {{percorso\della\destinazione}} /z` + +- Sovrascrivi automaticamente i file di destinazione già esistenti: + +`xcopy {{percorso\del\file_o_directory}} {{percorso\della\destinazione}} /y` + +- Mostra l'aiuto dettagliato: + +`xcopy /?` diff --git a/pages.ja/common/7z.md b/pages.ja/common/7z.md index edc4e107f3..6ca687256e 100644 --- a/pages.ja/common/7z.md +++ b/pages.ja/common/7z.md @@ -1,7 +1,7 @@ # 7z > 圧縮率の高いファイルアーカイバです。 -> 詳しくはこちら: +> 詳しくはこちら: - ファイルまたはディレクトリを圧縮する: @@ -19,7 +19,7 @@ `7z x {{アーカイブ.7z}} -o{{出力先のパス}}` -- stdoutに対してファイルを出力する: +- `stdout`に対してファイルを出力する: `7z x {{アーカイブ.7z}} -so` diff --git a/pages.ja/common/7za.md b/pages.ja/common/7za.md index 338119657a..2c1c376231 100644 --- a/pages.ja/common/7za.md +++ b/pages.ja/common/7za.md @@ -2,7 +2,7 @@ > 圧縮率の高いファイルアーカイバです。 > `7z` よりも対応しているファイル形式は少ないですが、複数のプラットフォームに対応しています。 -> 詳しくはこちら: +> 詳しくはこちら: - ファイルまたはディレクトリを圧縮する: diff --git a/pages.ja/common/7zr.md b/pages.ja/common/7zr.md index 32e76bebb2..4cdb22ad52 100644 --- a/pages.ja/common/7zr.md +++ b/pages.ja/common/7zr.md @@ -2,7 +2,7 @@ > 圧縮率の高いファイルアーカイバです。 > `7z` と似ていますが、 `7zr` は `.7z` 形式のみをサポートしています。 -> 詳しくはこちら: +> 詳しくはこちら: - ファイルまたはディレクトリを圧縮する: diff --git a/pages.ja/common/ab.md b/pages.ja/common/ab.md new file mode 100644 index 0000000000..2c8bf40592 --- /dev/null +++ b/pages.ja/common/ab.md @@ -0,0 +1,24 @@ +# ab + +> Apache HTTP server のベンチマーク用ツールです。 +> 詳細情報はこちら: . + +- 指定された URL に 100 個の GET リクエストを送信する: + +`ab -n {{100}} {{url}}` + +- 指定された URL に 100 個の GET リクエストを、10 個ずつ同時に送信する: + +`ab -n {{100}} -c {{10}} {{url}}` + +- ファイルからの JSON ペイロードを使って、指定された URL に 100 個の POST リクエストを送信する: + +`ab -n {{100}} -T {{application/json}} -p {{ファイルパス.json}} {{url}}` + +- [K]eep Alive を有効化する(1つの HTTP セッションで複数のリクエストを実行する): + +`ab -k {{url}}` + +- ベンチマークを行う最大秒数を設定する: + +`ab -t {{60}} {{url}}` diff --git a/pages.ja/common/ag.md b/pages.ja/common/ag.md index 2d65205932..854153e220 100644 --- a/pages.ja/common/ag.md +++ b/pages.ja/common/ag.md @@ -1,7 +1,7 @@ # ag > Silver Searcher と呼ばれます。ack コマンドに似ていますが、より高速化を目指したコマンドです。 -> 詳しくはこちら: . +> 詳しくはこちら: - "foo"という文字列が含まれるファイルを検索し、コンテキスト内でマッチした行を出力する: diff --git a/pages.ja/common/aws-configure.md b/pages.ja/common/aws-configure.md index 281b3e35bf..e22ec68772 100644 --- a/pages.ja/common/aws-configure.md +++ b/pages.ja/common/aws-configure.md @@ -1,7 +1,7 @@ # aws configure > AWS CLI の設定を管理します。 -> 詳しくはこちら: . +> 詳しくはこちら: - 対話形式で AWS CLI を設定する(新しい設定の作成、または既定の更新): diff --git a/pages.ja/common/aws.md b/pages.ja/common/aws.md index 57a8a31af9..a3bdc823c5 100644 --- a/pages.ja/common/aws.md +++ b/pages.ja/common/aws.md @@ -2,7 +2,7 @@ > アマゾンウェブサービスの公式 CLI ツールです。 > `aws S3` のようないくつかのサブコマンドには、使用方法についての独自のドキュメントがあります。 -> 詳しくはこちら: . +> 詳しくはこちら: - AWS コマンドラインを設定する: diff --git a/pages.ja/common/bc.md b/pages.ja/common/bc.md new file mode 100644 index 0000000000..96091031d7 --- /dev/null +++ b/pages.ja/common/bc.md @@ -0,0 +1,29 @@ +# bc + +> 任意の精度で計算を行える言語です。 +> `dc`も参照してください。 +> 詳しくはこちら: . + +- 対話モードのセッションを開始する: + +`bc` + +- 標準数学ライブラリを有効化して対話モードのセッションを開始する: + +`bc --mathlib` + +- 式を計算する: + +`echo '{{5 / 3}}' | bc` + +- スクリプトを実行する: + +`bc {{スクリプト/への/パス.bc}}` + +- 小数点以下の桁数を指定して式を計算する: + +`echo 'scale = {{10}}; {{5 / 3}}' | bc` + +- `mathlib`を使用してサイン/コサイン/アークタンジェント/自然対数/指数関数を計算する: + +`echo '{{s|c|a|l|e}}({{1}})' | bc --mathlib` diff --git a/pages.ja/common/bg.md b/pages.ja/common/bg.md index baaef1fac9..abcd829353 100644 --- a/pages.ja/common/bg.md +++ b/pages.ja/common/bg.md @@ -1,7 +1,7 @@ # bg > 一時停止していたジョブ(例. `Ctrl + Z` 使用時)を再開し、バックグラウンドで実行します。 -> 詳しくはこちら: . +> 詳しくはこちら: - 最も最近に一時停止されたジョブを再開し、バックグラウンドで実行する: diff --git a/pages.ja/common/bundler.md b/pages.ja/common/bundler.md new file mode 100644 index 0000000000..b73a82f614 --- /dev/null +++ b/pages.ja/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> このコマンドは `bundle` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr bundle` diff --git a/pages.ja/common/cat.md b/pages.ja/common/cat.md new file mode 100644 index 0000000000..8597dd0cff --- /dev/null +++ b/pages.ja/common/cat.md @@ -0,0 +1,24 @@ +# cat + +> ファイルの出力と連結を行います。 +> 詳しくはこちら: + +- ファイルの内容を標準出力に出力する: + +`cat {{ファイルパス}}` + +- 複数ファイルを連結して1つの出力ファイルにする: + +`cat {{ファイルパス1 ファイルパス2 ...}} > {{出力ファイルパス}}` + +- 複数ファイルを1つの出力ファイルに追加する: + +`cat {{ファイルパス1 ファイルパス2 ...}} >> {{出力ファイルパス}}` + +- ファイルの内容をバッファリング(一時保存)せずに出力ファイルにコピーする: + +`cat -u {{/dev/tty12}} > {{/dev/tty13}}` + +- `stdin`(標準入力)をファイルに書き込む: + +`cat - > {{ファイルパス}}` diff --git a/pages.ja/common/cd.md b/pages.ja/common/cd.md index 8076e4360d..3522c82b46 100644 --- a/pages.ja/common/cd.md +++ b/pages.ja/common/cd.md @@ -1,7 +1,7 @@ # cd > 現在の作業ディレクトリを変更します。 -> 詳しくはこちら: . +> 詳しくはこちら: - 指定したディレクトリへ移動する: diff --git a/pages.ja/common/chsh.md b/pages.ja/common/chsh.md index bd9e29b4c0..a4f41fc2b4 100644 --- a/pages.ja/common/chsh.md +++ b/pages.ja/common/chsh.md @@ -1,7 +1,7 @@ # chsh > ユーザーのログインシェルを変更します。 -> 詳しくはこちら: . +> 詳しくはこちら: - カレントユーザーのログインシェルを対話的に変更する: diff --git a/pages.ja/common/clamav.md b/pages.ja/common/clamav.md new file mode 100644 index 0000000000..ffd9c41ca7 --- /dev/null +++ b/pages.ja/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> このコマンドは `clamdscan` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr clamdscan` diff --git a/pages.ja/common/colorls.md b/pages.ja/common/colorls.md new file mode 100644 index 0000000000..53fb1b9218 --- /dev/null +++ b/pages.ja/common/colorls.md @@ -0,0 +1,20 @@ +# colorls + +> カラー化と Font Awesome アイコンの使用によりターミナルの ls コマンドを美しくした Ruby の gem です。 +> 詳しくはこちら: . + +- ファイルを 1 行ずつ表示する: + +`colorls -1` + +- 隠しファイルを含めた全てのファイルを表示する: + +`colorls --all` + +- 全てのファイルを長文形式(パーミッション、所有者、サイズ、更新日時)で表示する: + +`colorls --long --all` + +- ディレクトリのみ表示する: + +`colorls --dirs` diff --git a/pages.ja/common/cron.md b/pages.ja/common/cron.md new file mode 100644 index 0000000000..7aa4e4f7fb --- /dev/null +++ b/pages.ja/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> このコマンドは `crontab` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr crontab` diff --git a/pages.ja/common/curl.md b/pages.ja/common/curl.md new file mode 100644 index 0000000000..24086c6f7b --- /dev/null +++ b/pages.ja/common/curl.md @@ -0,0 +1,37 @@ +# curl + +> データをサーバーから転送、もしくはサーバーへ転送します。 +> HTTP、FTP、POP3を含むほとんどのプロトコルをサポートしています。 +> 詳しくはこちら: . + +- URLのコンテンツをファイルにダウンロードする: + +`curl {{http://example.com}} --output {{ファイルパス}}` + +- ファイルをダウンロードし、URLにより指定されたファイル名で出力を保存する: + +`curl --remote-name {{http://example.com/filename}}` + +- ファイルをダウンロードし、ロケーションレスポンスヘッダーのリダイレクトに追従しつつ自動的に以前のファイル転送を継続(再開)する。サーバーエラー時にはエラーを返す: + +`curl --fail --remote-name --location --continue-at - {{http://example.com/filename}}` + +- フォームエンコードされたデータを送信する(`application/x-www-form-urlencoded`型のPOSTリクエスト)。STDIN(標準入力) から読み込むには、`--data @file_name` または `--data @'-'` を使用する: + +`curl --data {{'name=bob'}} {{http://example.com/form}}` + +- カスタムHTTPメソッドを用いて追加のヘッダーを持つリクエストを送信する: + +`curl --header {{'X-My-Header: 123'}} --request {{PUT}} {{http://example.com}}` + +- 適切なContent-Type 表現ヘッダーを指定することで、JSONフォーマットでデータを送信する: + +`curl --data {{'{"name":"bob"}'}} --header {{'Content-Type: application/json'}} {{http://example.com/users/1234}}` + +- サーバー認証のためユーザー名とパスワードを送る: + +`curl --user myusername:mypassword {{http://example.com}}` + +- リソースのクライアント証明書とキーを送り、証明書の検証をスキップする: + +`curl --cert {{client.pem}} --key {{key.pem}} --insecure {{https://example.com}}` diff --git a/pages.ja/common/docker-build.md b/pages.ja/common/docker-build.md new file mode 100644 index 0000000000..5497cad0af --- /dev/null +++ b/pages.ja/common/docker-build.md @@ -0,0 +1,32 @@ +# docker build + +> Dockerfileからイメージを構築します。 +> 詳しくはこちら: . + +- カレントディレクトリ内のDockerfileを使ってDockerイメージを構築する: + +`docker build .` + +- 指定URLにあるDockerfileからDockerイメージを構築する: + +`docker build {{github.com/creack/docker-firefox}}` + +- Dockerイメージを構築しそれにタグを付ける: + +`docker build --tag {{名前:タグ}} .` + +- ビルドコンテキスト無しでDockerイメージを構築する: + +`docker build --tag {{名前:タグ}} - < {{Dockerfile}}` + +- Dockerイメージ構築時にキャッシュを使わないようにする: + +`docker build --no-cache --tag {{名前:タグ}} .` + +- 指定のDockerfileを用いてDockerイメージを構築する: + +`docker build --file {{Dockerfile}} .` + +- ビルド時のカスタム変数を指定してイメージを構築する: + +`docker build --build-arg {{HTTP_PROXY=http://10.20.30.2:1234}} --build-arg {{FTP_PROXY=http://40.50.60.5:4567}} .` diff --git a/pages.ja/common/docker-compose.md b/pages.ja/common/docker-compose.md new file mode 100644 index 0000000000..6629a671d1 --- /dev/null +++ b/pages.ja/common/docker-compose.md @@ -0,0 +1,36 @@ +# docker compose + +> 複数コンテナを持つDockerアプリケーションの実行と管理をします。 +> 詳しくはこちら: . + +- 実行中のコンテナ全てをリスト表示する: + +`docker compose ps` + +- カレントディレクトリにある `docker-compose.yml`ファイルを使用してバックグラウンドで全てのコンテナを作成・起動する: + +`docker compose up --detach` + +- 全てのコンテナを起動し、必要に応じて再ビルドする: + +`docker compose up --build` + +- 代替composeファイルを使って全てのコンテナを起動する: + +`docker compose --file {{ファイルパス}} up` + +- 実行中の全てのコンテナを停止する: + +`docker compose stop` + +- 全てのコンテナ、ネットワーク、イメージ、ボリュームを停止して削除する: + +`docker compose down --rmi all --volumes` + +- 全てのコンテナのログをフォローする(表示し続ける): + +`docker compose logs --follow` + +- 特定コンテナのログをフォローする(表示し続ける): + +`docker compose logs --follow {{コンテナ名}}` diff --git a/pages.ja/common/docker-cp.md b/pages.ja/common/docker-cp.md new file mode 100644 index 0000000000..158f40c0b5 --- /dev/null +++ b/pages.ja/common/docker-cp.md @@ -0,0 +1,16 @@ +# docker cp + +> ホスト、コンテナのファイルシステム間でファイルやディレクトリをコピーします。 +> 詳しくはこちら: . + +- ホストからコンテナへファイルやディレクトリをコピーする: + +`docker cp {{ホスト上のファイルパスもしくはディレクトリパス}} {{コンテナ名}}:{{コンテナ内のファイルパスもしくはディレクトリパス}}` + +- コンテナからホストへファイルやディレクトリをコピーする: + +`docker cp {{コンテナ名}}:{{コンテナ内のファイルパスもしくはディレクトリパス}} {{ホスト上のファイルパスもしくはディレクトリパス}}` + +- ホストからコンテナへシンボリックリンクに従ってファイルやディレクトリをコピーする。(シンボリックリンクされたファイルを直接コピーし、シンボリックリンクそのものはコピーしない): + +`docker cp --follow-link {{ホスト上のシンボリックリンクパス}} {{コンテナ名}}:{{コンテナ内のファイルパスもしくはディレクトリパス}}` diff --git a/pages.ja/common/docker-ps.md b/pages.ja/common/docker-ps.md new file mode 100644 index 0000000000..178cb1dc12 --- /dev/null +++ b/pages.ja/common/docker-ps.md @@ -0,0 +1,36 @@ +# docker ps + +> Dockerコンテナ一覧を表示します。 +> 詳しくはこちら: . + +- 現在実行中のdockerコンテナ一覧を表示する: + +`docker ps` + +- 全てのdockerコンテナを表示する(実行中・停止中、両方のコンテナ): + +`docker ps --all` + +- 最後に作成したコンテナを表示する(全ての状態を含む): + +`docker ps --latest` + +- コンテナ名に指定の部分文字列を含むコンテナのみになるようにフィルタリングする: + +`docker ps --filter="name={{コンテナ名}}"` + +- 指定したイメージを原型(ancestor)として共有するコンテナのみになるようにフィルタリングする: + +`docker ps --filter "ancestor={{イメージ名}}:{{タグ}}"` + +- 終了コードでコンテナをフィルタリングする: + +`docker ps --all --filter="exited={{コード}}"` + +- 以下のいずれかのステータスでフィルタリングする(created, running, removing, paused, exited, dead): + +`docker ps --filter="status={{ステータス}}"` + +- 特定のボリュームをマウントしている、または特定のパスにボリュームがマウントされているコンテナをフィルタリングする: + +`docker ps --filter="volume={{ディレクトリパス}}" --format "table {{.ID}}\t{{.Image}}\t{{.Names}}\t{{.Mounts}}"` diff --git a/pages.ja/common/docker-run.md b/pages.ja/common/docker-run.md new file mode 100644 index 0000000000..b4893a9ad9 --- /dev/null +++ b/pages.ja/common/docker-run.md @@ -0,0 +1,36 @@ +# docker run + +> 新しいDockerコンテナでコマンドを実行します。 +> 詳しくはこちら: . + +- タグ付けイメージから作成した新しいコンテナでコマンドを実行する: + +`docker run {{イメージ:タグ}} {{コマンド}}` + +- 新しいコンテナでコマンドをバックグランド実行し、そのIDを表示する: + +`docker run --detach {{イメージ}} {{コマンド}}` + +- インタラクティブモードと疑似端末の割り当てを行って、使い捨てコンテナでコマンドを実行する: + +`docker run --rm --interactive --tty {{イメージ}} {{コマンド}}` + +- 渡された環境変数を使って新しいコンテナでコマンドを実行する: + +`docker run --env '{{環境変数名}}={{値}}' --env {{環境変数名}} {{イメージ}} {{コマンド}}` + +- バインドマウントを持つ新しいコンテナでコマンドを実行する: + +`docker run --volume {{ホストへのパス}}:{{コンテナへのパス}} {{イメージ}} {{コマンド}}` + +- 公開ポートを持った新しいコンテナでコマンドを実行する: + +`docker run --publish {{ホスト側のポート}}:{{コンテナ側のポート}} {{イメージ}} {{コマンド}}` + +- イメージのエントリーポイントを上書きして新しいコンテナでコマンドを実行する: + +`docker run --entrypoint {{コマンド}} {{イメージ}}` + +- 新しいコンテナをネットワークに繋ぎ、そのコンテナでコマンドを実行する: + +`docker run --network {{ネットワーク}} {{イメージ}}` diff --git a/pages.ja/common/docker-start.md b/pages.ja/common/docker-start.md new file mode 100644 index 0000000000..694e3ae574 --- /dev/null +++ b/pages.ja/common/docker-start.md @@ -0,0 +1,20 @@ +# docker start + +> 1つまたは複数の停止中コンテナを起動します。 +> 詳しくはこちら: . + +- ヘルプを表示する: + +`docker start` + +- Dockerコンテナを起動する: + +`docker start {{コンテナ}}` + +- コンテナを起動し、`stdout`(標準出力) と `stderr`(標準エラー出力) をアタッチし、シグナルを転送する: + +`docker start --attach {{コンテナ}}` + +- スペースで区切られた1つまたは複数の停止中コンテナを起動する: + +`docker start {{コンテナ1 コンテナ2 ...}}` diff --git a/pages.ja/common/docker-system.md b/pages.ja/common/docker-system.md new file mode 100644 index 0000000000..caf9505426 --- /dev/null +++ b/pages.ja/common/docker-system.md @@ -0,0 +1,36 @@ +# docker system + +> Dockerのデータ管理とシステム全体に関わる情報の表示をします。 +> 詳しくはこちら: . + +- ヘルプの表示をする: + +`docker system` + +- Dockerディスクの使用量を表示する: + +`docker system df` + +- ディスクの使用量に関して詳細な情報を表示する: + +`docker system df --verbose` + +- 不使用データを削除する: + +`docker system prune` + +- 不使用データのうち指定時間より前に作成されたものを削除する: + +`docker system prune --filter="until={{時}}h{{分}}m"` + +- Dockerデーモンからのリアルタイムイベントを表示する: + +`docker system events` + +- コンテナからのリアルタイムイベントを適正なJSON行としてストリーム表示する: + +`docker system events --filter 'type=container' --format '{{json .}}'` + +- システム全体に関わる情報の表示をする: + +`docker system info` diff --git a/pages.ja/common/docker.md b/pages.ja/common/docker.md new file mode 100644 index 0000000000..b1bb06c242 --- /dev/null +++ b/pages.ja/common/docker.md @@ -0,0 +1,37 @@ +# docker + +> Dockerコンテナ及びDockerイメージの管理を行います。 +> `docker run` のようないくつかのサブコマンドには、使用方法についての独自のドキュメントがあります。 +> 詳しくはこちら: . + +- 全てのDockerコンテナを表示する(実行中・停止中、両方のコンテナ): + +`docker ps --all` + +- イメージからカスタムのコンテナ名でコンテナを起動する: + +`docker run --name {{コンテナ名}} {{イメージ}}` + +- 既存のコンテナの起動もしくは停止を行う: + +`docker {{start|stop}} {{コンテナ名}}` + +- dockerレジストリからイメージをプルする: + +`docker pull {{イメージ}}` + +- 既にダウンロード済のイメージ一覧を表示する: + +`docker images` + +- 実行中のコンテナ内でシェルを開く: + +`docker exec -it {{コンテナ名}} {{sh}}` + +- 停止中のコンテナを削除する: + +`docker rm {{コンテナ名}}` + +- コンテナのログを取得・追跡する: + +`docker logs -f {{コンテナ名}}` diff --git a/pages.ja/common/fg.md b/pages.ja/common/fg.md index 7bc22d865e..338306e4a4 100644 --- a/pages.ja/common/fg.md +++ b/pages.ja/common/fg.md @@ -1,7 +1,7 @@ # fg > フォアグラウンドでジョブを実行する。 -> 詳しくはこちら: . +> 詳しくはこちら: - 最も最近に停止されたジョブまたはバックグラウンドジョブをフォアグラウンドで実行する: diff --git a/pages.ja/common/fossil-ci.md b/pages.ja/common/fossil-ci.md new file mode 100644 index 0000000000..a1b084fe2e --- /dev/null +++ b/pages.ja/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> このコマンドは `fossil-commit` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr fossil-commit` diff --git a/pages.ja/common/fossil-delete.md b/pages.ja/common/fossil-delete.md new file mode 100644 index 0000000000..ed6672d3a1 --- /dev/null +++ b/pages.ja/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> このコマンドは `fossil rm` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr fossil rm` diff --git a/pages.ja/common/fossil-forget.md b/pages.ja/common/fossil-forget.md new file mode 100644 index 0000000000..9deb7780a6 --- /dev/null +++ b/pages.ja/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> このコマンドは `fossil rm` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr fossil rm` diff --git a/pages.ja/common/fossil-new.md b/pages.ja/common/fossil-new.md new file mode 100644 index 0000000000..fd67ee0ebc --- /dev/null +++ b/pages.ja/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> このコマンドは `fossil-init` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr fossil-init` diff --git a/pages.ja/common/gh-cs.md b/pages.ja/common/gh-cs.md new file mode 100644 index 0000000000..0ad5d47292 --- /dev/null +++ b/pages.ja/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> このコマンドは `gh-codespace` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr gh-codespace` diff --git a/pages.ja/common/git-commit.md b/pages.ja/common/git-commit.md new file mode 100644 index 0000000000..5c73a763b8 --- /dev/null +++ b/pages.ja/common/git-commit.md @@ -0,0 +1,32 @@ +# git commit + +> リポジトリにファイルをコミットします。 +> 詳しくはこちら: . + +- メッセージと共に、ステージ済のファイルをリポジトリにコミットする: + +`git commit -m "{{メッセージ}}"` + +- ファイルから読みとったメッセージと共に、ステージ済のファイルをコミットする: + +`git commit --file {{コミットメッセージが書かれたファイルへのパス}}` + +- 変更されたファイルを全て自動的にステージし、メッセージと共にコミットする: + +`git commit -a -m "{{メッセージ}}"` + +- ステージ済のファイルをコミットし、`~/.gitconfig`に設定したGPG鍵で署名する: + +`git commit -S -m "{{メッセージ}}"` + +- 今のステージ済の変更を最後のコミットに付け足し、コミットハッシュを変更する: + +`git commit --amend` + +- 特定のファイル(ステージ済)だけをコミットする: + +`git commit {{ファイルパス1}} {{ファイルパス2}}` + +- ステージ済のファイルが無くても、コミットを作る: + +`git commit -m "{{メッセージ}}" --allow-empty` diff --git a/pages.ja/common/git.md b/pages.ja/common/git.md new file mode 100644 index 0000000000..7985f5abbc --- /dev/null +++ b/pages.ja/common/git.md @@ -0,0 +1,29 @@ +# git + +> 分散型バージョン管理システム +> いくつかのサブコマンドがあります。例えば `commit`, `add`, `branch`, `checkout`, `push`, などです。 これらには使用方法についての独自のドキュメントがあり、 `tldr git subcommand` で見ることができます。 +> 詳しくはこちら: . + +- Gitのバージョンを確認する: + +`git --version` + +- Git全体のヘルプを見る: + +`git --help` + +- Gitのサブコマンドのヘルプを見る (例えば `clone`, `add`, `push`, `log`, など): + +`git help {{サブコマンド}}` + +- Gitのサブコマンドを実行する: + +`git {{サブコマンド}}` + +- Gitのサブコマンドを、任意のリポジトリのルートパスを指定して実行する: + +`git -C {{ディレクトリパス}} {{サブコマンド}}` + +- Gitのサブコマンドを、指定された設定値で実行する: + +`git -c '{{config.key}}={{値}}' {{サブコマンド}}` diff --git a/pages.ja/common/gnmic-sub.md b/pages.ja/common/gnmic-sub.md new file mode 100644 index 0000000000..d6a7703f6e --- /dev/null +++ b/pages.ja/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> このコマンドは `gnmic subscribe` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr gnmic subscribe` diff --git a/pages.ja/common/google-chrome.md b/pages.ja/common/google-chrome.md new file mode 100644 index 0000000000..e67830cf37 --- /dev/null +++ b/pages.ja/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> このコマンドは `chromium` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr chromium` diff --git a/pages.ja/common/history.md b/pages.ja/common/history.md new file mode 100644 index 0000000000..fdda139889 --- /dev/null +++ b/pages.ja/common/history.md @@ -0,0 +1,24 @@ +# history + +> コマンドラインの履歴です。 +> 詳しくはこちら: . + +- コマンドの履歴一覧を行番号付きで表示する: + +`history` + +- 直近の20個のコマンドを表示する (`zsh` では20個目から始まるすべてのコマンドを表示する): + +`history {{20}}` + +- コマンド履歴のリストを消去する (現在の `bash` シェルに対してのみ): + +`history -c` + +- コマンド履歴ファイルを現在の `bash` シェルのコマンド履歴で上書きする (履歴を削除するために `history -c` と組み合わせることがよくあります): + +`history -w` + +- 指定されたオフセットの履歴エントリーを削除する: + +`history -d {{オフセット}}` diff --git a/pages.ja/common/htop.md b/pages.ja/common/htop.md new file mode 100644 index 0000000000..290f1d6781 --- /dev/null +++ b/pages.ja/common/htop.md @@ -0,0 +1,28 @@ +# htop + +> 実行中のプロセスに関する動的なリアルタイム情報を表示する。 `top` の拡張版。 +> 詳しくはこちら: . + +- htop を起動: + +`htop` + +- 特定のユーザが所有するプロセスを表示する htop を起動する: + +`htop --user {{ユーザー名}}` + +- 指定した `並べ替え項目` でプロセスをソートする (利用可能なオプションは `htop --sort help` を使用する): + +`htop --sort {{並べ替え項目}}` + +- htop 実行中の対話型コマンドを見る: + +`?` + +- 別のタブに切り替える: + +`tab` + +- ヘルプを表示する: + +`htop --help` diff --git a/pages.ja/common/hx.md b/pages.ja/common/hx.md new file mode 100644 index 0000000000..f010c50da5 --- /dev/null +++ b/pages.ja/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> このコマンドは `helix` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr helix` diff --git a/pages.ja/common/kafkacat.md b/pages.ja/common/kafkacat.md new file mode 100644 index 0000000000..ae9940356f --- /dev/null +++ b/pages.ja/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> このコマンドは `kcat` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr kcat` diff --git a/pages.ja/common/lzcat.md b/pages.ja/common/lzcat.md new file mode 100644 index 0000000000..b3cfe39a3b --- /dev/null +++ b/pages.ja/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> このコマンドは `xz` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr xz` diff --git a/pages.ja/common/lzma.md b/pages.ja/common/lzma.md new file mode 100644 index 0000000000..5090cd3ec2 --- /dev/null +++ b/pages.ja/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> このコマンドは `xz` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr xz` diff --git a/pages.ja/common/nm-classic.md b/pages.ja/common/nm-classic.md new file mode 100644 index 0000000000..050c6fd908 --- /dev/null +++ b/pages.ja/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> このコマンドは `nm` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr nm` diff --git a/pages.ja/common/ntl.md b/pages.ja/common/ntl.md new file mode 100644 index 0000000000..3f83c4cb01 --- /dev/null +++ b/pages.ja/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> このコマンドは `netlify` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr netlify` diff --git a/pages.ja/common/ptpython3.md b/pages.ja/common/ptpython3.md new file mode 100644 index 0000000000..fe51467e35 --- /dev/null +++ b/pages.ja/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> このコマンドは `ptpython` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr ptpython` diff --git a/pages.ja/common/pyenv.md b/pages.ja/common/pyenv.md new file mode 100644 index 0000000000..a1d1c9760e --- /dev/null +++ b/pages.ja/common/pyenv.md @@ -0,0 +1,32 @@ +# pyenv + +> 複数バージョンのPythonを容易に切り替えします。 +> 詳しくはこちら: . + +- 利用可能なコマンド全てをリスト表示する: + +`pyenv commands` + +- `${PYENV_ROOT}/versions`ディレクトリ下のPythonバージョン全てをリスト表示する: + +`pyenv versions` + +- アップストリーム(Python公式)からインストール可能なPythonのバージョン全てをリスト表示する: + +`pyenv install --list` + +- `${PYENV_ROOT}/versions`ディレクトリ下に指定のPythonバージョンをインストールする: + +`pyenv install {{2.7.10}}` + +- `${PYENV_ROOT}/versions`ディレクトリ下の指定のPythonバージョンをアンインストールする: + +`pyenv uninstall {{2.7.10}}` + +- 現在のマシンでグローバルに使用するPythonバージョンをセットする: + +`pyenv global {{2.7.10}}` + +- カレントディレクトリとその下にある全てのディレクトリ内で使用するPythonバージョンをセットする: + +`pyenv local {{2.7.10}}` diff --git a/pages.ja/common/python3.md b/pages.ja/common/python3.md new file mode 100644 index 0000000000..22ab637a9e --- /dev/null +++ b/pages.ja/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> このコマンドは `python` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr python` diff --git a/pages.ja/common/rcat.md b/pages.ja/common/rcat.md new file mode 100644 index 0000000000..981c48b711 --- /dev/null +++ b/pages.ja/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> このコマンドは `rc` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr rc` diff --git a/pages.ja/common/ripgrep.md b/pages.ja/common/ripgrep.md new file mode 100644 index 0000000000..c2c40b6baf --- /dev/null +++ b/pages.ja/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> このコマンドは `rg` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr rg` diff --git a/pages.ja/common/scrapy.md b/pages.ja/common/scrapy.md new file mode 100644 index 0000000000..63251698d9 --- /dev/null +++ b/pages.ja/common/scrapy.md @@ -0,0 +1,32 @@ +# scrapy + +> ウェブクローリングのフレームワークです。 +> 詳しくはこちら: . + +- プロジェクトを作成する: + +`scrapy startproject {{プロジェクト名}}` + +- スパイダーを作成する (プロジェクトのディレクトリ内での実行): + +`scrapy genspider {{スパイダー名}} {{ウェブサイトのドメイン名}}` + +- スパイダーを編集する (プロジェクトのディレクトリ内での実行): + +`scrapy edit {{スパイダー名}}` + +- スパイダーを実行する (プロジェクトのディレクトリ内での実行): + +`scrapy crawl {{スパイダー名}}` + +- Scrapyが見るようにWebページを取得しソースを`stdout`(標準出力)に表示する: + +`scrapy fetch {{url}}` + +- Scrapyが見ているようにデフォルトブラウザ内でウェブページを開く(より応答に忠実であるようにするためにJavaScriptを無効化している): + +`scrapy view {{url}}` + +- URL用のScrapyシェルを開き、Python(もしくは可能であればIPython)シェル内でページソースとの対話式でのやり取りを可能にする: + +`scrapy shell {{url}}` diff --git a/pages.ja/common/tmux.md b/pages.ja/common/tmux.md new file mode 100644 index 0000000000..781209c1d7 --- /dev/null +++ b/pages.ja/common/tmux.md @@ -0,0 +1,37 @@ +# tmux + +> 端末のマルチプレクサ。ウィンドウやペインなどによる複数セッションを可能にします。 +> `zellij` と `screen` も参照してください。 +> 詳しくはこちら: . + +- 新規セッションの開始: + +`tmux` + +- 新しい名前付きセッションを開始する: + +`tmux new -s {{セッション名}}` + +- 既存のセッションを一覧表示: + +`tmux ls` + +- 直近に使用したセッションにアタッチ: + +`tmux attach` + +- 現在のセッションからの切り離し(tmuxセッション内): + +`Ctrl-B d` + +- 新しいウィンドウを作成する(tmuxセッション内): + +`Ctrl-B c` + +- セッションとウィンドウの切り替え(tmuxセッション内): + +`Ctrl-B w` + +- 名前を指定してセッションを終了させる: + +`tmux kill-session -t {{セッション名}}` diff --git a/pages.ja/common/todoman.md b/pages.ja/common/todoman.md new file mode 100644 index 0000000000..98d7f94deb --- /dev/null +++ b/pages.ja/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> このコマンドは `todo` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr todo` diff --git a/pages.ja/common/transmission.md b/pages.ja/common/transmission.md new file mode 100644 index 0000000000..cdb2e3117d --- /dev/null +++ b/pages.ja/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> このコマンドは `transmission-daemon` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr transmission-daemon` diff --git a/pages.ja/common/unlzma.md b/pages.ja/common/unlzma.md new file mode 100644 index 0000000000..a5f65c0263 --- /dev/null +++ b/pages.ja/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> このコマンドは `xz` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr xz` diff --git a/pages.ja/common/unxz.md b/pages.ja/common/unxz.md new file mode 100644 index 0000000000..e34d23d585 --- /dev/null +++ b/pages.ja/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> このコマンドは `xz` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr xz` diff --git a/pages.ja/common/xzcat.md b/pages.ja/common/xzcat.md new file mode 100644 index 0000000000..07199f5859 --- /dev/null +++ b/pages.ja/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> このコマンドは `xz` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr xz` diff --git a/pages.ja/linux/alternatives.md b/pages.ja/linux/alternatives.md new file mode 100644 index 0000000000..986c2fb811 --- /dev/null +++ b/pages.ja/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> このコマンドは `update-alternatives` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr update-alternatives` diff --git a/pages.ja/linux/batcat.md b/pages.ja/linux/batcat.md new file mode 100644 index 0000000000..1ed8ec77a8 --- /dev/null +++ b/pages.ja/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> このコマンドは `bat` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr bat` diff --git a/pages.ja/linux/bspwm.md b/pages.ja/linux/bspwm.md new file mode 100644 index 0000000000..916ecfb676 --- /dev/null +++ b/pages.ja/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> このコマンドは `bspc` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr bspc` diff --git a/pages.ja/linux/cc.md b/pages.ja/linux/cc.md new file mode 100644 index 0000000000..c25c4d9cb2 --- /dev/null +++ b/pages.ja/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> このコマンドは `gcc` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr gcc` diff --git a/pages.ja/linux/cgroups.md b/pages.ja/linux/cgroups.md new file mode 100644 index 0000000000..76a2fb433d --- /dev/null +++ b/pages.ja/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> このコマンドは `cgclassify` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr cgclassify` diff --git a/pages.ja/linux/ip-route-list.md b/pages.ja/linux/ip-route-list.md new file mode 100644 index 0000000000..c41c498082 --- /dev/null +++ b/pages.ja/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> このコマンドは `ip-route-show` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr ip-route-show` diff --git a/pages.ja/linux/megadl.md b/pages.ja/linux/megadl.md new file mode 100644 index 0000000000..2f99c622fb --- /dev/null +++ b/pages.ja/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> このコマンドは `megatools-dl` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr megatools-dl` diff --git a/pages.ja/linux/ubuntu-bug.md b/pages.ja/linux/ubuntu-bug.md new file mode 100644 index 0000000000..dab067461a --- /dev/null +++ b/pages.ja/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> このコマンドは `apport-bug` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr apport-bug` diff --git a/pages.ja/linux/whatis.md b/pages.ja/linux/whatis.md new file mode 100644 index 0000000000..f8cc08df64 --- /dev/null +++ b/pages.ja/linux/whatis.md @@ -0,0 +1,24 @@ +# whatis + +> マニュアルページから、一行の説明文を表示します。 +> 詳しくはこちら: . + +- manページの説明文を表示する: + +`whatis {{コマンド}}` + +- 説明文を行末で切らないで表示する: + +`whatis --long {{コマンド}}` + +- globパターンにマッチするすべてのコマンドの説明文を表示する: + +`whatis --wildcard {{net*}}` + +- 正規表現でmanページの説明文を検索する: + +`whatis --regex '{{wish[0-9]\.[0-9]}}'` + +- 言語を指定して説明文で表示する (`manpage-{{ja}}` パッケージが必要です): + +`whatis --locale={{ja}} {{コマンド}}` diff --git a/pages.ja/osx/aa.md b/pages.ja/osx/aa.md new file mode 100644 index 0000000000..340aabd483 --- /dev/null +++ b/pages.ja/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> このコマンドは `yaa` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr yaa` diff --git a/pages.ja/osx/g[.md b/pages.ja/osx/g[.md new file mode 100644 index 0000000000..f46433a6e6 --- /dev/null +++ b/pages.ja/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> このコマンドは `-p linux [` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux [` diff --git a/pages.ja/osx/gawk.md b/pages.ja/osx/gawk.md new file mode 100644 index 0000000000..b894c0592a --- /dev/null +++ b/pages.ja/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> このコマンドは `-p linux awk` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux awk` diff --git a/pages.ja/osx/gb2sum.md b/pages.ja/osx/gb2sum.md new file mode 100644 index 0000000000..d9c87061da --- /dev/null +++ b/pages.ja/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> このコマンドは `-p linux b2sum` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux b2sum` diff --git a/pages.ja/osx/gbase32.md b/pages.ja/osx/gbase32.md new file mode 100644 index 0000000000..88ee28f785 --- /dev/null +++ b/pages.ja/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> このコマンドは `-p linux base32` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux base32` diff --git a/pages.ja/osx/gbase64.md b/pages.ja/osx/gbase64.md new file mode 100644 index 0000000000..b4a582a5c5 --- /dev/null +++ b/pages.ja/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> このコマンドは `-p linux base64` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux base64` diff --git a/pages.ja/osx/gbasename.md b/pages.ja/osx/gbasename.md new file mode 100644 index 0000000000..6141a688ab --- /dev/null +++ b/pages.ja/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> このコマンドは `-p linux basename` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux basename` diff --git a/pages.ja/osx/gbasenc.md b/pages.ja/osx/gbasenc.md new file mode 100644 index 0000000000..624d1501b9 --- /dev/null +++ b/pages.ja/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> このコマンドは `-p linux basenc` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux basenc` diff --git a/pages.ja/osx/gcat.md b/pages.ja/osx/gcat.md new file mode 100644 index 0000000000..11d3be9b9a --- /dev/null +++ b/pages.ja/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> このコマンドは `-p linux cat` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux cat` diff --git a/pages.ja/osx/gchcon.md b/pages.ja/osx/gchcon.md new file mode 100644 index 0000000000..5fbb7d48d1 --- /dev/null +++ b/pages.ja/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> このコマンドは `-p linux chcon` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux chcon` diff --git a/pages.ja/osx/gchgrp.md b/pages.ja/osx/gchgrp.md new file mode 100644 index 0000000000..72bd2af5c2 --- /dev/null +++ b/pages.ja/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> このコマンドは `-p linux chgrp` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux chgrp` diff --git a/pages.ja/osx/gchmod.md b/pages.ja/osx/gchmod.md new file mode 100644 index 0000000000..1ebe106c5b --- /dev/null +++ b/pages.ja/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> このコマンドは `-p linux chmod` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux chmod` diff --git a/pages.ja/osx/gchown.md b/pages.ja/osx/gchown.md new file mode 100644 index 0000000000..b13b8c2260 --- /dev/null +++ b/pages.ja/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> このコマンドは `-p linux chown` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux chown` diff --git a/pages.ja/osx/gchroot.md b/pages.ja/osx/gchroot.md new file mode 100644 index 0000000000..c971228a03 --- /dev/null +++ b/pages.ja/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> このコマンドは `-p linux chroot` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux chroot` diff --git a/pages.ja/osx/gcksum.md b/pages.ja/osx/gcksum.md new file mode 100644 index 0000000000..3bef43abe8 --- /dev/null +++ b/pages.ja/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> このコマンドは `-p linux cksum` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux cksum` diff --git a/pages.ja/osx/gcomm.md b/pages.ja/osx/gcomm.md new file mode 100644 index 0000000000..1658b03fce --- /dev/null +++ b/pages.ja/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> このコマンドは `-p linux comm` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux comm` diff --git a/pages.ja/osx/gcp.md b/pages.ja/osx/gcp.md new file mode 100644 index 0000000000..32588ea9d6 --- /dev/null +++ b/pages.ja/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> このコマンドは `-p linux cp` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux cp` diff --git a/pages.ja/osx/gcsplit.md b/pages.ja/osx/gcsplit.md new file mode 100644 index 0000000000..d26b7654f6 --- /dev/null +++ b/pages.ja/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> このコマンドは `-p linux csplit` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux csplit` diff --git a/pages.ja/osx/gcut.md b/pages.ja/osx/gcut.md new file mode 100644 index 0000000000..3bb7be0439 --- /dev/null +++ b/pages.ja/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> このコマンドは `-p linux cut` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux cut` diff --git a/pages.ja/osx/gdate.md b/pages.ja/osx/gdate.md new file mode 100644 index 0000000000..829738a6e3 --- /dev/null +++ b/pages.ja/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> このコマンドは `-p linux date` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux date` diff --git a/pages.ja/osx/gdd.md b/pages.ja/osx/gdd.md new file mode 100644 index 0000000000..186be4ff94 --- /dev/null +++ b/pages.ja/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> このコマンドは `-p linux dd` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux dd` diff --git a/pages.ja/osx/gdf.md b/pages.ja/osx/gdf.md new file mode 100644 index 0000000000..cb60502318 --- /dev/null +++ b/pages.ja/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> このコマンドは `-p linux df` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux df` diff --git a/pages.ja/osx/gdir.md b/pages.ja/osx/gdir.md new file mode 100644 index 0000000000..99e8a45a3e --- /dev/null +++ b/pages.ja/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> このコマンドは `-p linux dir` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux dir` diff --git a/pages.ja/osx/gdircolors.md b/pages.ja/osx/gdircolors.md new file mode 100644 index 0000000000..9df1008ee2 --- /dev/null +++ b/pages.ja/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> このコマンドは `-p linux dircolors` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux dircolors` diff --git a/pages.ja/osx/gdirname.md b/pages.ja/osx/gdirname.md new file mode 100644 index 0000000000..6445cd7911 --- /dev/null +++ b/pages.ja/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> このコマンドは `-p linux dirname` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux dirname` diff --git a/pages.ja/osx/gdnsdomainname.md b/pages.ja/osx/gdnsdomainname.md new file mode 100644 index 0000000000..2bb991fedb --- /dev/null +++ b/pages.ja/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> このコマンドは `-p linux dnsdomainname` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux dnsdomainname` diff --git a/pages.ja/osx/gecho.md b/pages.ja/osx/gecho.md new file mode 100644 index 0000000000..0ddc6d43dc --- /dev/null +++ b/pages.ja/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> このコマンドは `-p linux echo` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux echo` diff --git a/pages.ja/osx/ged.md b/pages.ja/osx/ged.md new file mode 100644 index 0000000000..5d3a8d03af --- /dev/null +++ b/pages.ja/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> このコマンドは `-p linux ed` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux ed` diff --git a/pages.ja/osx/gegrep.md b/pages.ja/osx/gegrep.md new file mode 100644 index 0000000000..8392bb9ba0 --- /dev/null +++ b/pages.ja/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> このコマンドは `-p linux egrep` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux egrep` diff --git a/pages.ja/osx/genv.md b/pages.ja/osx/genv.md new file mode 100644 index 0000000000..75296ea407 --- /dev/null +++ b/pages.ja/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> このコマンドは `-p linux env` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux env` diff --git a/pages.ja/osx/gexpand.md b/pages.ja/osx/gexpand.md new file mode 100644 index 0000000000..ea9a681e48 --- /dev/null +++ b/pages.ja/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> このコマンドは `-p linux expand` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux expand` diff --git a/pages.ja/osx/gexpr.md b/pages.ja/osx/gexpr.md new file mode 100644 index 0000000000..56d21b3ed8 --- /dev/null +++ b/pages.ja/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> このコマンドは `-p linux expr` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux expr` diff --git a/pages.ja/osx/gfactor.md b/pages.ja/osx/gfactor.md new file mode 100644 index 0000000000..c5e9f105cd --- /dev/null +++ b/pages.ja/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> このコマンドは `-p linux factor` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux factor` diff --git a/pages.ja/osx/gfalse.md b/pages.ja/osx/gfalse.md new file mode 100644 index 0000000000..b2275f3ed1 --- /dev/null +++ b/pages.ja/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> このコマンドは `-p linux false` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux false` diff --git a/pages.ja/osx/gfgrep.md b/pages.ja/osx/gfgrep.md new file mode 100644 index 0000000000..1fdfe58ab8 --- /dev/null +++ b/pages.ja/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> このコマンドは `-p linux fgrep` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux fgrep` diff --git a/pages.ja/osx/gfind.md b/pages.ja/osx/gfind.md new file mode 100644 index 0000000000..09250f3c62 --- /dev/null +++ b/pages.ja/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> このコマンドは `-p linux find` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux find` diff --git a/pages.ja/osx/gfmt.md b/pages.ja/osx/gfmt.md new file mode 100644 index 0000000000..6728ff10ac --- /dev/null +++ b/pages.ja/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> このコマンドは `-p linux fmt` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux fmt` diff --git a/pages.ja/osx/gfold.md b/pages.ja/osx/gfold.md new file mode 100644 index 0000000000..548c784493 --- /dev/null +++ b/pages.ja/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> このコマンドは `-p linux fold` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux fold` diff --git a/pages.ja/osx/gftp.md b/pages.ja/osx/gftp.md new file mode 100644 index 0000000000..b35b71308a --- /dev/null +++ b/pages.ja/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> このコマンドは `-p linux ftp` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux ftp` diff --git a/pages.ja/osx/ggrep.md b/pages.ja/osx/ggrep.md new file mode 100644 index 0000000000..df39d34ab6 --- /dev/null +++ b/pages.ja/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> このコマンドは `-p linux grep` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux grep` diff --git a/pages.ja/osx/ggroups.md b/pages.ja/osx/ggroups.md new file mode 100644 index 0000000000..856114f521 --- /dev/null +++ b/pages.ja/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> このコマンドは `-p linux groups` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux groups` diff --git a/pages.ja/osx/ghead.md b/pages.ja/osx/ghead.md new file mode 100644 index 0000000000..a804edb927 --- /dev/null +++ b/pages.ja/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> このコマンドは `-p linux head` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux head` diff --git a/pages.ja/osx/ghostid.md b/pages.ja/osx/ghostid.md new file mode 100644 index 0000000000..3c6dce72d5 --- /dev/null +++ b/pages.ja/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> このコマンドは `-p linux hostid` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux hostid` diff --git a/pages.ja/osx/ghostname.md b/pages.ja/osx/ghostname.md new file mode 100644 index 0000000000..72efe91bf1 --- /dev/null +++ b/pages.ja/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> このコマンドは `-p linux hostname` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux hostname` diff --git a/pages.ja/osx/gid.md b/pages.ja/osx/gid.md new file mode 100644 index 0000000000..c107320f2f --- /dev/null +++ b/pages.ja/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> このコマンドは `-p linux id` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux id` diff --git a/pages.ja/osx/gifconfig.md b/pages.ja/osx/gifconfig.md new file mode 100644 index 0000000000..d52fb89201 --- /dev/null +++ b/pages.ja/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> このコマンドは `-p linux ifconfig` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux ifconfig` diff --git a/pages.ja/osx/gindent.md b/pages.ja/osx/gindent.md new file mode 100644 index 0000000000..94b064921d --- /dev/null +++ b/pages.ja/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> このコマンドは `-p linux indent` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux indent` diff --git a/pages.ja/osx/ginstall.md b/pages.ja/osx/ginstall.md new file mode 100644 index 0000000000..a6b0038811 --- /dev/null +++ b/pages.ja/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> このコマンドは `-p linux install` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux install` diff --git a/pages.ja/osx/gjoin.md b/pages.ja/osx/gjoin.md new file mode 100644 index 0000000000..b49163d834 --- /dev/null +++ b/pages.ja/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> このコマンドは `-p linux join` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux join` diff --git a/pages.ja/osx/gkill.md b/pages.ja/osx/gkill.md new file mode 100644 index 0000000000..62d14c038d --- /dev/null +++ b/pages.ja/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> このコマンドは `-p linux kill` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux kill` diff --git a/pages.ja/osx/glibtool.md b/pages.ja/osx/glibtool.md new file mode 100644 index 0000000000..800b784a2c --- /dev/null +++ b/pages.ja/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> このコマンドは `-p linux libtool` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux libtool` diff --git a/pages.ja/osx/glibtoolize.md b/pages.ja/osx/glibtoolize.md new file mode 100644 index 0000000000..c4b0a09402 --- /dev/null +++ b/pages.ja/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> このコマンドは `-p linux libtoolize` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux libtoolize` diff --git a/pages.ja/osx/glink.md b/pages.ja/osx/glink.md new file mode 100644 index 0000000000..b5ff2cd1ab --- /dev/null +++ b/pages.ja/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> このコマンドは `-p linux link` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux link` diff --git a/pages.ja/osx/gln.md b/pages.ja/osx/gln.md new file mode 100644 index 0000000000..fd602509d9 --- /dev/null +++ b/pages.ja/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> このコマンドは `-p linux ln` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux ln` diff --git a/pages.ja/osx/glocate.md b/pages.ja/osx/glocate.md new file mode 100644 index 0000000000..4b789551ee --- /dev/null +++ b/pages.ja/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> このコマンドは `-p linux locate` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux locate` diff --git a/pages.ja/osx/glogger.md b/pages.ja/osx/glogger.md new file mode 100644 index 0000000000..45947aaff8 --- /dev/null +++ b/pages.ja/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> このコマンドは `-p linux logger` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux logger` diff --git a/pages.ja/osx/glogname.md b/pages.ja/osx/glogname.md new file mode 100644 index 0000000000..24ede51d98 --- /dev/null +++ b/pages.ja/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> このコマンドは `-p linux logname` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux logname` diff --git a/pages.ja/osx/gls.md b/pages.ja/osx/gls.md new file mode 100644 index 0000000000..ffc59ab9d4 --- /dev/null +++ b/pages.ja/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> このコマンドは `-p linux ls` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux ls` diff --git a/pages.ja/osx/gmake.md b/pages.ja/osx/gmake.md new file mode 100644 index 0000000000..c711d6b24e --- /dev/null +++ b/pages.ja/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> このコマンドは `-p linux make` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux make` diff --git a/pages.ja/osx/gmd5sum.md b/pages.ja/osx/gmd5sum.md new file mode 100644 index 0000000000..4151970fc1 --- /dev/null +++ b/pages.ja/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> このコマンドは `-p linux md5sum` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux md5sum` diff --git a/pages.ja/osx/gmkdir.md b/pages.ja/osx/gmkdir.md new file mode 100644 index 0000000000..5866faa764 --- /dev/null +++ b/pages.ja/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> このコマンドは `-p linux mkdir` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux mkdir` diff --git a/pages.ja/osx/gmkfifo.md b/pages.ja/osx/gmkfifo.md new file mode 100644 index 0000000000..f29628f82b --- /dev/null +++ b/pages.ja/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> このコマンドは `-p linux mkfifo` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux mkfifo` diff --git a/pages.ja/osx/gmknod.md b/pages.ja/osx/gmknod.md new file mode 100644 index 0000000000..b6c28c2439 --- /dev/null +++ b/pages.ja/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> このコマンドは `-p linux mknod` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux mknod` diff --git a/pages.ja/osx/gmktemp.md b/pages.ja/osx/gmktemp.md new file mode 100644 index 0000000000..15dea87384 --- /dev/null +++ b/pages.ja/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> このコマンドは `-p linux mktemp` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux mktemp` diff --git a/pages.ja/osx/gmv.md b/pages.ja/osx/gmv.md new file mode 100644 index 0000000000..0d15712480 --- /dev/null +++ b/pages.ja/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> このコマンドは `-p linux mv` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux mv` diff --git a/pages.ja/osx/gnice.md b/pages.ja/osx/gnice.md new file mode 100644 index 0000000000..c6eadad463 --- /dev/null +++ b/pages.ja/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> このコマンドは `-p linux nice` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux nice` diff --git a/pages.ja/osx/gnl.md b/pages.ja/osx/gnl.md new file mode 100644 index 0000000000..5bfb692ede --- /dev/null +++ b/pages.ja/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> このコマンドは `-p linux nl` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux nl` diff --git a/pages.ja/osx/gnohup.md b/pages.ja/osx/gnohup.md new file mode 100644 index 0000000000..b6e3814949 --- /dev/null +++ b/pages.ja/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> このコマンドは `-p linux nohup` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux nohup` diff --git a/pages.ja/osx/gnproc.md b/pages.ja/osx/gnproc.md new file mode 100644 index 0000000000..e0b5da9cd9 --- /dev/null +++ b/pages.ja/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> このコマンドは `-p linux nproc` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux nproc` diff --git a/pages.ja/osx/gnumfmt.md b/pages.ja/osx/gnumfmt.md new file mode 100644 index 0000000000..5d68f773d8 --- /dev/null +++ b/pages.ja/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> このコマンドは `-p linux numfmt` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux numfmt` diff --git a/pages.ja/osx/god.md b/pages.ja/osx/god.md new file mode 100644 index 0000000000..925b7adfdf --- /dev/null +++ b/pages.ja/osx/god.md @@ -0,0 +1,7 @@ +# god + +> このコマンドは `-p linux od` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux od` diff --git a/pages.ja/osx/gpaste.md b/pages.ja/osx/gpaste.md new file mode 100644 index 0000000000..993ae86f2f --- /dev/null +++ b/pages.ja/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> このコマンドは `-p linux paste` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux paste` diff --git a/pages.ja/osx/gpathchk.md b/pages.ja/osx/gpathchk.md new file mode 100644 index 0000000000..2bf5df82fc --- /dev/null +++ b/pages.ja/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> このコマンドは `-p linux pathchk` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux pathchk` diff --git a/pages.ja/osx/gping.md b/pages.ja/osx/gping.md new file mode 100644 index 0000000000..f607a2f8ec --- /dev/null +++ b/pages.ja/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> このコマンドは `-p linux ping` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux ping` diff --git a/pages.ja/osx/gping6.md b/pages.ja/osx/gping6.md new file mode 100644 index 0000000000..57430423ae --- /dev/null +++ b/pages.ja/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> このコマンドは `-p linux ping6` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux ping6` diff --git a/pages.ja/osx/gpinky.md b/pages.ja/osx/gpinky.md new file mode 100644 index 0000000000..4ab4a428e6 --- /dev/null +++ b/pages.ja/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> このコマンドは `-p linux pinky` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux pinky` diff --git a/pages.ja/osx/gpr.md b/pages.ja/osx/gpr.md new file mode 100644 index 0000000000..a2c2770b03 --- /dev/null +++ b/pages.ja/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> このコマンドは `-p linux pr` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux pr` diff --git a/pages.ja/osx/gprintenv.md b/pages.ja/osx/gprintenv.md new file mode 100644 index 0000000000..5afeb61cfe --- /dev/null +++ b/pages.ja/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> このコマンドは `-p linux printenv` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux printenv` diff --git a/pages.ja/osx/gprintf.md b/pages.ja/osx/gprintf.md new file mode 100644 index 0000000000..dc792d3c13 --- /dev/null +++ b/pages.ja/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> このコマンドは `-p linux printf` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux printf` diff --git a/pages.ja/osx/gptx.md b/pages.ja/osx/gptx.md new file mode 100644 index 0000000000..d4f4a87981 --- /dev/null +++ b/pages.ja/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> このコマンドは `-p linux ptx` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux ptx` diff --git a/pages.ja/osx/gpwd.md b/pages.ja/osx/gpwd.md new file mode 100644 index 0000000000..0b4d6c0811 --- /dev/null +++ b/pages.ja/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> このコマンドは `-p linux pwd` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux pwd` diff --git a/pages.ja/osx/grcp.md b/pages.ja/osx/grcp.md new file mode 100644 index 0000000000..f770c0eba6 --- /dev/null +++ b/pages.ja/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> このコマンドは `-p linux rcp` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux rcp` diff --git a/pages.ja/osx/greadlink.md b/pages.ja/osx/greadlink.md new file mode 100644 index 0000000000..3f8faf69bb --- /dev/null +++ b/pages.ja/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> このコマンドは `-p linux readlink` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux readlink` diff --git a/pages.ja/osx/grealpath.md b/pages.ja/osx/grealpath.md new file mode 100644 index 0000000000..5a751eb7e0 --- /dev/null +++ b/pages.ja/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> このコマンドは `-p linux realpath` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux realpath` diff --git a/pages.ja/osx/grexec.md b/pages.ja/osx/grexec.md new file mode 100644 index 0000000000..009b50d2a2 --- /dev/null +++ b/pages.ja/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> このコマンドは `-p linux rexec` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux rexec` diff --git a/pages.ja/osx/grlogin.md b/pages.ja/osx/grlogin.md new file mode 100644 index 0000000000..fd14458d09 --- /dev/null +++ b/pages.ja/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> このコマンドは `-p linux rlogin` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux rlogin` diff --git a/pages.ja/osx/grm.md b/pages.ja/osx/grm.md new file mode 100644 index 0000000000..cbd3c49f1c --- /dev/null +++ b/pages.ja/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> このコマンドは `-p linux rm` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux rm` diff --git a/pages.ja/osx/grmdir.md b/pages.ja/osx/grmdir.md new file mode 100644 index 0000000000..1fe41a0abd --- /dev/null +++ b/pages.ja/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> このコマンドは `-p linux rmdir` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux rmdir` diff --git a/pages.ja/osx/grsh.md b/pages.ja/osx/grsh.md new file mode 100644 index 0000000000..658aab7348 --- /dev/null +++ b/pages.ja/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> このコマンドは `-p linux rsh` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux rsh` diff --git a/pages.ja/osx/gruncon.md b/pages.ja/osx/gruncon.md new file mode 100644 index 0000000000..4b71e7f034 --- /dev/null +++ b/pages.ja/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> このコマンドは `-p linux runcon` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux runcon` diff --git a/pages.ja/osx/gsed.md b/pages.ja/osx/gsed.md new file mode 100644 index 0000000000..4877d877d9 --- /dev/null +++ b/pages.ja/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> このコマンドは `-p linux sed` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux sed` diff --git a/pages.ja/osx/gseq.md b/pages.ja/osx/gseq.md new file mode 100644 index 0000000000..3e2dbf9f54 --- /dev/null +++ b/pages.ja/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> このコマンドは `-p linux seq` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux seq` diff --git a/pages.ja/osx/gsha1sum.md b/pages.ja/osx/gsha1sum.md new file mode 100644 index 0000000000..5c89910824 --- /dev/null +++ b/pages.ja/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> このコマンドは `-p linux sha1sum` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux sha1sum` diff --git a/pages.ja/osx/gsha224sum.md b/pages.ja/osx/gsha224sum.md new file mode 100644 index 0000000000..5442f2d0bd --- /dev/null +++ b/pages.ja/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> このコマンドは `-p linux sha224sum` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux sha224sum` diff --git a/pages.ja/osx/gsha256sum.md b/pages.ja/osx/gsha256sum.md new file mode 100644 index 0000000000..6e42c3d800 --- /dev/null +++ b/pages.ja/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> このコマンドは `-p linux sha256sum` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux sha256sum` diff --git a/pages.ja/osx/gsha384sum.md b/pages.ja/osx/gsha384sum.md new file mode 100644 index 0000000000..de3382c931 --- /dev/null +++ b/pages.ja/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> このコマンドは `-p linux sha384sum` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux sha384sum` diff --git a/pages.ja/osx/gsha512sum.md b/pages.ja/osx/gsha512sum.md new file mode 100644 index 0000000000..ee7b1d20c9 --- /dev/null +++ b/pages.ja/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> このコマンドは `-p linux sha512sum` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux sha512sum` diff --git a/pages.ja/osx/gshred.md b/pages.ja/osx/gshred.md new file mode 100644 index 0000000000..56e05fa0d9 --- /dev/null +++ b/pages.ja/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> このコマンドは `-p linux shred` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux shred` diff --git a/pages.ja/osx/gshuf.md b/pages.ja/osx/gshuf.md new file mode 100644 index 0000000000..1bc1f50825 --- /dev/null +++ b/pages.ja/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> このコマンドは `-p linux shuf` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux shuf` diff --git a/pages.ja/osx/gsleep.md b/pages.ja/osx/gsleep.md new file mode 100644 index 0000000000..8cc95a7388 --- /dev/null +++ b/pages.ja/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> このコマンドは `-p linux sleep` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux sleep` diff --git a/pages.ja/osx/gsort.md b/pages.ja/osx/gsort.md new file mode 100644 index 0000000000..30d125e8b3 --- /dev/null +++ b/pages.ja/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> このコマンドは `-p linux sort` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux sort` diff --git a/pages.ja/osx/gsplit.md b/pages.ja/osx/gsplit.md new file mode 100644 index 0000000000..16d1920945 --- /dev/null +++ b/pages.ja/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> このコマンドは `-p linux split` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux split` diff --git a/pages.ja/osx/gstat.md b/pages.ja/osx/gstat.md new file mode 100644 index 0000000000..efbcde3840 --- /dev/null +++ b/pages.ja/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> このコマンドは `-p linux stat` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux stat` diff --git a/pages.ja/osx/gstdbuf.md b/pages.ja/osx/gstdbuf.md new file mode 100644 index 0000000000..781369dc2d --- /dev/null +++ b/pages.ja/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> このコマンドは `-p linux stdbuf` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux stdbuf` diff --git a/pages.ja/osx/gstty.md b/pages.ja/osx/gstty.md new file mode 100644 index 0000000000..7e31ccac9e --- /dev/null +++ b/pages.ja/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> このコマンドは `-p linux stty` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux stty` diff --git a/pages.ja/osx/gsum.md b/pages.ja/osx/gsum.md new file mode 100644 index 0000000000..095ba7085a --- /dev/null +++ b/pages.ja/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> このコマンドは `-p linux sum` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux sum` diff --git a/pages.ja/osx/gsync.md b/pages.ja/osx/gsync.md new file mode 100644 index 0000000000..98c367838a --- /dev/null +++ b/pages.ja/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> このコマンドは `-p linux sync` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux sync` diff --git a/pages.ja/osx/gtac.md b/pages.ja/osx/gtac.md new file mode 100644 index 0000000000..b5c24cb5fd --- /dev/null +++ b/pages.ja/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> このコマンドは `-p linux tac` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux tac` diff --git a/pages.ja/osx/gtail.md b/pages.ja/osx/gtail.md new file mode 100644 index 0000000000..bb9bc620e1 --- /dev/null +++ b/pages.ja/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> このコマンドは `-p linux tail` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux tail` diff --git a/pages.ja/osx/gtalk.md b/pages.ja/osx/gtalk.md new file mode 100644 index 0000000000..b69585fc3b --- /dev/null +++ b/pages.ja/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> このコマンドは `-p linux talk` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux talk` diff --git a/pages.ja/osx/gtar.md b/pages.ja/osx/gtar.md new file mode 100644 index 0000000000..6a110b27fa --- /dev/null +++ b/pages.ja/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> このコマンドは `-p linux tar` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux tar` diff --git a/pages.ja/osx/gtee.md b/pages.ja/osx/gtee.md new file mode 100644 index 0000000000..60f2c597ac --- /dev/null +++ b/pages.ja/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> このコマンドは `-p linux tee` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux tee` diff --git a/pages.ja/osx/gtelnet.md b/pages.ja/osx/gtelnet.md new file mode 100644 index 0000000000..dac7b031ca --- /dev/null +++ b/pages.ja/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> このコマンドは `-p linux telnet` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux telnet` diff --git a/pages.ja/osx/gtest.md b/pages.ja/osx/gtest.md new file mode 100644 index 0000000000..0f3de58103 --- /dev/null +++ b/pages.ja/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> このコマンドは `-p linux test` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux test` diff --git a/pages.ja/osx/gtftp.md b/pages.ja/osx/gtftp.md new file mode 100644 index 0000000000..8ca65b4e81 --- /dev/null +++ b/pages.ja/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> このコマンドは `-p linux tftp` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux tftp` diff --git a/pages.ja/osx/gtime.md b/pages.ja/osx/gtime.md new file mode 100644 index 0000000000..765fc98437 --- /dev/null +++ b/pages.ja/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> このコマンドは `-p linux time` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux time` diff --git a/pages.ja/osx/gtimeout.md b/pages.ja/osx/gtimeout.md new file mode 100644 index 0000000000..ad5c32c708 --- /dev/null +++ b/pages.ja/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> このコマンドは `-p linux timeout` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux timeout` diff --git a/pages.ja/osx/gtouch.md b/pages.ja/osx/gtouch.md new file mode 100644 index 0000000000..25643f6314 --- /dev/null +++ b/pages.ja/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> このコマンドは `-p linux touch` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux touch` diff --git a/pages.ja/osx/gtr.md b/pages.ja/osx/gtr.md new file mode 100644 index 0000000000..1cf45133b0 --- /dev/null +++ b/pages.ja/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> このコマンドは `-p linux tr` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux tr` diff --git a/pages.ja/osx/gtraceroute.md b/pages.ja/osx/gtraceroute.md new file mode 100644 index 0000000000..e277ad3ebf --- /dev/null +++ b/pages.ja/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> このコマンドは `-p linux traceroute` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux traceroute` diff --git a/pages.ja/osx/gtrue.md b/pages.ja/osx/gtrue.md new file mode 100644 index 0000000000..20878ab679 --- /dev/null +++ b/pages.ja/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> このコマンドは `-p linux true` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux true` diff --git a/pages.ja/osx/gtruncate.md b/pages.ja/osx/gtruncate.md new file mode 100644 index 0000000000..20e2b3b39a --- /dev/null +++ b/pages.ja/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> このコマンドは `-p linux truncate` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux truncate` diff --git a/pages.ja/osx/gtsort.md b/pages.ja/osx/gtsort.md new file mode 100644 index 0000000000..704f1056b7 --- /dev/null +++ b/pages.ja/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> このコマンドは `-p linux tsort` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux tsort` diff --git a/pages.ja/osx/gtty.md b/pages.ja/osx/gtty.md new file mode 100644 index 0000000000..b643e81a0f --- /dev/null +++ b/pages.ja/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> このコマンドは `-p linux tty` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux tty` diff --git a/pages.ja/osx/guname.md b/pages.ja/osx/guname.md new file mode 100644 index 0000000000..c219832027 --- /dev/null +++ b/pages.ja/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> このコマンドは `-p linux uname` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux uname` diff --git a/pages.ja/osx/gunexpand.md b/pages.ja/osx/gunexpand.md new file mode 100644 index 0000000000..35cae3278e --- /dev/null +++ b/pages.ja/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> このコマンドは `-p linux unexpand` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux unexpand` diff --git a/pages.ja/osx/guniq.md b/pages.ja/osx/guniq.md new file mode 100644 index 0000000000..2925a2a528 --- /dev/null +++ b/pages.ja/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> このコマンドは `-p linux uniq` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux uniq` diff --git a/pages.ja/osx/gunits.md b/pages.ja/osx/gunits.md new file mode 100644 index 0000000000..61562bc09a --- /dev/null +++ b/pages.ja/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> このコマンドは `-p linux units` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux units` diff --git a/pages.ja/osx/gunlink.md b/pages.ja/osx/gunlink.md new file mode 100644 index 0000000000..95bf47a167 --- /dev/null +++ b/pages.ja/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> このコマンドは `-p linux unlink` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux unlink` diff --git a/pages.ja/osx/gupdatedb.md b/pages.ja/osx/gupdatedb.md new file mode 100644 index 0000000000..fcadfc6be5 --- /dev/null +++ b/pages.ja/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> このコマンドは `-p linux updatedb` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux updatedb` diff --git a/pages.ja/osx/guptime.md b/pages.ja/osx/guptime.md new file mode 100644 index 0000000000..ee878ae182 --- /dev/null +++ b/pages.ja/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> このコマンドは `-p linux uptime` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux uptime` diff --git a/pages.ja/osx/gusers.md b/pages.ja/osx/gusers.md new file mode 100644 index 0000000000..75dc27cafe --- /dev/null +++ b/pages.ja/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> このコマンドは `-p linux users` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux users` diff --git a/pages.ja/osx/gvdir.md b/pages.ja/osx/gvdir.md new file mode 100644 index 0000000000..54f8820cd4 --- /dev/null +++ b/pages.ja/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> このコマンドは `-p linux vdir` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux vdir` diff --git a/pages.ja/osx/gwc.md b/pages.ja/osx/gwc.md new file mode 100644 index 0000000000..7d783a80ef --- /dev/null +++ b/pages.ja/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> このコマンドは `-p linux wc` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux wc` diff --git a/pages.ja/osx/gwhich.md b/pages.ja/osx/gwhich.md new file mode 100644 index 0000000000..f8ceef01a2 --- /dev/null +++ b/pages.ja/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> このコマンドは `-p linux which` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux which` diff --git a/pages.ja/osx/gwho.md b/pages.ja/osx/gwho.md new file mode 100644 index 0000000000..12db023ec3 --- /dev/null +++ b/pages.ja/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> このコマンドは `-p linux who` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux who` diff --git a/pages.ja/osx/gwhoami.md b/pages.ja/osx/gwhoami.md new file mode 100644 index 0000000000..dbc78a17e3 --- /dev/null +++ b/pages.ja/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> このコマンドは `-p linux whoami` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux whoami` diff --git a/pages.ja/osx/gwhois.md b/pages.ja/osx/gwhois.md new file mode 100644 index 0000000000..0e9cd6759b --- /dev/null +++ b/pages.ja/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> このコマンドは `-p linux whois` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux whois` diff --git a/pages.ja/osx/gxargs.md b/pages.ja/osx/gxargs.md new file mode 100644 index 0000000000..af381eb495 --- /dev/null +++ b/pages.ja/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> このコマンドは `-p linux xargs` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux xargs` diff --git a/pages.ja/osx/gyes.md b/pages.ja/osx/gyes.md new file mode 100644 index 0000000000..41c6a5dc9b --- /dev/null +++ b/pages.ja/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> このコマンドは `-p linux yes` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr -p linux yes` diff --git a/pages.ja/osx/launchd.md b/pages.ja/osx/launchd.md new file mode 100644 index 0000000000..9f6c9671c0 --- /dev/null +++ b/pages.ja/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> このコマンドは `launchctl` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr launchctl` diff --git a/pages.ja/windows/chrome.md b/pages.ja/windows/chrome.md new file mode 100644 index 0000000000..5dbe1470e7 --- /dev/null +++ b/pages.ja/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> このコマンドは `chromium` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr chromium` diff --git a/pages.ja/windows/cpush.md b/pages.ja/windows/cpush.md new file mode 100644 index 0000000000..2c6b2e13dd --- /dev/null +++ b/pages.ja/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> このコマンドは `choco-push` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr choco-push` diff --git a/pages.ja/windows/curl.md b/pages.ja/windows/curl.md new file mode 100644 index 0000000000..69ff1956c8 --- /dev/null +++ b/pages.ja/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> このコマンドは `curl -p common` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr curl -p common` diff --git a/pages.ja/windows/iwr.md b/pages.ja/windows/iwr.md new file mode 100644 index 0000000000..3c397636cc --- /dev/null +++ b/pages.ja/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> このコマンドは `invoke-webrequest` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr invoke-webrequest` diff --git a/pages.ja/windows/pwsh-where.md b/pages.ja/windows/pwsh-where.md new file mode 100644 index 0000000000..fb17800a54 --- /dev/null +++ b/pages.ja/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> このコマンドは `Where-Object` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr Where-Object` diff --git a/pages.ja/windows/rd.md b/pages.ja/windows/rd.md new file mode 100644 index 0000000000..1c9c1108fe --- /dev/null +++ b/pages.ja/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> このコマンドは `rmdir` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr rmdir` diff --git a/pages.ja/windows/sls.md b/pages.ja/windows/sls.md new file mode 100644 index 0000000000..10953de4e1 --- /dev/null +++ b/pages.ja/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> このコマンドは `where-object` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr where-object` diff --git a/pages.ja/windows/wget.md b/pages.ja/windows/wget.md new file mode 100644 index 0000000000..185089d6aa --- /dev/null +++ b/pages.ja/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> このコマンドは `wget -p common` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr wget -p common` diff --git a/pages.ko/android/am.md b/pages.ko/android/am.md new file mode 100644 index 0000000000..365705c043 --- /dev/null +++ b/pages.ko/android/am.md @@ -0,0 +1,20 @@ +# am + +> Android 활동 관리자. +> 더 많은 정보: . + +- 특정 활동 시작: + +`am start -n {{com.android.settings/.Settings}}` + +- 데이터와 함께 특정 활동 시작: + +`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}` + +- 특정 액션과 카테고리와 일치하는 활동 시작: + +`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}` + +- intent를 URI로 변환: + +`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}` diff --git a/pages.ko/android/bugreport.md b/pages.ko/android/bugreport.md new file mode 100644 index 0000000000..53f3fbc253 --- /dev/null +++ b/pages.ko/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> Android 장치의 버그 보고서를 표시합니다. +> 이 명령은 `adb shell`을 통해서만 사용할 수 있습니다. +> 더 많은 정보: . + +- Android 장치의 완전한 버그 보고서를 표시: + +`bugreport` diff --git a/pages.ko/common/!.md b/pages.ko/common/!.md new file mode 100644 index 0000000000..a3d681095e --- /dev/null +++ b/pages.ko/common/!.md @@ -0,0 +1,24 @@ +# Exclamation mark + +> 히스토리 명령에서 찾은 명령어로 대체하기 위해 Bash가 내장. +> 더 많은 정보: . + +- 이전에 실행했던 명령을 sudo 권한이 있는 상태로 대체: + +`sudo !!` + +- `history` 명령어를 통해 찾은 줄 번호의 명령으로 대체: + +`!{{숫자}}` + +- 지정된 행의 수만큼 사용된 명령으로 대체: + +`!-{{숫자}}` + +- `문자열`로 시작하는 가장 최근의 명령으로 대체: + +`!{{문자열}}` + +- 가장 최신 명령어의 인수로 대체: + +`{{명령어}} !*` diff --git a/pages.ko/common/7z.md b/pages.ko/common/7z.md index 6ad65c0685..0282c0350c 100644 --- a/pages.ko/common/7z.md +++ b/pages.ko/common/7z.md @@ -1,7 +1,7 @@ # 7z > 높은 압축률을 보여주는 파일 압축 프로그램. -> 더 많은 정보: . +> 더 많은 정보: . - 파일 또는 디렉토리 압축하기: diff --git a/pages.ko/common/7za.md b/pages.ko/common/7za.md index 1b9aa1a70e..e3559e6367 100644 --- a/pages.ko/common/7za.md +++ b/pages.ko/common/7za.md @@ -2,7 +2,7 @@ > 높은 파일 압축률을 보여주는 파일 압축 프로그램. > 더 적은 압축 타입을 지원하지만, 크로스플랫폼인 점을 제외하면 `7z`과 유사합니다. -> 더 많은 정보: . +> 더 많은 정보: . - 파일이나 디렉토리 압축하기: @@ -20,7 +20,7 @@ `7za x {{경로/archive.7z}} -o{{아웃풋/의/경로}}` -- stdout에 압축파일 추출: +- `stdout`에 압축파일 추출: `7za x {{경로/archive.7z}} -so` diff --git a/pages.ko/common/7zr.md b/pages.ko/common/7zr.md index 381fd06fb2..705b7e8337 100644 --- a/pages.ko/common/7zr.md +++ b/pages.ko/common/7zr.md @@ -2,7 +2,7 @@ > 높은 파일압축률을 보여주는 압축 프로그램. > .7z파일들만을 지원하는 `7z`의 독립형 버전. -> 더 많은 정보: . +> 더 많은 정보: . - 파일이나 디렉토리 압축하기: @@ -10,7 +10,7 @@ - 압축파일 암호화 (including file names): -`7zr a {{경로/encrypted.7z}} -p{{비밀번호}} -mhe=on {{경로/archive.7z}}` +`7zr a {{경로/encrypted.7z}} -p{{비밀번호}} -mhe={{on}} {{경로/archive.7z}}` - 기존 디렉토리 경로에 존재하는 7z파일 추출하기: @@ -20,7 +20,7 @@ `7zr x {{경로/archive.7z}} -o{{아웃풋/의/경로}}` -- stdout에 압축파일 추출: +- `stdout`에 압축파일 추출: `7zr x {{경로/archive.7z}} -so` diff --git a/pages.ko/common/ab.md b/pages.ko/common/ab.md index 32328ba56c..d72c18a884 100644 --- a/pages.ko/common/ab.md +++ b/pages.ko/common/ab.md @@ -4,15 +4,19 @@ > 로드 테스트를 수행하는 가장 간단한 도구. > 더 많은 정보: . -- 주어진 URL에 대해 100개의 HTTP GET 요청 실행: +- 지정된 URL에 대해 100개의 HTTP GET 요청 실행: `ab -n {{100}} {{url}}` -- 지정된 URL에 대해 최대 10개의 요청을 동시에 처리하여 100개의 HTTP GET을 실행: +- 지정된 URL에 대해 100개의 HTTP GET 요청을 최대 10개의 요청을 동시에 처리하며 실행: `ab -n {{100}} -c {{10}} {{url}}` -- 생존을 유지하며 사용: +- 지정된 파일의 JSON 페이로드를 사용하여 URL에 대해 100개의 HTTP POST 요청 실행: + +`ab -n {{100}} -T {{application/json}} -p {{경로/대상/파일.json}} {{url}}` + +- HTTP [K]eep Alive 사용, 즉 하나의 HTTP 세션 내에서 여러 요청을 수행: `ab -k {{url}}` diff --git a/pages.ko/common/ac.md b/pages.ko/common/ac.md new file mode 100644 index 0000000000..99146e8354 --- /dev/null +++ b/pages.ko/common/ac.md @@ -0,0 +1,20 @@ +# ac + +> 사용자들이 시스템에 얼마나 오랫동안 접속해 있는지에 대한 통계 정보를 표시. +> 더 많은 정보: . + +- 현재 사용자의 연결된 시간을 시간 단위로 출력: + +`ac` + +- 모든 사용자의 연결된 시간을 시간 단위로 출력: + +`ac -p` + +- 특정 사용자의 연결된 시간을 시간 단위로 출력: + +`ac -p {{사용자 명}}` + +- 특정 사용자의 연결된 시간을 평균 시간과 총 접속 시간을 일 단위로 출력: + +`ac -dp {{사용자 명}}` diff --git a/pages.ko/common/act.md b/pages.ko/common/act.md index 88bade2878..bade275c57 100644 --- a/pages.ko/common/act.md +++ b/pages.ko/common/act.md @@ -26,3 +26,7 @@ - 자세한 로그 표시: `act -v` + +- 특정 워크플로우 실행: + +`act push -W {{경로/대상/워크플로우}}` diff --git a/pages.ko/common/alex.md b/pages.ko/common/alex.md index 438b4655ff..6ff98c35b8 100644 --- a/pages.ko/common/alex.md +++ b/pages.ko/common/alex.md @@ -4,7 +4,7 @@ > 이것은 당신이 선호 성별, 양극화, 인종 관련, 종교에 대한 고려가 불분명하거나 다른 문구가 아닌 문구를 찾는데 도움이 됩니다. > 더 많은 정보: . -- stdin으로부터 텍스트 분석: +- `stdin`으로부터 텍스트 분석: `echo {{His network looks good}} | alex --stdin` diff --git a/pages.ko/common/ant.md b/pages.ko/common/ant.md new file mode 100644 index 0000000000..d114827db8 --- /dev/null +++ b/pages.ko/common/ant.md @@ -0,0 +1,25 @@ +# ant + +> Apache Ant. +> 자바 기반 프로젝트를 빌드하고 관리하는 도구. +> 더 많은 정보: . + +- 기본 빌드 파일인 `build.xml`로 프로젝트 빌드: + +`ant` + +- 기본 빌드 파일인 `build.xml`이 아니라 지정된 빌드 파일로 프로젝트 빌드: + +`ant -f {{buildfile.xml}}` + +- 이 프로젝트에 정의된 타겟들에 대한 정보 출력: + +`ant -p` + +- 디버깅 정보를 함께 출력: + +`ant -d` + +- 실패한 타겟(들)에 의존하지 않는 모든 타겟을 실행: + +`ant -k` diff --git a/pages.ko/common/apg.md b/pages.ko/common/apg.md index 97ace692be..5e701c266e 100644 --- a/pages.ko/common/apg.md +++ b/pages.ko/common/apg.md @@ -21,4 +21,4 @@ - 사전에 나타나지 않는 암호를 생성(사전 파일을 제공해야함): -`apg -r {{디렉토리_파일}}` +`apg -r {{경로/대상/디렉토리_파일}}` diff --git a/pages.ko/common/arp.md b/pages.ko/common/arp.md index 7d583adf05..f7911c31a9 100644 --- a/pages.ko/common/arp.md +++ b/pages.ko/common/arp.md @@ -7,10 +7,6 @@ `arp -a` -- 전체 캐시 삭제: - -`sudo arp -a -d` - - 특정 엔트리 삭제: `arp -d {{address}}` diff --git a/pages.ko/common/asciinema.md b/pages.ko/common/asciinema.md index a52d3db5ea..e5106c9399 100644 --- a/pages.ko/common/asciinema.md +++ b/pages.ko/common/asciinema.md @@ -1,7 +1,7 @@ # asciinema > 터미널 세션을 녹음하고 재생하며 선택적으로 asciinema.org에서 공유합니다. -> 더 많은 정보: . +> 더 많은 정보: . - `asciinema` 로컬 설치와 with an asciinema.org 계정을 연결하기: diff --git a/pages.ko/common/assimp.md b/pages.ko/common/assimp.md index 6ff1c06150..be33643b4c 100644 --- a/pages.ko/common/assimp.md +++ b/pages.ko/common/assimp.md @@ -2,7 +2,7 @@ > Open Asset Import Library 위한 Command-line 클라이언트. > 40 +3D 파일 형식을 지원하고 몇 개의 유명한 3D포맷으로 내보낼 수 있습니다. -> 더 많은 정보: . +> 더 많은 정보: . - 지원되는 모든 가져오기 형식을 나열: diff --git a/pages.ko/common/astyle.md b/pages.ko/common/astyle.md index 1f59da9817..b294d139dc 100644 --- a/pages.ko/common/astyle.md +++ b/pages.ko/common/astyle.md @@ -2,7 +2,7 @@ > C, C ++, C # 및 Java 프로그래밍 언어에 대한 소스 코드 인덴터, 포맷터 및 미화기. > 실행 시 원본 파일의 사본은 원래 파일 이름에 ".orig"가 추가된 상태로 작성된다. -> 더 많은 정보: . +> 더 많은 정보: . - 들여쓰기 당 4개의 공백의 기본 스타일을 적용하고 형식 변경 없도록 적용: diff --git a/pages.ko/common/atom.md b/pages.ko/common/atom.md index 4b658d72c8..5def8ab562 100644 --- a/pages.ko/common/atom.md +++ b/pages.ko/common/atom.md @@ -1,25 +1,29 @@ # atom -> 플러그 기능이 있는 교차 플랫폼 텍스트 편집기. -> 플러그는 `apm`에 의해 관리됩니다. +> 플러그인 기능이 있는 크로스 플랫폼 텍스트 편집기. +> 플러그인은 `apm`에 의해 관리됩니다. > 더 많은 정보: . - 파일이나 디렉토리 열기: -`atom {{경로/파일명_또는_디렉토리명}}` +`atom {{경로/대상/파일명_또는_디렉토리명}}` - 새로운 창에서 파일이나 디렉토리 열기: -`atom -n {{경로/파일명_또는_디렉토리명}}` +`atom -n {{경로/대상/파일명_또는_디렉토리명}}` - 현재 창에서 파일이나 디렉토리 열기: -`atom --add {{경로/파일명_또는_디렉토리명}}` +`atom --add {{경로/대상/파일명_또는_디렉토리명}}` -- 안전모드에서 atom 열기Open atom in safe mode (추가 패키지를 로드하지 마시오): +- 안전모드에서 atom 열기 (추가 패키지 로드 없이): `atom --safe` -- 백그라운드에서 fork하지 않도록 막기, atom을 터미널에 부착합니다: +- Atom을 백그라운드로 포크하는 대신 터미널에 연결된 채로 유지: `atom --foreground` + +- Atom이 닫힐 때까지 터미널에서 대기 (Git 커밋 에디터에 유용): + +`atom --wait` diff --git a/pages.ko/common/aws-backup.md b/pages.ko/common/aws-backup.md new file mode 100644 index 0000000000..d83ca5a909 --- /dev/null +++ b/pages.ko/common/aws-backup.md @@ -0,0 +1,24 @@ +# aws backup + +> Amazon Web Services와 관련 데이터를 보호하기 위해 설계된 통합 백업 서비스. +> 더 많은 정보: https://docs.aws.amazon.com/cli/latest/reference/backup/index.html. + +- 특정 BackupPlanId에 대한 백업 계획 세부 정보 반환: + +`aws backup get-backup-plan --backup-plan-id {{id}}` + +- 특정 백업 계획 이름과 백업 규칙을 사용해 백업 계획 생성: + +`aws backup create-backup-plan --backup-plan {{plan}}` + +- 특정 백업 계획 삭제: + +`aws backup delete-backup-plan --backup-plan-id {{id}}` + +- 현재 계정에 대한 모든 활성 백업 계획 목록 반환: + +`aws backup list-backup-plans` + +- 보고서 작업에 대한 세부 정보 표시: + +`aws backup list-report-jobs` diff --git a/pages.ko/common/aws-batch.md b/pages.ko/common/aws-batch.md new file mode 100644 index 0000000000..ecfe30a0c5 --- /dev/null +++ b/pages.ko/common/aws-batch.md @@ -0,0 +1,28 @@ +# aws batch + +> AWS Batch를 통해 배치 컴퓨팅 워크로드를 실행합니다. +> 더 많은 정보: . + +- 실행 중인 배치 작업 목록: + +`aws batch list-jobs --job-queue {{queue_name}}` + +- 컴퓨팅 환경 생성: + +`aws batch create-compute-environment --compute-environment-name {{compute_environment_name}} --type {{type}}` + +- 배치 작업 큐 생성: + +`aws batch create-job-queue --job-queue-name {{queue_name}} --priority {{priority}} --compute-environment-order {{compute_environment}}` + +- 작업 제출: + +`aws batch submit-job --job-name {{job_name}} --job-queue {{job_queue}} --job-definition {{job_definition}}` + +- 배치 작업 목록 설명: + +`aws batch describe-jobs --jobs {{jobs}}` + +- 작업 취소: + +`aws batch cancel-job --job-id {{job_id}} --reason {{reason}}` diff --git a/pages.ko/common/aws-cloud9.md b/pages.ko/common/aws-cloud9.md new file mode 100644 index 0000000000..24cf3442ae --- /dev/null +++ b/pages.ko/common/aws-cloud9.md @@ -0,0 +1,32 @@ +# aws cloud9 + +> AWS Cloud9은 클라우드에서 소프트웨어를 작성, 빌드, 실행, 테스트, 디버그 및 릴리스하는 도구 모음입니다. +> 더 많은 정보: . + +- Cloud9 개발 환경 식별자 목록 가져오기: + +`aws cloud9 list-environments` + +- Cloud9 개발 환경 만들기: + +`aws cloud9 create-environment-ec2 --name {{name}} --instance-type {{instance_type}}` + +- Cloud9 개발 환경에 대한 정보 표시: + +`aws cloud9 describe-environments --environment-ids {{environment_ids}}` + +- Cloud9 개발 환경에 환경 멤버 추가: + +`aws cloud9 create-environment-membership --environment-id {{environment_id}} --user-arn {{user_arn}} --permissions {{permissions}}` + +- Cloud9 개발 환경에 대한 상태 정보 표시: + +`aws cloud9 describe-environment-status --environment-id {{environment_id}}` + +- Cloud9 환경 삭제: + +`aws cloud9 delete-environment --environment-id {{environment_id}}` + +- 개발 환경에서 환경 멤버 삭제: + +`aws cloud9 delete-environment-membership --environment-id {{environment_id}} --user-arn {{user_arn}}` diff --git a/pages.ko/common/aws-cloudwatch.md b/pages.ko/common/aws-cloudwatch.md new file mode 100644 index 0000000000..14bf05429f --- /dev/null +++ b/pages.ko/common/aws-cloudwatch.md @@ -0,0 +1,32 @@ +# aws cloudwatch + +> AWS 리소스를 모니터링하여 리소스 이용률, 애플리케이션 성능 및 운영 상태에 대한 시스템 전반적인 가시성 확보. +> 더 많은 정보: . + +- 대시보드 목록 나열: + +`aws cloudwatch list-dashboards` + +- 지정한 대시보드의 세부 정보 표시: + +`aws cloudwatch get-dashboard --dashboard-name {{대시보드_이름}}` + +- 메트릭 목록 나열: + +`aws cloudwatch list-metrics` + +- 알람(경보) 목록 나열: + +`aws cloudwatch describe-alarms` + +- 해당 매트릭과 연결된 알람 생성(또는 업데이트): + +`aws cloudwatch put-metric-alarm --alarm-name {{알람_이름}} --evaluation-periods {{평가_주기}} --comparison-operator {{비교_연산자}}` + +- 지정한 알람들 삭제: + +`aws cloudwatch delete-alarms --alarm_names {{알람_이름}}` + +- 지정한 대시보드들 삭제: + +`aws cloudwatch delete-dashboards --dashboard-names {{대시보드_이름}}` diff --git a/pages.ko/common/aws.md b/pages.ko/common/aws.md index 3b16ae6d85..9ca55b5f22 100644 --- a/pages.ko/common/aws.md +++ b/pages.ko/common/aws.md @@ -1,24 +1,37 @@ # aws > Amazon Web Services의 공식 CLI tool입니다. +> `aws s3`와 같은 일부 하위 명령에는 자체 사용 설명서가 있습니다. > 더 많은 정보: . -- 모든 IAM 사용자 목록: +- AWS Command-line 설정: -`aws iam list-users` +`aws configure wizard` -- 특정 지역의 모든 ec2 인스턴스 나열: +- SSO를 사용해 AWS Command-line 설정: -`aws ec2 describe-instances --region {{us-east-1}}` +`aws configure sso` -- 특정 SQS 대기열에서 메시지 수신: - -`aws sqs receive-message --queue-url {{https://queue.amazonaws.com/546123/Test}}` - -- 특정 SNS 주제에 메시지 게시: - -`aws sns publish --topic-arn {{arn:aws:sns:us-east-1:54633:testTopic}} --message "Message"` - -- AWS 명령어에 대한 도움말을 보려면: +- AWS 명령에 대한 도움말: `aws {{command}} help` + +- 호출자 ID 가져오기 (권한 문제 해결에 사용됨): + +`aws sts get-caller-identity` + +- 지역의 AWS 리소스 목록 및 YAML로 출력: + +`aws dynamodb list-tables --region {{us-east-1}} --output yaml` + +- 명령에 대한 자동 프롬프트 사용: + +`aws iam create-user --cli-auto-prompt` + +- AWS 리소스에 대한 대화형 마법사 사용: + +`aws dynamodb wizard {{new_table}}` + +- JSON CLI 스켈레톤 생성 (인프라를 코드로 사용하는 데 유용): + +`aws dynamodb update-table --generate-cli-skeleton` diff --git a/pages.ko/common/b2sum.md b/pages.ko/common/b2sum.md index 912d7d5d80..f93b0a424f 100644 --- a/pages.ko/common/b2sum.md +++ b/pages.ko/common/b2sum.md @@ -15,6 +15,6 @@ `b2sum -c {{filename.b2}}` -- stdin에서 BLACK2 체크섬 계산: +- `stdin`에서 BLACK2 체크섬 계산: `{{somecommand}} | b2sum` diff --git a/pages.ko/common/babel.md b/pages.ko/common/babel.md index 507800fed5..ef2a637586 100644 --- a/pages.ko/common/babel.md +++ b/pages.ko/common/babel.md @@ -3,7 +3,7 @@ > 코드를 JavaScript ES6/ES7 문법에서 ES5 문법으로 변환하는 변환기입니다. > 더 많은 정보: . -- 지정된 입력 파일을 변환하고 `stdout'으로 출력: +- 지정된 입력 파일을 변환하고 ``stdout`'으로 출력: `babel {{path/to/file}}` diff --git a/pages.ko/common/banner.md b/pages.ko/common/banner.md index 9fbd7410a0..ab67aacbdb 100644 --- a/pages.ko/common/banner.md +++ b/pages.ko/common/banner.md @@ -11,6 +11,6 @@ `banner -w {{50}} "{{Hello World}}"` -- stdin에서 텍스트 읽기: +- `stdin`에서 텍스트 읽기: `banner` diff --git a/pages.ko/common/base32.md b/pages.ko/common/base32.md index 670838f3f7..4ddb537dbe 100644 --- a/pages.ko/common/base32.md +++ b/pages.ko/common/base32.md @@ -11,10 +11,10 @@ `base32 --decode {{filename}}` -- stdin에서 인코딩: +- `stdin`에서 인코딩: `{{somecommand}} | base32` -- stdin에서 디코딩: +- `stdin`에서 디코딩: `{{somecommand}} | base32 --decode` diff --git a/pages.ko/common/base64.md b/pages.ko/common/base64.md index 7acfb2b692..29b3f8db33 100644 --- a/pages.ko/common/base64.md +++ b/pages.ko/common/base64.md @@ -11,10 +11,10 @@ `base64 --decode {{filename}}` -- stdin에서 인코딩: +- `stdin`에서 인코딩: `{{somecommand}} | base64` -- stdin에서 디코딩: +- `stdin`에서 디코딩: `{{somecommand}} | base64 --decode` diff --git a/pages.ko/common/bash.md b/pages.ko/common/bash.md index 94d5b78e2b..46d053df5d 100644 --- a/pages.ko/common/bash.md +++ b/pages.ko/common/bash.md @@ -2,7 +2,7 @@ > Bourne-Again SHell, an `sh`- 호환 명령 행 인터프리터. > 참조 : `zsh`, `histexpand` (history expansion). -> 더 많은 정보:: . +> 더 많은 정보: . - 대화형 쉘 시작하기: @@ -28,6 +28,6 @@ `bash -e {{경로/대상/script.sh}}` -- stdin에서 bash 실행하기: +- `stdin`에서 bash 실행하기: `{{echo "echo 'bash가 실행되었습니다'"}} | bash` diff --git a/pages.ko/common/black.md b/pages.ko/common/black.md index 6837a5865d..dd63c0c0e6 100644 --- a/pages.ko/common/black.md +++ b/pages.ko/common/black.md @@ -1,7 +1,7 @@ # black > Python 자동 코드 formatter. -> 더 많은 정보: . +> 더 많은 정보: . - 파일 또는 전체 디렉토리의 자동 포맷: @@ -19,7 +19,7 @@ `black --check {{파일_또는_디렉토리/의/경로}}` -- 파일 또는 디렉토리가 stderr에 배타적 오류 메시지를 발생시키는 자동 포맷: +- 파일 또는 디렉토리가 `stderr`에 배타적 오류 메시지를 발생시키는 자동 포맷: `black --quiet {{파일_또는_디렉토리/의/경로}}` diff --git a/pages.ko/common/blender.md b/pages.ko/common/blender.md index 69286fce0a..4f950b3872 100644 --- a/pages.ko/common/blender.md +++ b/pages.ko/common/blender.md @@ -1,7 +1,7 @@ # blender > Blender 3D 컴퓨터 그래픽스 어플리케이션의 커맨드라인 인터페이스. 인자는 주어진 순서대로 실행. -> 더 많은 정보: . +> 더 많은 정보: . - UI를 로드하지 않고 background에서 애니메이션의 모든 프레임을 렌더링.(출력은 `/tmp`에 저장): diff --git a/pages.ko/common/bundler.md b/pages.ko/common/bundler.md new file mode 100644 index 0000000000..c39608d357 --- /dev/null +++ b/pages.ko/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> 이 명령은 `bundle` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr bundle` diff --git a/pages.ko/common/bzip2.md b/pages.ko/common/bzip2.md index 96c84a79f9..c7226ae93b 100644 --- a/pages.ko/common/bzip2.md +++ b/pages.ko/common/bzip2.md @@ -1,16 +1,32 @@ # bzip2 > 블록 정렬 파일 압축기. -> 더 많은 정보: . +> 더 많은 정보: . - 파일 압축하기: -`bzip2 {{경로/압축할_파일명}}` +`bzip2 {{경로/대상/압축할_파일}}` - 파일 압축해제하기: -`bzip2 -d {{경로/압축된_.bz2파일}}` +`bzip2 -d {{경로/대상/압축된_파일.bz2}}` - 파일을 표준 출력으로 압축해제: -`bzip2 -dc {{경로/압축된_.bz2파일}}` +`bzip2 -dc {{경로/대상/압축된_파일.bz2}}` + +- 압축된 파일 내 각 파일의 무결성 테스트: + +`bzip2 --test {{경로/대상/압축된_파일.bz2}}` + +- 압축된 파일의 각 파일에 대한 압축률과 자세한 정보 표시: + +`bzip2 --verbose {{경로/대상/압축된_파일.bz2}}` + +- 기존 파일을 덮어쓰면서 파일 압축 해제: + +`bzip2 --force {{경로/대상/압축된_파일.bz2}}` + +- 도움말 표시: + +`bzip2 -h` diff --git a/pages.ko/common/calibre-server.md b/pages.ko/common/calibre-server.md index 49e3f09a12..25b0bbba59 100644 --- a/pages.ko/common/calibre-server.md +++ b/pages.ko/common/calibre-server.md @@ -5,11 +5,11 @@ > Calibre 전자책 라이브러리의 일부. > 더 많은 정보: . -- 전자책을 배포할 서버 시작. http://localhost:8080에 연결: +- 전자책을 배포할 서버 시작. 에 연결: `calibre-server` -- 다른 포트에서 서버 시작. http://localhost:port에 연결: +- 다른 포트에서 서버 시작. 에 연결: `calibre-server --port {{포트번호}}` diff --git a/pages.ko/common/cargo.md b/pages.ko/common/cargo.md index 079495d447..ecb4b644be 100644 --- a/pages.ko/common/cargo.md +++ b/pages.ko/common/cargo.md @@ -2,7 +2,7 @@ > Rust 패키지 관리프로그램. > Rust 프로젝트 및 해당 모듈 종속성(크레이트) 관리. -> 더 많은 정보: . +> 더 많은 정보: . - 크레이트 검색: diff --git a/pages.ko/common/clamav.md b/pages.ko/common/clamav.md new file mode 100644 index 0000000000..013a7cb5d6 --- /dev/null +++ b/pages.ko/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> 이 명령은 `clamdscan` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr clamdscan` diff --git a/pages.ko/common/clamscan.md b/pages.ko/common/clamscan.md index b65563cd49..60b33d4c4d 100644 --- a/pages.ko/common/clamscan.md +++ b/pages.ko/common/clamscan.md @@ -1,7 +1,7 @@ # clamscan > 바이러스 검사를 하는 줄 명령어. -> 더 많은 정보: . +> 더 많은 정보: . - 약점이 있는 파일을 검사합니다: @@ -11,7 +11,7 @@ `clamscan -r {{경로/디렉토리}}` -- stdin 으로부터 데이터를 검사합니다: +- `stdin` 으로부터 데이터를 검사합니다: `{{명령어}} | clamscan -` diff --git a/pages.ko/common/clojure.md b/pages.ko/common/clojure.md new file mode 100644 index 0000000000..114047c8e6 --- /dev/null +++ b/pages.ko/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> 이 명령은 `clj` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr clj` diff --git a/pages.ko/common/cola.md b/pages.ko/common/cola.md new file mode 100644 index 0000000000..0452adfc4f --- /dev/null +++ b/pages.ko/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> 이 명령은 `git-cola` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr git-cola` diff --git a/pages.ko/common/comm.md b/pages.ko/common/comm.md index 99b70edae9..a48d94d3db 100644 --- a/pages.ko/common/comm.md +++ b/pages.ko/common/comm.md @@ -12,7 +12,7 @@ `comm -12 {{파일1}} {{파일2}}` -- stdin으로 읽어드린 하나의 파일과 나머지 파일의 공통된 줄들만 출력: +- `stdin`으로 읽어드린 하나의 파일과 나머지 파일의 공통된 줄들만 출력: `cat {{파일1}} | comm -12 - {{파일2}}` diff --git a/pages.ko/common/copyq.md b/pages.ko/common/copyq.md index 9a5fdf9445..bcfd58560c 100644 --- a/pages.ko/common/copyq.md +++ b/pages.ko/common/copyq.md @@ -1,7 +1,7 @@ # copyq > 고급 기능을 갖춘 클립보드 매니저. -> 더 많은 정보: . +> 더 많은 정보: . - copyQ를 시작하여 클립보드 기록 저장: diff --git a/pages.ko/common/cron.md b/pages.ko/common/cron.md new file mode 100644 index 0000000000..1e0bd179f2 --- /dev/null +++ b/pages.ko/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> 이 명령은 `crontab` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr crontab` diff --git a/pages.ko/common/cut.md b/pages.ko/common/cut.md index f54648e81e..baa4be4570 100644 --- a/pages.ko/common/cut.md +++ b/pages.ko/common/cut.md @@ -1,9 +1,9 @@ # cut -> stdin 혹은 파일에서 출력 필드를 자른다. +> `stdin` 혹은 파일에서 출력 필드를 자른다. > 더 많은 정보: . -- stdin의 각 라인에 첫번째 16개의 문자를 자르기: +- `stdin`의 각 라인에 첫번째 16개의 문자를 자르기: `cut -c {{1-16}}` diff --git a/pages.ko/common/date.md b/pages.ko/common/date.md index 6a4a962d8c..5d3e10483d 100644 --- a/pages.ko/common/date.md +++ b/pages.ko/common/date.md @@ -22,3 +22,15 @@ - 특정 날짜를 Unix 타임스탬프 형식으로 변환: `date -d "{{2018-09-01 00:00}}" +%s --utc` + +- 현재 날짜를 RFC-3339 형식으로 표시 (`YYYY-MM-DD hh:mm:ss TZ`): + +`date --rfc-3339=s` + +- `MMDDhhmmYYYY.ss` (`YYYY` 와 `.ss`는 선택 사항) 형식을 사용해 현재 날짜를 설정: + +`date {{093023592021.59}}` + +- ISO 기준 현재 몇 번째 주인지 표시: + +`date +%V` diff --git a/pages.ko/common/deno.md b/pages.ko/common/deno.md new file mode 100644 index 0000000000..1aaec5ddf3 --- /dev/null +++ b/pages.ko/common/deno.md @@ -0,0 +1,24 @@ +# deno + +> JavaScript 및 TypeScript를 위한 보안 런타임입니다. +> 더 많은 정보: . + +- JavaScript 또는 TypeScript 파일을 실행: + +`deno run {{경로/대상/파일.ts}}` + +- REPL(대화형 쉘)을 시작: + +`deno` + +- 네트워크 접근이 가능한 파일을 실행: + +`deno run --allow-net {{경로/대상/파일.ts}}` + +- URL을 통해 파일을 실행: + +`deno run {{https://deno.land/std/examples/welcome.ts}}` + +- URL을 통해 실행 가능항 스크립트 설치: + +`deno install {{https://deno.land/std/examples/colors.ts}}` diff --git a/pages.ko/common/django-admin.md b/pages.ko/common/django-admin.md new file mode 100644 index 0000000000..64ba31cc96 --- /dev/null +++ b/pages.ko/common/django-admin.md @@ -0,0 +1,20 @@ +# django-admin + +> 관리 작업을 위한 Django 유틸리티. +> 더 많은 정보: . + +- 새로운 Django 프로젝트를 생성: + +`django-admin startproject {{프로젝트_이름}}` + +- 현재 프로젝트 내부에 새로운 애플리케이션 생성: + +`django-admin startapp {{애플리케이션_이름}}` + +- 현재 설치된 Django 버전 확인: + +`django-admin --version` + +- 입력한 명령어에 대해 더 많은 정보 표시: + +`django-admin help {{명령어}}` diff --git a/pages.ko/common/docker-compose.md b/pages.ko/common/docker-compose.md index 4b4c4ba002..2b46ff3e0b 100644 --- a/pages.ko/common/docker-compose.md +++ b/pages.ko/common/docker-compose.md @@ -9,7 +9,7 @@ - 현재 디렉토리의 `docker-compose.yml` 파일을 사용해 모든 컨테이너를 백그라운드에서 생성하고 실행하기: -`docker compose up -d` +`docker compose up --detach` - 모든 컨테이너 실행, 필요 시 재빌드: diff --git a/pages.ko/common/fossil-ci.md b/pages.ko/common/fossil-ci.md new file mode 100644 index 0000000000..2f8a097f3a --- /dev/null +++ b/pages.ko/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> 이 명령은 `fossil-commit` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr fossil-commit` diff --git a/pages.ko/common/fossil-delete.md b/pages.ko/common/fossil-delete.md new file mode 100644 index 0000000000..11e44da2e4 --- /dev/null +++ b/pages.ko/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> 이 명령은 `fossil rm` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr fossil rm` diff --git a/pages.ko/common/fossil-forget.md b/pages.ko/common/fossil-forget.md new file mode 100644 index 0000000000..059749d931 --- /dev/null +++ b/pages.ko/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> 이 명령은 `fossil rm` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr fossil rm` diff --git a/pages.ko/common/fossil-new.md b/pages.ko/common/fossil-new.md new file mode 100644 index 0000000000..1abd963af3 --- /dev/null +++ b/pages.ko/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> 이 명령은 `fossil-init` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr fossil-init` diff --git a/pages.ko/common/gh-cs.md b/pages.ko/common/gh-cs.md new file mode 100644 index 0000000000..360393b378 --- /dev/null +++ b/pages.ko/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> 이 명령은 `gh-codespace` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr gh-codespace` diff --git a/pages.ko/common/gnmic-sub.md b/pages.ko/common/gnmic-sub.md new file mode 100644 index 0000000000..5ef6a777d4 --- /dev/null +++ b/pages.ko/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> 이 명령은 `gnmic subscribe` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr gnmic subscribe` diff --git a/pages.ko/common/google-chrome.md b/pages.ko/common/google-chrome.md new file mode 100644 index 0000000000..5b631b72fc --- /dev/null +++ b/pages.ko/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> 이 명령은 `chromium` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr chromium` diff --git a/pages.ko/common/grep.md b/pages.ko/common/grep.md index d4f5b85342..def117b2b0 100644 --- a/pages.ko/common/grep.md +++ b/pages.ko/common/grep.md @@ -31,6 +31,6 @@ `grep --only-matching "{{검색_패턴}}" {{파일/의/경로}}` -- 패턴과 일치하지 않는 라인에 대한 stdin 검색: +- 패턴과 일치하지 않는 라인에 대한 `stdin` 검색: `cat {{파일/의/경로}} | grep --invert-match "{{검색_패턴}}"` diff --git a/pages.ko/common/htop.md b/pages.ko/common/htop.md new file mode 100644 index 0000000000..8ff1de4ce8 --- /dev/null +++ b/pages.ko/common/htop.md @@ -0,0 +1,32 @@ +# htop + +> 실행 중인 프로세스에 대한 동적 실시간 정보를 표시합니다. `top`의 향상된 버전입니다. +> 더 많은 정보: . + +- `htop` 시작: + +`htop` + +- 특정 사용자가 소유한 프로세스를 표시하는 `htop`을 시작합니다: + +`htop --user {{사용자 이름}}` + +- 지정된 `sort_item`을 기준으로 프로세스를 정렬합니다(사용 가능한 옵션을 보려면 `htop --sort help`을 사용): + +`htop --sort {{sort_item}}` + +- 업데이트 사이에 지정된 지연(10분의 1초)으로 `htop`을 시작(예: 50 = 5초): + +`htop --delay {{50}}` + +- htop을 실행하는 동안 대화형 명령 확인: + +`?` + +- 다른 탭으로 전환: + +`tab` + +- 도움말 표시: + +`htop --help` diff --git a/pages.ko/common/husky.md b/pages.ko/common/husky.md new file mode 100644 index 0000000000..2ce2b9d41f --- /dev/null +++ b/pages.ko/common/husky.md @@ -0,0 +1,28 @@ +# husky + +> 네이티브 Git 훅을 쉽게 만들었습니다. +> 더 많은 정보: . + +- 현재 폴더에 Husky를 설치: + +`husky install` + +- Husky를 특정 폴더에 설치: + +`husky install {{경로/대상/폴더}}` + +- 특정 명령을 Git의 `pre-push` 훅으로 설정: + +`husky set {{.husky/pre-push}} "{{명령어}} {{명령어_인자}}"` + +- 현재 `pre-commit` 훅에 특정 명령을 추가: + +`husky add {{.husky/pre-commit}} "{{명령어}} {{명령어_인자}}"` + +- 현재 폴더에서 Husky 훅 제거: + +`husky uninstall` + +- 도움말 표시: + +`husky` diff --git a/pages.ko/common/hx.md b/pages.ko/common/hx.md new file mode 100644 index 0000000000..de1360cb6e --- /dev/null +++ b/pages.ko/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> 이 명령은 `helix` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr helix` diff --git a/pages.ko/common/iperf3.md b/pages.ko/common/iperf3.md new file mode 100644 index 0000000000..db5fb7b9a4 --- /dev/null +++ b/pages.ko/common/iperf3.md @@ -0,0 +1,24 @@ +# iperf3 + +> 네트워크 대역폭 테스트를 위한 트래픽 생성기입니다. +> 더 많은 정보: . + +- iperf3를 서버로 실행: + +`iperf3 -s` + +- 특정 포트에서 iperf3 서버 실행: + +`iperf3 -s -p {{포트}}` + +- 대역폭 테스트 시작: + +`iperf3 -c {{서버}}` + +- 여러 병렬 스트림에서 iperf3 실행: + +`iperf3 -c {{서버}} -P {{스트림}}` + +- 테스트를 역방향으로 진행합니다. 서버가 클라이언트에 데이터를 전송: + +`iperf3 -c {{서버}} -R` diff --git a/pages.ko/common/java.md b/pages.ko/common/java.md new file mode 100644 index 0000000000..f8c34d811d --- /dev/null +++ b/pages.ko/common/java.md @@ -0,0 +1,28 @@ +# java + +> 자바 애플리케이션 실행기. +> 더 많은 정보: . + +- 클래스 이름만 사용하여 기본 메서드가 포함된 자바 클래스 파일을 실행: + +`java {{클래스 이름}}` + +- 자바 프로그램을 실행하고 추가적인 타사 또는 사용자 정의 클래스 사용: + +`java -classpath {{path/to/classes1}}:{{path/to/classes2}}:. {{클래스 이름}}` + +- `.jar` 프로그램 실행: + +`java -jar {{파일이름.jar}}` + +- 포트 5005에서 연결을 기다리는 디버그를 사용하여 `.jar` 프로그램을 실행: + +`java -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005 -jar {{파일이름.jar}}` + +- JDK, JRE 및 HotSpot 버전 표시: + +`java -version` + +- java 명령에 대한 사용법 정보 표시: + +`java -help` diff --git a/pages.ko/common/javac.md b/pages.ko/common/javac.md new file mode 100644 index 0000000000..0b39b43dc1 --- /dev/null +++ b/pages.ko/common/javac.md @@ -0,0 +1,20 @@ +# javac + +> 자바 애플리케이션 컴파일러. +> 더 많은 정보: . + +- `.java` 파일을 컴파일: + +`javac {{파일.java}}` + +- 여러 개의 `.java` 파일들을 컴파일: + +`javac {{파일1.java}} {{파일2.java}} {{파일3.java}}` + +- 현재 디렉토리 내의 모든 `.java` 파일들을 컴파일: + +`javac {{*.java}}` + +- `.java` 파일을 컴파일한 후, 결과 `.class` 파일을 특정 디렉토리에 위치시키기: + +`javac -d {{경로/대상/폴더}} {{파일.java}}` diff --git a/pages.ko/common/kafkacat.md b/pages.ko/common/kafkacat.md new file mode 100644 index 0000000000..78acef0ca2 --- /dev/null +++ b/pages.ko/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> 이 명령은 `kcat` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr kcat` diff --git a/pages.ko/common/llvm-ar.md b/pages.ko/common/llvm-ar.md new file mode 100644 index 0000000000..8968e22fe9 --- /dev/null +++ b/pages.ko/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> 이 명령은 `ar` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr ar` diff --git a/pages.ko/common/llvm-g++.md b/pages.ko/common/llvm-g++.md new file mode 100644 index 0000000000..6eed07f4b3 --- /dev/null +++ b/pages.ko/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> 이 명령은 `clang++` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr clang++` diff --git a/pages.ko/common/llvm-gcc.md b/pages.ko/common/llvm-gcc.md new file mode 100644 index 0000000000..f82ede769e --- /dev/null +++ b/pages.ko/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> 이 명령은 `clang` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr clang` diff --git a/pages.ko/common/llvm-nm.md b/pages.ko/common/llvm-nm.md new file mode 100644 index 0000000000..23640e1b5f --- /dev/null +++ b/pages.ko/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> 이 명령은 `nm` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr nm` diff --git a/pages.ko/common/llvm-objdump.md b/pages.ko/common/llvm-objdump.md new file mode 100644 index 0000000000..605a97747e --- /dev/null +++ b/pages.ko/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> 이 명령은 `objdump` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr objdump` diff --git a/pages.ko/common/llvm-strings.md b/pages.ko/common/llvm-strings.md new file mode 100644 index 0000000000..5bdf4519be --- /dev/null +++ b/pages.ko/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> 이 명령은 `strings` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr strings` diff --git a/pages.ko/common/ln.md b/pages.ko/common/ln.md new file mode 100644 index 0000000000..111fbf6658 --- /dev/null +++ b/pages.ko/common/ln.md @@ -0,0 +1,16 @@ +# ln + +> 파일 및 디렉터리에 대한 링크를 생성합니다. +> 더 많은 정보: . + +- 파일이나 디렉터리에 대한 심볼릭 링크 생성: + +`ln -s {{/경로/대상/파일_또는_폴더}} {{경로/대상/심볼릭링크}}` + +- 다른 파일을 가리키도록 기존 심볼릭 링크를 덮어쓰기: + +`ln -sf {{/경로/대상/새로운_파일}} {{경로/대상/심볼릭링크}}` + +- 파일에 대한 하드 링크 생성: + +`ln {{/경로/대상/파일}} {{경로/대상/하드링크}}` diff --git a/pages.ko/common/lzcat.md b/pages.ko/common/lzcat.md new file mode 100644 index 0000000000..38a5bd4f1d --- /dev/null +++ b/pages.ko/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> 이 명령은 `xz` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr xz` diff --git a/pages.ko/common/lzma.md b/pages.ko/common/lzma.md new file mode 100644 index 0000000000..433721c2fb --- /dev/null +++ b/pages.ko/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> 이 명령은 `xz` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr xz` diff --git a/pages.ko/common/make.md b/pages.ko/common/make.md new file mode 100644 index 0000000000..703abeb4a7 --- /dev/null +++ b/pages.ko/common/make.md @@ -0,0 +1,37 @@ +# make + +> Makefile에 작성된 대상에 대한 작업 실행기입니다. +> 주로 소스 코드에서 실행 파일의 컴파일을 제어하는 데 사용됩니다. +> 더 많은 정보: . + +- Makefile에 지정된 첫 번째 대상(일반적으로 "all"이라는 이름)을 호출: + +`make` + +- 특정 대상을 호출: + +`make {{대상}}` + +- 특정 대상을 호출하여, 한 번에 4개의 작업을 병렬로 실행: + +`make -j{{4}} {{대상}}` + +- 특정 Makefile을 사용: + +`make --file {{경로/대상/파일}}` + +- 다른 디렉토리에서 make 실행: + +`make --directory {{경로/대상/폴더}}` + +- 소스 파일이 변경되지 않은 경우에도, 대상을 강제로 make 실행: + +`make --always-make {{대상}}` + +- Makefile에 정의된 변수를 재정의: + +`make {{대상}} {{변수}}={{새로운_값}}` + +- 환경에 의해 Makefile에 정의된 변수를 재정의: + +`make --environment-overrides {{대상}}` diff --git a/pages.ko/common/mount.md b/pages.ko/common/mount.md new file mode 100644 index 0000000000..96528878d3 --- /dev/null +++ b/pages.ko/common/mount.md @@ -0,0 +1,36 @@ +# mount + +> 하나의 폴더에 있는 전체 파일 시스템에 대한 접근을 제공합니다. +> 더 많은 정보: . + +- 마운트된 모든 파일 시스템 표시: + +`mount` + +- 폴더에 장치 마운트: + +`mount -t {{파일시스템_종류}} {{경로/대상/장치_파일}} {{경로/대상/대상_폴더}}` + +- 존재하지 않을 때 특정 폴더를 생성하고, 해당 폴더에 장치를 마운트: + +`mount --mkdir {{경로/대상/장치_파일}} {{경로/대상/대상_폴더}}` + +- 특정 사용자의 폴더에 장치 마운트: + +`mount -o uid={{사용자_아이디}},gid={{그룹_아이디}} {{경로/대상/장치_파일}} {{경로/대상/대상_폴더}}` + +- CD-ROM 장치(파일형식 ISO9660)를 `/cdrom` (읽기 전용)에 마운트: + +`mount -t {{iso9660}} -o ro {{/dev/cdrom}} {{/cdrom}}` + +- `/etc/fstab`에 정의된 모든 파일 시스템을 마운트: + +`mount -a` + +- `/etc/fstab`에 설정된 특정 파일 시스템을 마운트 (예, `/dev/sda1 /my_drive ext2 defaults 0 2`): + +`mount {{/my_drive}}` + +- 폴더를 다른 폴더에 마운트: + +`mount --bind {{경로/대상/이전_디렉토리}} {{경로/대상/새로운_디렉터리}}` diff --git a/pages.ko/common/mscore.md b/pages.ko/common/mscore.md new file mode 100644 index 0000000000..5585944be7 --- /dev/null +++ b/pages.ko/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> 이 명령은 `musescore` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr musescore` diff --git a/pages.ko/common/netstat.md b/pages.ko/common/netstat.md new file mode 100644 index 0000000000..2b827ea27d --- /dev/null +++ b/pages.ko/common/netstat.md @@ -0,0 +1,32 @@ +# netstat + +> 열린 연결 및 소켓 포트 등과 같은 네트워크 관련 정보를 표시합니다. +> 더 많은 정보: . + +- 모든 포트 나열: + +`netstat --all` + +- 모든 수신 포트 나열: + +`netstat --listening` + +- 수신 중인 TCP 포트 나열: + +`netstat --tcp` + +- PID 및 프로그램 이름 표시: + +`netstat --program` + +- 정보를 지속적으로 나열: + +`netstat --continuous` + +- 경로를 나열하고 IP 주소를 호스트 이름으로 확인하지 않음: + +`netstat --route --numeric` + +- 수신 TCP 및 UDP 포트 나열 (+ 루트인 경우 사용자 및 프로세스까지 포함): + +`netstat --listening --program --numeric --tcp --udp --extend` diff --git a/pages.ko/common/nm-classic.md b/pages.ko/common/nm-classic.md new file mode 100644 index 0000000000..10e580e40d --- /dev/null +++ b/pages.ko/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> 이 명령은 `nm` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr nm` diff --git a/pages.ko/common/npm-check.md b/pages.ko/common/npm-check.md new file mode 100644 index 0000000000..29f11240fd --- /dev/null +++ b/pages.ko/common/npm-check.md @@ -0,0 +1,20 @@ +# npm-check + +> 오래되고, 부정확하고, 사용되지 않는 npm 패키지 의존성을 확인하세요. +> 더 많은 정보: . + +- 오래되고, 부정확하고, 사용되지 않는 의존성에 대한 보고서 표시: + +`npm-check` + +- 오래된 패키지를 대화형으로 업데이트: + +`npm-check --update` + +- 메시지를 표시하지 않고 모든 항목을 업데이트: + +`npm-check --update-all` + +- 사용하지 않은 패키지를 확인하지 않음: + +`npm-check --skip-unused` diff --git a/pages.ko/common/npm-fund.md b/pages.ko/common/npm-fund.md new file mode 100644 index 0000000000..2d3076b055 --- /dev/null +++ b/pages.ko/common/npm-fund.md @@ -0,0 +1,16 @@ +# npm fund + +> 패키지에서 자금 정보를 검색합니다. +> 더 많은 정보: . + +- 현재 폴더에 있는 프로젝트에 대한 자금 조달 URL로 의존성을 나열: + +`npm fund` + +- 기본 웹 브라우저에서 특정 패키지에 대한 자금 조달 URL 공개: + +`npm fund {{패키지}}` + +- 현재 폴더에 있는 프로젝트의 특정 작업 공간([w]orkspace)에 대한 자금 조달 URL을 사용하여 종속성을 나열: + +`npm fund -w {{작업 공간}}` diff --git a/pages.ko/common/npm-home.md b/pages.ko/common/npm-home.md new file mode 100644 index 0000000000..5529259ea8 --- /dev/null +++ b/pages.ko/common/npm-home.md @@ -0,0 +1,16 @@ +# npm-home + +> 웹 브라우저에서 패키지의 npm 페이지, Yarn 페이지 또는 GitHub 저장소를 열어줍니다. +> 더 많은 정보: . + +- 웹 브라우저에서 특정 패키지의 npm 페이지를 열기: + +`npm-home {{패키지}}` + +- 웹 브라우저에서 특정 패키지의 Github 저장소를 열기: + +`npm-home -g {{패키지}}` + +- 웹 브라우저에서 특정 패키지의 Yarn 페이지를 열기: + +`npm-home -y {{패키지}}` diff --git a/pages.ko/common/npm-name.md b/pages.ko/common/npm-name.md new file mode 100644 index 0000000000..66ce37d684 --- /dev/null +++ b/pages.ko/common/npm-name.md @@ -0,0 +1,12 @@ +# npm-name + +> npm에서 패키지 또는 조직 이름을 사용할 수 있는지 확인하세요. +> 더 많은 정보: . + +- npm 레지스트리에서 특정 패키지 이름을 사용할 수 있는 지 확인: + +`npm-name {{패키지}}` + +- npm 레지스트리에서 유사한 패키지 이름 찾기: + +`npm-name --similar {{패키지}}` diff --git a/pages.ko/common/npm-query.md b/pages.ko/common/npm-query.md new file mode 100644 index 0000000000..00b0c3531f --- /dev/null +++ b/pages.ko/common/npm-query.md @@ -0,0 +1,32 @@ +# npm query + +> CSS와 유사한 선택자를 사용하여 의존성 객체 배열을 출력합니다. +> 더 많은 정보: . + +- 직접 의존성 출력: + +`npm query ':root > *'` + +- 모든 직접 프로덕션/개발 의존성을 출력: + +`npm query ':root > .{{prod|dev}}'` + +- 특정 이름으로 의존성 출력: + +`npm query '#{{패키지}}'` + +- 특정 이름과 시맨틱 버전 관리 범위 내에서 의존성을 출력: + +`npm query #{{패키지}}@{{시멘틱 버전}}` + +- 의존성이 없는 의존성을 출력: + +`npm query ':empty'` + +- 설치 후 스크립트로 모든 의존성을 찾아 제거: + +`npm query ":attr(scripts, [postinstall])" | jq 'map(.name) | join("\n")' -r | xargs -I {} npm uninstall {}` + +- 모든 Git 종속성을 찾아 어떤 애플리케이션에 필요한지 출력: + +`npm query ":type(git)" | jq 'map(.name)' | xargs -I {} npm why {}` diff --git a/pages.ko/common/npm-why.md b/pages.ko/common/npm-why.md new file mode 100644 index 0000000000..4f81ef045b --- /dev/null +++ b/pages.ko/common/npm-why.md @@ -0,0 +1,8 @@ +# npm-why + +> npm 패키지가 설치된 이유를 식별합니다. +> 더 많은 정보: . + +- npm 패키지가 설치된 이유 표시: + +`npm-why {{패키지}}` diff --git a/pages.ko/common/npm.md b/pages.ko/common/npm.md new file mode 100644 index 0000000000..4ec2db781f --- /dev/null +++ b/pages.ko/common/npm.md @@ -0,0 +1,37 @@ +# npm + +> JavaScript 및 Node.js 패키지 관리자. +> Node.js 프로젝트 및 모듈 의존성을 관리합니다. +> 더 많은 정보: . + +- 대화형으로 `package.json` 파일 생성: + +`npm init` + +- package.json에 의존성으로 나열된 모든 패키지를 다운로드: + +`npm install` + +- 특정 버전의 패키지를 다운로드하여 `package.json`의 의존성 목록에 추가: + +`npm install {{패키지_이름}}@{{버전}}` + +- 최신 버전의 패키지를 다운로드하여 `package.json`의 개발 의존성 목록에 추가: + +`npm install {{패키지_이름}} --save-dev` + +- 최신 버전의 패키지를 다운로드하여 전역적으로 설치: + +`npm install --global {{패키지_이름}}` + +- 패키지를 제거하고 `package.json`의 의존성 목록에서 제거: + +`npm uninstall {{패키지_이름}}` + +- 로컬에 설치된 의존성 트리 인쇄: + +`npm list` + +- 전역적으로 설치된 최상위 패키지 나열: + +`npm list --global --depth={{0}}` diff --git a/pages.ko/common/npx.md b/pages.ko/common/npx.md new file mode 100644 index 0000000000..d5dce19b66 --- /dev/null +++ b/pages.ko/common/npx.md @@ -0,0 +1,24 @@ +# npx + +> `npm` 패키지에서 바이너리 실행. +> 더 많은 정보: . + +- 로컬 또는 원격 `npm` 패키지에서 명령을 실행: + +`npx {{명령어}} {{인자1 인자2 ...}}` + +- 동일한 이름의 명령어가 여러 개 존재하는 경우, 패키지를 명시적으로 지정: + +`npx --package {{패키지}} {{명령어}}` + +- 현재 경로나 `node_modules/.bin`에 명령이 있는 경우 명령을 실행: + +`npx --no-install {{명령어}} {{인자1 인자2 ...}}` + +- `npx` 자체의 출력을 억제하는 특정 명령을 실행: + +`npx --quiet {{명령어}} {{인자1 인자2 ...}}` + +- 도움말 표시: + +`npx --help` diff --git a/pages.ko/common/ntl.md b/pages.ko/common/ntl.md new file mode 100644 index 0000000000..fc4b06e2f6 --- /dev/null +++ b/pages.ko/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> 이 명령은 `netlify` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr netlify` diff --git a/pages.ko/common/pio-init.md b/pages.ko/common/pio-init.md new file mode 100644 index 0000000000..7f6a71a1fc --- /dev/null +++ b/pages.ko/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> 이 명령은 `pio project` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr pio project` diff --git a/pages.ko/common/piodebuggdb.md b/pages.ko/common/piodebuggdb.md new file mode 100644 index 0000000000..bcd6b793f9 --- /dev/null +++ b/pages.ko/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> 이 명령은 `pio debug` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr pio debug` diff --git a/pages.ko/common/platformio.md b/pages.ko/common/platformio.md new file mode 100644 index 0000000000..8a15ebd0d3 --- /dev/null +++ b/pages.ko/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> 이 명령은 `pio` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr pio` diff --git a/pages.ko/common/pnpm.md b/pages.ko/common/pnpm.md new file mode 100644 index 0000000000..f182c4fbfc --- /dev/null +++ b/pages.ko/common/pnpm.md @@ -0,0 +1,37 @@ +# pnpm + +> 빠르고, 디스크 공간 효율적인 Node.js용 패키지 관리자. +> Node.js 프로젝트 및 해당 모듈 의존성 관리. +> 더 많은 정보: . + +- `package.json` 파일 생성: + +`pnpm init` + +- `package.json`에 의존성으로 나열된 모든 패키지를 다운로드: + +`pnpm install` + +- 특정 버전의 패키지를 다운로드하여 `package.json`의 의존성 목록에 추가: + +`pnpm add {{모듈_이름}}@{{버전}}` + +- 패키지를 다운로드하고 `package.json`의 개발([D]ev) 의존성 목록에 추가: + +`pnpm add -D {{모듈_이름}}` + +- 패키지를 다운로드하고 전역적으로([g]lobally) 설치: + +`pnpm add -g {{모듈_이름}}` + +- 패키지를 제거하고 `package.json`의 종속성 목록에서 제거: + +`pnpm remove {{모듈_이름}}` + +- 로컬에 설치된 모듈의 트리 출력: + +`pnpm list` + +- 최상위 전역적으로([g]lobally) 설치된 모듈 나열: + +`pnpm list -g --depth={{0}}` diff --git a/pages.ko/common/prettier.md b/pages.ko/common/prettier.md new file mode 100644 index 0000000000..fcab26b0ac --- /dev/null +++ b/pages.ko/common/prettier.md @@ -0,0 +1,28 @@ +# prettier + +> JavaScript, JSON, CSS, YAML 등을 위한 명시적인 코드 포맷 도구. +> 더 많은 정보: . + +- 파일 형식을 지정하고 결과를 `stdout`으로 출력: + +`prettier {{경로/대상/파일}}` + +- 특정 파일의 형식이 지정되었는지 확인: + +`prettier --check {{경로/대상/파일}}` + +- 특정 구성 파일로 실행: + +`prettier --config {{경로/대상/설정_파일}} {{경로/대상/파일}}` + +- 파일이나 폴더를 포맷하여 원본을 대체: + +`prettier --write {{경로/대상/파일_또는_폴더}}` + +- 작은따옴표를 사용하고 후행 쉼표를 사용하지 않고 파일 또는 폴더 형식을 반복적으로 지정: + +`prettier --single-quote --trailing-comma {{none}} --write {{경로/대상/파일_또는_폴더}}` + +- JavaScript 및 TypeScript 파일의 형식을 재귀적으로 지정하여 원본 대체: + +`prettier --write "**/*.{js,jsx,ts,tsx}"` diff --git a/pages.ko/common/ps.md b/pages.ko/common/ps.md new file mode 100644 index 0000000000..36177dbeed --- /dev/null +++ b/pages.ko/common/ps.md @@ -0,0 +1,32 @@ +# ps + +> 실행 중인 프로세스에 대한 정보입니다. +> 더 많은 정보: . + +- 실행 중인 모든 프로세스를 나열: + +`ps aux` + +- 전체 명령 문자열을 포함하여 실행 중인 모든 프로세스 나열: + +`ps auxww` + +- 문자열과 일치하는 프로세스 검색: + +`ps aux | grep {{문자열}}` + +- 추가 전체 형식으로 현재 사용자의 모든 프로세스를 나열: + +`ps --user $(id -u) -F` + +- 현재 사용자의 모든 프로세스를 트리로 나열: + +`ps --user $(id -u) f` + +- 프로세스의 상위 PID 가져오기: + +`ps -o ppid= -p {{pid}}` + +- 메모리 소비를 기준으로 프로세스 정렬: + +`ps --sort size` diff --git a/pages.ko/common/ptpython3.md b/pages.ko/common/ptpython3.md new file mode 100644 index 0000000000..19eb2c4672 --- /dev/null +++ b/pages.ko/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> 이 명령은 `ptpython` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr ptpython` diff --git a/pages.ko/common/python3.md b/pages.ko/common/python3.md new file mode 100644 index 0000000000..e941a66d43 --- /dev/null +++ b/pages.ko/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> 이 명령은 `python` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr python` diff --git a/pages.ko/common/r2.md b/pages.ko/common/r2.md new file mode 100644 index 0000000000..31696db36e --- /dev/null +++ b/pages.ko/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> 이 명령은 `radare2` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr radare2` diff --git a/pages.ko/common/rcat.md b/pages.ko/common/rcat.md new file mode 100644 index 0000000000..fb0ada58ea --- /dev/null +++ b/pages.ko/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> 이 명령은 `rc` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr rc` diff --git a/pages.ko/common/ripgrep.md b/pages.ko/common/ripgrep.md new file mode 100644 index 0000000000..2369a18e5c --- /dev/null +++ b/pages.ko/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> 이 명령은 `rg` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr rg` diff --git a/pages.ko/common/route.md b/pages.ko/common/route.md new file mode 100644 index 0000000000..50eae577c3 --- /dev/null +++ b/pages.ko/common/route.md @@ -0,0 +1,16 @@ +# route + +> route 명령어를 사용하여 라우팅 테이블 설정. +> 더 많은 정보: . + +- 라우팅 테이블의 정보를 표시: + +`route -n` + +- 라우팅 규칙 추가: + +`sudo route add -net {{아이피_주소}} netmask {{넷마스크_주소}} gw {{게이트웨이_주소}}` + +- 라우팅 규칙 삭제: + +`sudo route del -net {{아이피_주소}} netmask {{넷마스크_주소}} dev {{게이트웨이_주소}}` diff --git a/pages.ko/common/rsync.md b/pages.ko/common/rsync.md new file mode 100644 index 0000000000..c6ba7554fe --- /dev/null +++ b/pages.ko/common/rsync.md @@ -0,0 +1,37 @@ +# rsync + +> 기본적으로 SSH를 사용하여 원격 호스트 간에 파일을 전송합니다(두 원격 호스트 사이는 아닙니다). +> 원격 경로를 지정하려면, `호스트:경로/대상/파일_또는_폴더`를 사용하세요. +> 더 많은 정보: . + +- 파일 전송: + +`rsync {{경로/대상/소스}} {{경로/대상/목적지}}` + +- 아카이브 모드 (디렉토리를 반복적으로 복사하고, 권한, 소유권, 수정 시간을 확인 및 보존하지 않고 심볼릭 링크를 복사) 사용: + +`rsync --archive {{경로/대상/소스}} {{경로/대상/목적지}}` + +- 데이터가 대상으로 전송될 때 압축하고, 사람이 읽을 수 있는 자세한 진행 상황을 표시하고, 중단된 경우 부분적으로 전송된 파일 유지: + +`rsync --compress --verbose --human-readable --partial --progress {{경로/대상/소스}} {{경로/대상/목적지}}` + +- 반복적으로 폴더 복사: + +`rsync --recursive {{경로/대상/소스}} {{경로/대상/목적지}}` + +- 디렉터리 내용을 전송하지만, 디렉터리 자체는 전송하지 않음: + +`rsync --recursive {{경로/대상/소스}}/ {{경로/대상/목적지}}` + +- 디렉토리를 반복적으로 복사하고, 아카이브 모드를 사용하고, 심볼릭 링크를 확인하고, 대상에 있는 최신 파일을 건너뜀: + +`rsync --recursive --archive --update --copy-links {{경로/대상/소스}} {{경로/대상/목적지}}` + +- `rsyncd`를 실행하는 원격 호스트로 폴더를 전송하고 소스에 존재하지 않는 대상의 파일으 삭제: + +`rsync --recursive --delete rsync://{{호스트}}:{{경로/대상/소스}} {{경로/대상/목적지}}` + +- 기본값(22)이 아닌 다른 포트를 사용하여 SSH를 통해 파일을 전송하고 전체적인 진행 상황을 표시: + +`rsync --rsh 'ssh -p {{port}}' --info=progress2 {{호스트}}:{{경로/대상/소스}} {{경로/대상/목적지}}` diff --git a/pages.ko/common/scp.md b/pages.ko/common/scp.md new file mode 100644 index 0000000000..17a6d95a69 --- /dev/null +++ b/pages.ko/common/scp.md @@ -0,0 +1,33 @@ +# scp + +> 보안 복사. +> SSH를 통한 보안 복사 프로토콜을 사용하여 호스트 간에 파일 복사. +> 더 많은 정보: . + +- 로컬 파일을 원격 호스트에 복사: + +`scp {{경로/대상/로컬_파일}} {{원격_호스트}}:{{경로/대상/원격_파일}}` + +- 원격 호스트에 연결할 때 특정 포트를 사용: + +`scp -P {{포트}} {{경로/대상/로컬_파일}} {{원격_호스트}}:{{경로/대상/원격_파일}}` + +- 원격 호스트의 파일을 로컬 폴더로 복사: + +`scp {{원격_호스트}}:{{경로/대상/원격_파일}} {{경로/대상/로컬_폴더}}` + +- 원격 호스트의 폴더 내용을 로컬 폴더로 반복적으로 복사: + +`scp -r {{원격_호스트}}:{{경로/대상/원격_폴더}} {{경로/대상/로컬_폴더}}` + +- 로컬 호스트를 통해 전송되는 두 원격 호스트 간에 파일 복사: + +`scp -3 {{호스트1}}:{{경로/대상/원격_파일}} {{호스트2}}:{{경로/대상/원격_폴더}}` + +- 원격 호스트에 연결할 때 특정 사용자 이름을 사용: + +`scp {{경로/대상/로컬_파일}} {{원격_사용자명}}@{{원격_호스트}}:{{경로/대상/원격_폴더}}` + +- 원격 호스트 인증을 위해 특정 SSH 개인 키를 사용: + +`scp -i {{~/.ssh/private_key}} {{로컬_파일}} {{원격_호스트}}:{{/경로/원격_파일}}` diff --git a/pages.ko/common/sed.md b/pages.ko/common/sed.md new file mode 100644 index 0000000000..ebfd5f4c57 --- /dev/null +++ b/pages.ko/common/sed.md @@ -0,0 +1,17 @@ +# sed + +> 스크립트 가능한 방식으로 텍스트 편집. +> 함께 보기: `awk`, `ed`. +> 더 많은 정보: . + +- 모든 입력 줄에서 모든 `apple`(기본 정규식)항목을 `mango`(기본 정규식)로 바꾸고 결과를 `stdout`에 출력: + +`{{명령어}} | sed 's/apple/mango/g'` + +- 특정 스크립트 파일([f]ile)을 실행하고 결과를 `stdout`에 출력: + +`{{명령어}} | sed -f {{경로/대상/script.sed}}` + +- `stdout`에 첫 번째 줄만 출력: + +`{{명령어}} | sed -n '1p'` diff --git a/pages.ko/common/ssh.md b/pages.ko/common/ssh.md new file mode 100644 index 0000000000..f30061df24 --- /dev/null +++ b/pages.ko/common/ssh.md @@ -0,0 +1,37 @@ +# ssh + +> 보안 쉘은 원격 시스템에 안전하게 로그인하는 데 사용되는 프로토콜입니다. +> 원격 서버에서 명령을 기록하거나 실행하는 데 사용할 수 있습니다. +> 더 많은 정보: . + +- 원격 서버에 연결: + +`ssh {{사용자 명}}@{{원격_호스트}}` + +- 특정 인증정보(개인 키)를 사용하여 원격 서버에 연결: + +`ssh -i {{경로/대상/키_파일}} {{사용자 명}}@{{원격_호스트}}` + +- 특정 포트를 사용하여 원격 서버에 연결: + +`ssh {{사용자 명}}@{{원격_호스트}} -p {{2222}}` + +- 원격 명령과의 상호 작용을 허용하는 [t]ty 할당을 사용하여 원격 서버에서 명령을 실행: + +`ssh {{사용자 명}}@{{원격_호스트}} -t {{명령어}} {{명령어_인자}}` + +- SSH 터널링: 동적 포트 전달 (`localhost:1080`의 SOCKS 프록시): + +`ssh -D {{1080}} {{사용자 명}}@{{원격_호스트}}` + +- SSH 터널링: 원격 명령의 의사-[T]ty 할당 및 실행(executio[N])의 비활성화와 함께 특정 포트(`localhost:9999`를 `example.org:80`): + +`ssh -L {{9999}}:{{example.org}}:{{80}} -N -T {{사용자 명}}@{{원격_호스트}}` + +- SSH 점프: 점프 호스트를 통해 원격 서버에 연결(여러 점프 홉은 쉼표 문자로 구분하여 지정): + +`ssh -J {{사용자 명}}@{{점프_호스트}} {{사용자 명}}@{{원격_호스트}}` + +- 에이전트 전달: 인증 정보를 원격 시스템으로 전달(사용 가능한 옵션은 `man ssh_config` 참조): + +`ssh -A {{사용자 명}}@{{원격_호스트}}` diff --git a/pages.ko/common/stun.md b/pages.ko/common/stun.md new file mode 100644 index 0000000000..96c9a477fd --- /dev/null +++ b/pages.ko/common/stun.md @@ -0,0 +1,12 @@ +# stun + +> 클래식 STUN 클라이언트. +> 더 많은 정보: . + +- STUN 요청 생성: + +`stun {{STUN 호스트 이름}}` + +- STUN 요청을 하고 소스 포트를 지정: + +`stun {{STUN 호스트 이름}} -p {{4302}}` diff --git a/pages.ko/common/su.md b/pages.ko/common/su.md new file mode 100644 index 0000000000..680287e8a5 --- /dev/null +++ b/pages.ko/common/su.md @@ -0,0 +1,20 @@ +# su + +> 다른 사용자로 쉘을 전환합니다. +> 더 많은 정보: . + +- 슈퍼유저로 전환 (루트 비밀번호 필요): + +`su` + +- 특정 사용자로 전환 (특정 사용자의 비밀번호 필요): + +`su {{사용자 명}}` + +- 특정 사용자로 전환하고 전체 로그인 쉘을 시뮬레이션: + +`su - {{사용자 명}}` + +- 다른 사용자로 명령어 실행: + +`su - {{사용자 명}} -c "{{명령어}}"` diff --git a/pages.ko/common/tcpdump.md b/pages.ko/common/tcpdump.md new file mode 100644 index 0000000000..6653706478 --- /dev/null +++ b/pages.ko/common/tcpdump.md @@ -0,0 +1,36 @@ +# tcpdump + +> 네트워크의 트래픽 덤프. +> 더 많은 정보: . + +- 사용 가능한 네트워크 인터페이스 나열: + +`tcpdump -D` + +- 특정 인터페이스의 트래픽 캡처: + +`tcpdump -i {{eth0}}` + +- 콘솔에서 콘텐츠(ASCII)를 표시하는 모든 TCP 트래픽을 캡처: + +`tcpdump -A tcp` + +- 호스트에서 들어오고 나가는 트래픽을 캡처: + +`tcpdump host {{www.example.com}}` + +- 특정 인터페이스, 소스, 목적지 및 목적지 포트에서 트래픽을 캡처: + +`tcpdump -i {{eth0}} src {{192.168.1.1}} and dst {{192.168.1.2}} and dst port {{80}}` + +- 네트워크 트래픽 캡처: + +`tcpdump net {{192.168.1.0/24}}` + +- 포트 22를 통한 트래픽을 제외한 모든 트래픽을 캡처하고 덤프 파일에 저장: + +`tcpdump -w {{dumpfile.pcap}} port not {{22}}` + +- 지정된 덤프 파일에서 읽기: + +`tcpdump -r {{dumpfile.pcap}}` diff --git a/pages.ko/common/tldrl.md b/pages.ko/common/tldrl.md new file mode 100644 index 0000000000..aaeb8d4b28 --- /dev/null +++ b/pages.ko/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> 이 명령은 `tldr-lint` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr tldr-lint` diff --git a/pages.ko/common/tlmgr-arch.md b/pages.ko/common/tlmgr-arch.md new file mode 100644 index 0000000000..fac7928e85 --- /dev/null +++ b/pages.ko/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> 이 명령은 `tlmgr platform` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr tlmgr platform` diff --git a/pages.ko/common/todoman.md b/pages.ko/common/todoman.md new file mode 100644 index 0000000000..662d9e53b3 --- /dev/null +++ b/pages.ko/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> 이 명령은 `todo` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr todo` diff --git a/pages.ko/common/transmission.md b/pages.ko/common/transmission.md new file mode 100644 index 0000000000..34e2424985 --- /dev/null +++ b/pages.ko/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> 이 명령은 `transmission-daemon` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr transmission-daemon` diff --git a/pages.ko/common/umount.md b/pages.ko/common/umount.md new file mode 100644 index 0000000000..d8d4cd4269 --- /dev/null +++ b/pages.ko/common/umount.md @@ -0,0 +1,17 @@ +# umount + +> 마운트 지점에서 파일 시스템이 링크를 해제하여 더 이상 접근할 수 없게 만들어 줍니다. +> 파일 시스템이 사용중이면 마운트 해제할 수 없습니다. +> 더 많은 정보: . + +- 마운트된 소스의 경로를 전달하여, 파일 시스템을 마운트 해제: + +`umount {{경로/대상/장치_파일}}` + +- 파일 시스템이 마운트된 대상에 대한 경로를 전달하여 파일 시스템 마운트 해제: + +`umount {{경로/대상/마운트된_폴더}}` + +- 마운트된 모든 파일 시스템을 마운트 해제(`proc` 파일 시스템 제외): + +`umount -a` diff --git a/pages.ko/common/uname.md b/pages.ko/common/uname.md new file mode 100644 index 0000000000..76a0acf711 --- /dev/null +++ b/pages.ko/common/uname.md @@ -0,0 +1,25 @@ +# uname + +> 현재 컴퓨터와 그 컴퓨터에서 실행 중인 운영 체제에 대한 세부 정보를 출력합니다. +> `lsb_release`로 같이 참고해주세요. +> 더 많은 정보: . + +- 커널 이름 출력: + +`uname` + +- 시스템 아키텍처 및 프로세서 정보 출력: + +`uname --machine --processor` + +- 커널 이름, 커널 릴리스 및 버전 출력: + +`uname --kernel-name --kernel-release --kernel-version` + +- 시스템 호스트 이름 출력: + +`uname --nodename` + +- 사용 가능한 모든 시스템 정보를 출력: + +`uname --all` diff --git a/pages.ko/common/unlzma.md b/pages.ko/common/unlzma.md new file mode 100644 index 0000000000..d6407cb07d --- /dev/null +++ b/pages.ko/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> 이 명령은 `xz` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr xz` diff --git a/pages.ko/common/unxz.md b/pages.ko/common/unxz.md new file mode 100644 index 0000000000..520834a10a --- /dev/null +++ b/pages.ko/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> 이 명령은 `xz` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr xz` diff --git a/pages.ko/common/unzip.md b/pages.ko/common/unzip.md new file mode 100644 index 0000000000..fd824d0a73 --- /dev/null +++ b/pages.ko/common/unzip.md @@ -0,0 +1,29 @@ +# unzip + +> ZIP 아카이브에서 파일/폴더 추출. +> 같이 보기: `zip`. +> 더 많은 정보: . + +- 특정 폴더의 모든 파일/폴더를 현재 폴더로 추출: + +`unzip {{경로/대상/아카이브1.zip 경로/대상/아카이브2.zip ...}}` + +- 아카이브에서 특정 경로로 파일/폴더 추출: + +`unzip {{경로/대상/아카이브1.zip 경로/대상/아카이브2.zip ...}} -d {{경로/대상/출력}}` + +- 아카이브에서 `stdout`으로 파일/폴더 추출: + +`unzip -c {{경로/대상/아카이브1.zip 경로/대상/아카이브2.zip ...}}` + +- 추출된 파일 이름과 함께 파일 내용을 `stdout`으로 추출: + +`unzip -O {{gbk}} {{경로/대상/아카이브1.zip 경로/대상/아카이브2.zip ...}}` + +- 특정 아카이브의 내용을 추출하지 않고 나열: + +`unzip -l {{경로/대상/아카이브.zip}}` + +- 아카이브에서 특정 파일 추출: + +`unzip -j {{경로/대상/아카이브.zip}} {{경로/대상/아카이브1_파일 경로/대상/아카이브2_파일 ...}}` diff --git a/pages.ko/common/uptime.md b/pages.ko/common/uptime.md new file mode 100644 index 0000000000..f6235b0384 --- /dev/null +++ b/pages.ko/common/uptime.md @@ -0,0 +1,20 @@ +# uptime + +> 시스템이 실행된 기간 및 기타 정보. +> 더 많은 정보: . + +- 현재 시간, 가동 시간, 로그인한 사용자 수 및 기타 정보를 출력: + +`uptime` + +- 시스템이 부팅된 시간만 표시: + +`uptime --pretty` + +- 시스템이 부팅된 날짜와 시간을 출력: + +`uptime --since` + +- 버전 정보 표시: + +`uptime --version` diff --git a/pages.ko/common/vercel.md b/pages.ko/common/vercel.md new file mode 100644 index 0000000000..d30087b208 --- /dev/null +++ b/pages.ko/common/vercel.md @@ -0,0 +1,36 @@ +# vercel + +> 당신의 Vercel 프로젝트들을 관리하고 배포하세요. +> 더 많은 정보: . + +- 현재 디렉토리를 배포: + +`vercel` + +- 현재 디렉토리를 프로덕션에 배포: + +`vercel --prod` + +- 특정 디렉토리를 배포: + +`vercel {{경로/대상/프로젝트}}` + +- 예제 프로젝트를 초기화: + +`vercel init` + +- 환경 변수와 함께 배포: + +`vercel --env {{ENV}}={{var}}` + +- 환경 변수와 함께 빌드: + +`vercel --build-env {{ENV}}={{var}}` + +- 배포를 적용할 기본 지역을 설정: + +`vercel --regions {{region_id}}` + +- 배포된 프로젝트를 제거: + +`vercel remove {{프로젝트_이름}}` diff --git a/pages.ko/common/vi.md b/pages.ko/common/vi.md new file mode 100644 index 0000000000..88251c1667 --- /dev/null +++ b/pages.ko/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> 이 명령은 `vim` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr vim` diff --git a/pages.ko/common/virsh-connect.md b/pages.ko/common/virsh-connect.md new file mode 100644 index 0000000000..9687d50a02 --- /dev/null +++ b/pages.ko/common/virsh-connect.md @@ -0,0 +1,21 @@ +# virsh-connect + +> 가상 머신 하이퍼바이저에 연결합니다. +> 같이 보기: `virsh`. +> 더 많은 정보: . + +- 기본 하이퍼바이저에 연결: + +`virsh connect` + +- 로컬 QEMU/KVM 하이퍼바이저에 루트로 연결: + +`virsh connect qemu:///system` + +- 하이퍼바이저의 새 인스턴스를 시작하고, 로컬 사용자로 연결: + +`virsh connect qemu:///session` + +- SSH를 사용하여 원격 하이퍼바이저에 루트로 연결: + +`virsh connect qemu+ssh://{{사용자_명@호스트_명}}/system` diff --git a/pages.ko/common/virsh-domblklist.md b/pages.ko/common/virsh-domblklist.md new file mode 100644 index 0000000000..dfa2efa503 --- /dev/null +++ b/pages.ko/common/virsh-domblklist.md @@ -0,0 +1,13 @@ +# virsh-domblklist + +> 가상 머신과 연결된 블록 장치에 대한 정보 나열. +> 같이 보기: `virsh`. +> 더 많은 정보: . + +- 블록 장치의 대상 이름 및 소스 경로 나열: + +`virsh domblklist --domain {{가상머신_이름}}` + +- 디스크 유형, 장치 값, 대상 이름 및 소스 경로 나열: + +`virsh domblklist --domain {{가상머신_이름}} --details` diff --git a/pages.ko/common/virsh-help.md b/pages.ko/common/virsh-help.md new file mode 100644 index 0000000000..6dd7ee6056 --- /dev/null +++ b/pages.ko/common/virsh-help.md @@ -0,0 +1,21 @@ +# virsh-help + +> `virsh` 명령 또는 명령 그룹에 대한 정보 표시. +> 같이 보기: `virsh`. +> 더 많은 정보: . + +- 관련 카테고리로 그룹화된 `virsh` 명령 나열: + +`virsh help` + +- 명령의 카테고리를 나열: + +`virsh help | grep "keyword"` + +- 카테고리의 명령 나열 + +`virsh help {{카테고리_키워드}}` + +- 명령어에 대한 도움말 표시: + +`virsh help {{명령어}}` diff --git a/pages.ko/common/virsh-list.md b/pages.ko/common/virsh-list.md new file mode 100644 index 0000000000..ecb435bd59 --- /dev/null +++ b/pages.ko/common/virsh-list.md @@ -0,0 +1,21 @@ +# virsh-list + +> 가상 머신의 ID, 이름, 상태 나열. +> 같이 보기: `virsh`. +> 더 많은 정보: . + +- 실행 중인 가상 머신에 대한 정보 나열: + +`virsh list` + +- 상태에 관계없이 가상 머신에 대한 정보 나열: + +`virsh list --all` + +- 자동 시작이 활성화되거나 비활성화된 가상 머신에 대한 정보 나열: + +`virsh list --all --{{autostart|no-autostart}}` + +- 스냅샷 유무에 관계없이 가상 머신에 대한 정보 나열: + +`virsh list --all --{{with-snapshot|without-snapshot}}` diff --git a/pages.ko/common/virsh-pool-autostart.md b/pages.ko/common/virsh-pool-autostart.md new file mode 100644 index 0000000000..8ab49ea338 --- /dev/null +++ b/pages.ko/common/virsh-pool-autostart.md @@ -0,0 +1,13 @@ +# virsh pool-autostart + +> 가상 머신 스토리지 풀에 대한 자동 시작 활성화 또는 비활성화. +> 같이 보기: `virsh`. +> 더 많은 정보: . + +- 이름 또는 UUID로 지정된 스토리지 풀에 대한 자동 시작 활성화 (`virsh pool-list`를 사용하여 결정): + +`virsh pool-autostart --pool {{name|uuid}}` + +- 이름 또는 UUID로 지정된 스토리지 풀에 대한 자동 시작 비활성화: + +`virsh pool-autostart --pool {{name|uuid}} --disable` diff --git a/pages.ko/common/virsh-pool-build.md b/pages.ko/common/virsh-pool-build.md new file mode 100644 index 0000000000..b09ef3a975 --- /dev/null +++ b/pages.ko/common/virsh-pool-build.md @@ -0,0 +1,9 @@ +# virsh pool-build + +> `/etc/libvirt/storage`의 구성 파일에 정의된 대로 가상 머신 스토리지 풀에 대한 기본 스토리지 시스템을 구축합니다. +> 같이 보기: `virsh`, `virsh-pool-define-as`, `virsh-pool-start`. +> 더 많은 정보: . + +- 이름 또는 UUID로 지정된 스토리지 풀 구축 (`virsh pool-list`를 사용하여 결정): + +`virsh pool-build --pool {{name|uuid}}` diff --git a/pages.ko/common/virsh-pool-define-as.md b/pages.ko/common/virsh-pool-define-as.md new file mode 100644 index 0000000000..ca8bc7266c --- /dev/null +++ b/pages.ko/common/virsh-pool-define-as.md @@ -0,0 +1,9 @@ +# virsh pool-define-as + +> 제공된 인수를 사용하여 영구 가상 머신 스토리지 풀에 대한 `/etc/libvirt/storage`에 구성 파일을 생성합니다. +> 같이 보기: `virsh`, `virsh-pool-build`, `virsh-pool-start`. +> 더 많은 정보: . + +- 기본 스토리지 시스템으로 `/var/vms`를 사용하여 pool_name이라는 스토리지 풀에 대한 구성 파일을 생성: + +`virsh pool-define-as --name {{풀_이름}} --type {{dir}} --target {{/var/vms}}` diff --git a/pages.ko/common/virsh-pool-delete.md b/pages.ko/common/virsh-pool-delete.md new file mode 100644 index 0000000000..e1963c72ca --- /dev/null +++ b/pages.ko/common/virsh-pool-delete.md @@ -0,0 +1,9 @@ +# virsh pool-delete + +> 비활성 가상 머신 스토리지 풀의 기본 스토리지 시스템 삭제. +> 같이 보기: `virsh`, `virsh-pool-destroy`, `virsh-pool-undefine`. +> 더 많은 정보: . + +- 이름 또는 UUID로 지정된 스토리지 풀에 대한 기본 스토리지 시스템을 삭제 (`virsh pool-list`을 사용하여 결정): + +`virsh pool-delete --pool {{name|uuid}}` diff --git a/pages.ko/common/virsh-pool-destroy.md b/pages.ko/common/virsh-pool-destroy.md new file mode 100644 index 0000000000..d693e21b1b --- /dev/null +++ b/pages.ko/common/virsh-pool-destroy.md @@ -0,0 +1,9 @@ +# virsh pool-destroy + +> 활성 가상 머신 스토리지 풀 중지. +> 같이 보기: `virsh`, `virsh-pool-delete`. +> 더 많은 정보: . + +- 이름 또는 UUID로 지정된 스토리지 풀 중지 (`virsh pool-list`를 사용하여 결정): + +`virsh pool-destroy --pool {{name|uuid}}` diff --git a/pages.ko/common/virsh-pool-info.md b/pages.ko/common/virsh-pool-info.md new file mode 100644 index 0000000000..bf809a3a09 --- /dev/null +++ b/pages.ko/common/virsh-pool-info.md @@ -0,0 +1,9 @@ +# virsh pool-info + +> 가상 머신 스토리지 풀에 대한 정보를 나열합니다. +> 같이 보기: `virsh`. +> 더 많은 정보: . + +- 이름 또는 UUID로 지정된 스토리지 풀에 대해 이름, UUID, 상태, 지속성 유형, 자동 시작 상태, 용량, 할당된 공간 및 사용 가능한 공간 나열 (`virsh pool-list`를 사용하여 결정): + +`virsh pool-info --pool {{name|uuid}}` diff --git a/pages.ko/common/virsh-pool-list.md b/pages.ko/common/virsh-pool-list.md new file mode 100644 index 0000000000..702eaadeaf --- /dev/null +++ b/pages.ko/common/virsh-pool-list.md @@ -0,0 +1,29 @@ +# virsh pool-list + +> 가상 머신 스토리지 풀에 대한 정보 나열. +> 같이 보기: `virsh`, `virsh-pool-autostart`, `virsh-pool-define-as`. +> 더 많은 정보: . + +- 이름, 상태 및 활성 스토리지 풀에 대한 자동 시작의 활성화 또는 비활성화 여부를 나열: + +`virsh pool-list` + +- 활성 및 비활성 또는 비활성 스토리지 풀에 대한 정보 나열: + +`virsh pool-list --{{all|inactive}}` + +- 활성 스토리지 풀의 지속성, 용량, 할당 및 사용 가능한 공간에 대한 확장 정보 나열: + +`virsh pool-list --details` + +- 자동 시작이 활성화되거나 비활성화된 활성 스토리지 풀에 대한 정보 나열: + +`virsh pool-list --{{autostart|no-autostart}}` + +- 지속적이거나 일시적인 활성 스토리지 풀에 대한 정보 나열: + +`virsh pool-list --{{persistent|transient}}` + +- 활성 스토리지 풀의 이름 및 UUID 나열: + +`virsh pool-list --name --uuid` diff --git a/pages.ko/common/virsh-pool-start.md b/pages.ko/common/virsh-pool-start.md new file mode 100644 index 0000000000..d2bf01f4e5 --- /dev/null +++ b/pages.ko/common/virsh-pool-start.md @@ -0,0 +1,9 @@ +# virsh pool-start + +> 이전에 구성되었지만 비활성화된 가상 머신 스토리지 풀 시작. +> 같이 보기: `virsh`, `virsh-pool-define-as`, `virsh-pool-destroy`. +> 더 많은 정보: . + +- 이름 또는 UUID로 지정된 스토리지 풀을 시작하고 (`virsh pool-list`를 사용하여 결정) 기본 스토리지 시스템이 없으면 생성: + +`virsh pool-start --pool {{name|uuid}} --build` diff --git a/pages.ko/common/virsh-pool-undefine.md b/pages.ko/common/virsh-pool-undefine.md new file mode 100644 index 0000000000..9185139a09 --- /dev/null +++ b/pages.ko/common/virsh-pool-undefine.md @@ -0,0 +1,9 @@ +# virsh pool-undefine + +> 중지된 가상 머신 스토리지 풀에 대한 `/etc/libvirt/storage`에서 구성 파일을 삭제합니다. +> 같이 보기: `virsh`, `virsh-pool-destroy`. +> 더 많은 정보: . + +- 스토리지 풀에 지정된 이름 또는 UUID에 대한 구성을 삭제 (`virsh pool-list`를 사용하여 결정): + +`virsh pool-undefine --pool {{name|uuid}}` diff --git a/pages.ko/common/virsh-undefine.md b/pages.ko/common/virsh-undefine.md new file mode 100644 index 0000000000..fdee113d60 --- /dev/null +++ b/pages.ko/common/virsh-undefine.md @@ -0,0 +1,16 @@ +# virsh-undefine + +> 가상 머신을 삭제합니다. +> 더 많은 정보: . + +- 가상 머신 구성 파일만 삭제: + +`virsh undefine --domain {{가상머신_이름}}` + +- 구성 파일 및 모든 관련 스토리지 불륨을 삭제: + +`virsh undefine --domain {{가상머신_이름}} --remove-all-storage` + +- 대상 이름 또는 소스 이름 (`virsh domblklist` 명령에서 얻은 이름)을 사용하여 구성 파일과 지정된 스토리지 볼륨을 삭제: + +`virsh undefine --domain {{가상머신_이름}} --storage {{sda,경로/대상/소스}}` diff --git a/pages.ko/common/virsh.md b/pages.ko/common/virsh.md new file mode 100644 index 0000000000..92342c505e --- /dev/null +++ b/pages.ko/common/virsh.md @@ -0,0 +1,37 @@ +# virsh + +> virsh 게스트 도메인을 관리합니다. (NOTE: 'guest_id'는 게스트의 아이디, 이름 또는 UUID일 수 있습니다). +> `virsh list`와 같은 일부 하위 명령에는 자체 사용 설명서가 있습니다. +> 더 많은 정보: . + +- 하이퍼아비저 세션에 연결: + +`virsh connect {{qemu:///system}}` + +- 모든 도메인 나열: + +`virsh list --all` + +- 게스트 구성 파일 덤프: + +`virsh dumpxml {{게스트 아이디}} > {{경로/대상/게스트 구성 파일.xml}}` + +- 구성 파일에서 게스트 만들기: + +`virsh create {{경로/대상/구성 파일.xml}}` + +- 게스트의 구성 파일 편집 (편집기는 $EDITOR로 변경할 수 있음): + +`virsh edit {{게스트_아이디}}` + +- 게스트 시작/재부팅/종료/일시 중지/재개: + +`virsh {{명령어}} {{게스트_아이디}}` + +- 게스트의 현재 상태를 파일에 저장: + +`virsh save {{게스트_아이디}} {{파일이름}}` + +- 실행 중인 게스트 삭제: + +`virsh destroy {{게스트_아이디}} && virsh undefine {{게스트_아이디}}` diff --git a/pages.ko/common/vite.md b/pages.ko/common/vite.md new file mode 100644 index 0000000000..3f3cb4b75a --- /dev/null +++ b/pages.ko/common/vite.md @@ -0,0 +1,22 @@ +# Vite + +> Vite 프로젝트 생성합니다. +> 자바스크립트 프로젝트를 빌드하는 데 사용됩니다. +> 사용 가능한 템플릿: vanilla, vanilla-ts, vue, vue-ts, react, react-ts, react-swc, react-swc-ts, preact, preact-ts, lit, lit-ts, svelte, svelte-ts. +> 더 많은 정보: . + +- `npm` 6.x를 사용한 설정: + +`npm create vite@latest my-react-app --template react-ts` + +- `npm` 7 이상을 사용한 설정, 추가 이중 대시가 필요: + +`npm create vite@latest my-react-app -- --template react-ts` + +- `yarn`을 사용한 설정: + +`yarn create vite my-react-app --template react-ts` + +- `pnpm`을 사용한 설정: + +`pnpm create vite my-react-app --template react-ts` diff --git a/pages.ko/common/wc.md b/pages.ko/common/wc.md new file mode 100644 index 0000000000..1496bce0ad --- /dev/null +++ b/pages.ko/common/wc.md @@ -0,0 +1,28 @@ +# wc + +> 줄 단어 및 바이트 수 계산. +> 더 많은 정보: . + +- 파일의 모든 줄 수 계산: + +`wc --lines {{경로/대상/파일}}` + +- 파일의 모든 단어 수 계산: + +`wc --words {{경로/대상/파일}}` + +- 파일의 모든 바이트 수 계산: + +`wc --bytes {{경로/대상/파일}}` + +- 파일의 모든 문자 수 계산(멀티바이트 문자 고려): + +`wc --chars {{경로/대상/파일}}` + +- `stdin`의 모든 줄, 단어 및 바이트 수를 계산: + +`{{find .}} | wc` + +- 가장 긴 줄의 길이를 문자 수로 계산: + +`wc --max-line-length {{경로/대상/파일}}` diff --git a/pages.ko/common/webpack.md b/pages.ko/common/webpack.md new file mode 100644 index 0000000000..2b3a822114 --- /dev/null +++ b/pages.ko/common/webpack.md @@ -0,0 +1,20 @@ +# webpack + +> 웹 프로젝트의 자바스크립트 파일과 기타 리소스를 단일 출력 파일로 묶어줍니다. +> 더 많은 정보: . + +- 진입점이 되는 파일에서 단일 출력 파일 생성: + +`webpack {{app.js}} {{bundle.js}}` + +- 자바스크립트 파일에서도 CSS 파일을 로드 (이 경우 `.css` 파일에 CSS 로더를 사용합니다): + +`webpack {{app.js}} {{bundle.js}} --module-bind '{{css=css}}'` + +- 구성 파일(예, 입력 스크립트 및 출력 파일 이름 포함)을 전달하고 컴파일 진행률을 표시: + +`webpack --config {{webpack.config.js}} --progress` + +- 프로젝트 파일 변경 시 자동으로 다시 컴파일: + +`webpack --watch {{app.js}} {{bundle.js}}` diff --git a/pages.ko/common/wget.md b/pages.ko/common/wget.md new file mode 100644 index 0000000000..8c34ad3e36 --- /dev/null +++ b/pages.ko/common/wget.md @@ -0,0 +1,37 @@ +# wget + +> 웹에서 파일을 다운로드합니다. +> HTTP, HTTPS 및 FTP를 지원합니다. +> 더 많은 정보: . + +- URL 내용을 파일(이 경우 "foo")로 다운로드: + +`wget {{https://example.com/foo}}` + +- URL 내용을 파일(이 경우 "bar")로 다운로드: + +`wget --output-document {{bar}} {{https://example.com/foo}}` + +- 요청 사이에 3초 간격으로 단일 웹 페이지와 모든 리소스(스크립트, 스타일시트, 이미지 등)를 다운로드: + +`wget --page-requisites --convert-links --wait=3 {{https://example.com/somepage.html}}` + +- 폴더 및 해당 폴더 내에 나열된 모든 파일을 다운로드(포함된 페이지는 다운로드하지 않음): + +`wget --mirror --no-parent {{https://example.com/somepath/}}` + +- 다운로드 속도와 연결 재시도 횟수를 제한: + +`wget --limit-rate={{300k}} --tries={{100}} {{https://example.com/somepath/}}` + +- 기본 인증을 사용하여 HTTP 서버에서 파일 다운로드(FTP에서도 작동): + +`wget --user={{사용자 명}} --password={{비밀번호}} {{https://example.com}}` + +- 불완전한 다운로드 계속 진행: + +`wget --continue {{https://example.com}}` + +- 텍스트 파일에 저장된 모든 URL을 특정 디렉토리로 다운로드: + +`wget --directory-prefix {{경로/대상/폴더}} --input-file {{URLs.txt}}` diff --git a/pages.ko/common/xzcat.md b/pages.ko/common/xzcat.md new file mode 100644 index 0000000000..5183ebfbdd --- /dev/null +++ b/pages.ko/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> 이 명령은 `xz` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr xz` diff --git a/pages.ko/common/yarn-why.md b/pages.ko/common/yarn-why.md new file mode 100644 index 0000000000..634d29a658 --- /dev/null +++ b/pages.ko/common/yarn-why.md @@ -0,0 +1,8 @@ +# yarn-why + +> Yarn 패키지가 설치된 이유를 식별합니다. +> 더 많은 정보: . + +- Yarn 패키지가 설치된 이유 표시: + +`yarn-why {{패키지}}` diff --git a/pages.ko/common/yarn.md b/pages.ko/common/yarn.md new file mode 100644 index 0000000000..5e751b8b31 --- /dev/null +++ b/pages.ko/common/yarn.md @@ -0,0 +1,28 @@ +# yarn + +> JavaScript 및 Node.js 패키지 대체 관리자. +> 더 많은 정보: . + +- 전역적으로 모듈 설치: + +`yarn global add {{모듈_이름}}` + +- `package.json` 파일에 참조된 모든 의존성을 설치 ( `install`은 선택 사항입니다): + +`yarn install` + +- 모듈을 설치하고 `package.json` 파일에 대한 의존성으로 저장 (개발 전용 의존성으로 추가하려면 `--dev` 추가): + +`yarn add {{모듈_이름}}@{{버전}}` + +- 모듈을 제거하고 `package.json` 파일에서 제거: + +`yarn remove {{모듈_이름}}` + +- 대화형으로 `package.json` 파일 생성: + +`yarn init` + +- 모듈이 의존성인지 확인하고, 해당 모듈에 의존성이 있는 다른 모듈을 나열: + +`yarn why {{모듈_이름}}` diff --git a/pages.ko/common/zola.md b/pages.ko/common/zola.md new file mode 100644 index 0000000000..dd32e81541 --- /dev/null +++ b/pages.ko/common/zola.md @@ -0,0 +1,24 @@ +# zola + +> 단일 실행 파일에 모든 기능이 들어있는 정적 사이트 생성기. +> 더 많은 정보: . + +- 주어진 디렉토리에 Zola가 사용하는 디렉토리 구조를 생성: + +`zola init {{내_사이트_이름}}` + +- `public` 디렉토리에 전체 사이트를 빌드 (이미 존재하는 디렉토리가 있다면 삭제): + +`zola build` + +- 별도의 디렉토리에 전체 사이트를 빌드: + +`zola build --output-dir {{경로/대상/폴더/}}` + +- 사이트를 빌드하고 로컬 서버를 사용하여 제공 (기본 주소는 `127.0.0.1:1111`): + +`zola serve` + +- `build` 명령어와 같이 모든 페이지를 빌드하지만, 그 결과를 디스크에 기록하지는 않음: + +`zola check` diff --git a/pages.ko/linux/add-apt-repository.md b/pages.ko/linux/add-apt-repository.md new file mode 100644 index 0000000000..c0815aebdf --- /dev/null +++ b/pages.ko/linux/add-apt-repository.md @@ -0,0 +1,20 @@ +# add-apt-repository + +> 적절한 저장소 정의를 관리합니다. +> 더 많은 정보: . + +- 새로운 apt 레포지토리 추가: + +`add-apt-repository {{레포지토리_스펙}}` + +- apt 레포지토리 삭제: + +`add-apt-repository --remove {{레포지토리_스펙}}` + +- 저장소 추가 후 패키지 캐시 업데이트: + +`add-apt-repository --update {{레포지토리_스펙}}` + +- 저장소에서 소스 패키지를 다운로드하도록 허용: + +`add-apt-repository --enable-source {{레포지토리_스펙}}` diff --git a/pages.ko/linux/alternatives.md b/pages.ko/linux/alternatives.md new file mode 100644 index 0000000000..a4c5782c84 --- /dev/null +++ b/pages.ko/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> 이 명령은 `update-alternatives` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr update-alternatives` diff --git a/pages.ko/linux/batcat.md b/pages.ko/linux/batcat.md new file mode 100644 index 0000000000..898f7c4f1e --- /dev/null +++ b/pages.ko/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> 이 명령은 `bat` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr bat` diff --git a/pages.ko/linux/bspwm.md b/pages.ko/linux/bspwm.md new file mode 100644 index 0000000000..5e4dee1efa --- /dev/null +++ b/pages.ko/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> 이 명령은 `bspc` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr bspc` diff --git a/pages.ko/linux/cc.md b/pages.ko/linux/cc.md new file mode 100644 index 0000000000..9a0bc80271 --- /dev/null +++ b/pages.ko/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> 이 명령은 `gcc` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr gcc` diff --git a/pages.ko/linux/cgroups.md b/pages.ko/linux/cgroups.md new file mode 100644 index 0000000000..57985f6c22 --- /dev/null +++ b/pages.ko/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> 이 명령은 `cgclassify` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr cgclassify` diff --git a/pages.ko/linux/dd.md b/pages.ko/linux/dd.md new file mode 100644 index 0000000000..39ba692d64 --- /dev/null +++ b/pages.ko/linux/dd.md @@ -0,0 +1,32 @@ +# dd + +> 파일 변환 및 복사. +> 더 많은 정보: . + +- isohybrid 파일(예: `archlinux-xxx.iso`)에서 부팅 가능한 USB 드라이브를 만들고 진행 상황 표시: + +`dd if={{경로/대상/파일.iso}} of={{/dev/usb_drive}} status=progress` + +- 4 MiB 블록이 있는 다른 드라이브에 드라이브를 복제하고, 오류를 무시하고 진행 상황을 표시: + +`dd if={{/dev/소스_드라이브}} of={{/dev/목적지_드라이브}} bs={{4M}} conv={{noerror}} status=progress` + +- 커널 랜덤 드라이버를 사용하여 랜덤 100바이트의 파일 생성: + +`dd if=/dev/urandom of={{경로/대상/랜덤_파일}} bs={{100}} count={{1}}` + +- 디스크의 쓰기 성능 벤치마크: + +`dd if=/dev/zero of={{경로/대상/1GB_파일}} bs={{1024}} count={{1000000}}` + +- IMG 파일로 시스템 백업을 생성하고 진행 상황 표시: + +`dd if={{/dev/드라이브_장치}} of={{경로/대상/파일.img}} status=progress` + +- IMG 파일에서 드라이브를 복원하고 진행 상황을 표시: + +`dd if={{경로/대상/파일.img}} of={{/dev/드라이브_장치}} status=progress` + +- 진행 중인 dd 작업의 진행 상황을 확인 (다른 셸에서 이 명령어 실행): + +`kill -USR1 $(pgrep ^dd)` diff --git a/pages.ko/linux/ip-route-list.md b/pages.ko/linux/ip-route-list.md new file mode 100644 index 0000000000..82aee362ca --- /dev/null +++ b/pages.ko/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> 이 명령은 `ip-route-show` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr ip-route-show` diff --git a/pages.ko/linux/megadl.md b/pages.ko/linux/megadl.md new file mode 100644 index 0000000000..62512c187b --- /dev/null +++ b/pages.ko/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> 이 명령은 `megatools-dl` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr megatools-dl` diff --git a/pages.ko/linux/mkfs.md b/pages.ko/linux/mkfs.md new file mode 100644 index 0000000000..4cc42507b7 --- /dev/null +++ b/pages.ko/linux/mkfs.md @@ -0,0 +1,17 @@ +# mkfs + +> 하드 디스크 파티션에 리눅스 파일 시스템 구축. +> 이 명령어는 파일 시스템이 정해진 mkfs.를 위해 더 이상 사용되지 않습니다. +> 더 많은 정보: . + +- 파티션에 Linux ext2 파일 시스템 구축: + +`mkfs {{경로/대상/파티션}}` + +- 지정된 타입의 파일 시스템 구축: + +`mkfs -t {{ext4}} {{경로/대상/파티션}}` + +- 지정된 타입의 파일 시스템을 구축하고 불량 블록을 확인: + +`mkfs -c -t {{ntfs}} {{경로/대상/파티션}}` diff --git a/pages.ko/linux/ncal.md b/pages.ko/linux/ncal.md new file mode 100644 index 0000000000..fd08bd83ee --- /dev/null +++ b/pages.ko/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> 이 명령은 `cal` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr cal` diff --git a/pages.ko/linux/rm.md b/pages.ko/linux/rm.md new file mode 100644 index 0000000000..a5f14215dc --- /dev/null +++ b/pages.ko/linux/rm.md @@ -0,0 +1,25 @@ +# rm + +> 파일 또는 디렉터리 삭제. +> 같이 보기: `rmdir`. +> 더 많은 정보: . + +- 특정 파일 삭제: + +`rm {{경로/대상/파일1 경로/대상/파일2 ...}}` + +- 존재하지 않는 파일은 무시하고 특정 파일 삭제: + +`rm --force {{경로/대상/파일1 경로/대상/파일2 ...}}` + +- 특정 파일을 삭제하기 전에 대화형 메시지를 표시하여 특정 파일을 삭제: + +`rm --interactive {{경로/대상/파일1 경로/대상/파일2 ...}}` + +- 특정 파일을 삭제하고 삭제한 파일 정보를 출력: + +`rm --verbose {{경로/대상/파일1 경로/대상/파일2 ...}}` + +- 특정 파일 및 디렉터리를 재귀적으로 삭제: + +`rm --recursive {{경로/대상/파일_또는_폴더1 경로/대상/파일_또는_폴더2 ...}}` diff --git a/pages.ko/linux/systemctl.md b/pages.ko/linux/systemctl.md new file mode 100644 index 0000000000..f83e262544 --- /dev/null +++ b/pages.ko/linux/systemctl.md @@ -0,0 +1,36 @@ +# systemctl + +> systemd 시스템 및 서비스 관리자를 제어합니다. +> 더 많은 정보: . + +- 실행 중인 서비스 모두 표시: + +`systemctl status` + +- 실패한 장치를 나열: + +`systemctl --failed` + +- 서비스 시작/중지/다시 시작/다시 로드: + +`systemctl {{start|stop|restart|reload}} {{장치}}` + +- 장치 상태 표시: + +`systemctl status {{장치}}` + +- 부팅 시 시작될 장치를 활성화/비활성화: + +`systemctl {{enable|disable}} {{장치}}` + +- 자동 및 수동 활성화를 방지하기 위해 장치 마스크/마스크 해제: + +`systemctl {{mask|unmask}} {{장치}}` + +- systemd를 다시 로드하고, 새 장치 또는 변경된 장치를 검색: + +`systemctl daemon-reload` + +- 장치가 활성화되어 있는지 확인: + +`systemctl is-enabled {{장치}}` diff --git a/pages.ko/linux/ubuntu-bug.md b/pages.ko/linux/ubuntu-bug.md new file mode 100644 index 0000000000..16dda0c80d --- /dev/null +++ b/pages.ko/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> 이 명령은 `apport-bug` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr apport-bug` diff --git a/pages.ko/osx/aa.md b/pages.ko/osx/aa.md new file mode 100644 index 0000000000..59f13f32f0 --- /dev/null +++ b/pages.ko/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> 이 명령은 `yaa` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr yaa` diff --git a/pages.ko/osx/g[.md b/pages.ko/osx/g[.md new file mode 100644 index 0000000000..30eca89f93 --- /dev/null +++ b/pages.ko/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> 이 명령은 `-p linux [` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux [` diff --git a/pages.ko/osx/gawk.md b/pages.ko/osx/gawk.md new file mode 100644 index 0000000000..dd7ce87ac8 --- /dev/null +++ b/pages.ko/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> 이 명령은 `-p linux awk` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux awk` diff --git a/pages.ko/osx/gb2sum.md b/pages.ko/osx/gb2sum.md new file mode 100644 index 0000000000..7f4a4a0a1a --- /dev/null +++ b/pages.ko/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> 이 명령은 `-p linux b2sum` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux b2sum` diff --git a/pages.ko/osx/gbase32.md b/pages.ko/osx/gbase32.md new file mode 100644 index 0000000000..5bf0610edf --- /dev/null +++ b/pages.ko/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> 이 명령은 `-p linux base32` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux base32` diff --git a/pages.ko/osx/gbase64.md b/pages.ko/osx/gbase64.md new file mode 100644 index 0000000000..b0c3c61f4d --- /dev/null +++ b/pages.ko/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> 이 명령은 `-p linux base64` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux base64` diff --git a/pages.ko/osx/gbasename.md b/pages.ko/osx/gbasename.md new file mode 100644 index 0000000000..f35a976e18 --- /dev/null +++ b/pages.ko/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> 이 명령은 `-p linux basename` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux basename` diff --git a/pages.ko/osx/gbasenc.md b/pages.ko/osx/gbasenc.md new file mode 100644 index 0000000000..873017a03d --- /dev/null +++ b/pages.ko/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> 이 명령은 `-p linux basenc` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux basenc` diff --git a/pages.ko/osx/gcat.md b/pages.ko/osx/gcat.md new file mode 100644 index 0000000000..524756aa19 --- /dev/null +++ b/pages.ko/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> 이 명령은 `-p linux cat` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux cat` diff --git a/pages.ko/osx/gchcon.md b/pages.ko/osx/gchcon.md new file mode 100644 index 0000000000..8df47e93d8 --- /dev/null +++ b/pages.ko/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> 이 명령은 `-p linux chcon` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux chcon` diff --git a/pages.ko/osx/gchgrp.md b/pages.ko/osx/gchgrp.md new file mode 100644 index 0000000000..5c9573281d --- /dev/null +++ b/pages.ko/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> 이 명령은 `-p linux chgrp` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux chgrp` diff --git a/pages.ko/osx/gchmod.md b/pages.ko/osx/gchmod.md new file mode 100644 index 0000000000..86322dd756 --- /dev/null +++ b/pages.ko/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> 이 명령은 `-p linux chmod` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux chmod` diff --git a/pages.ko/osx/gchown.md b/pages.ko/osx/gchown.md new file mode 100644 index 0000000000..c077a1b1ca --- /dev/null +++ b/pages.ko/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> 이 명령은 `-p linux chown` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux chown` diff --git a/pages.ko/osx/gchroot.md b/pages.ko/osx/gchroot.md new file mode 100644 index 0000000000..c74bb0a5eb --- /dev/null +++ b/pages.ko/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> 이 명령은 `-p linux chroot` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux chroot` diff --git a/pages.ko/osx/gcksum.md b/pages.ko/osx/gcksum.md new file mode 100644 index 0000000000..338eb72a14 --- /dev/null +++ b/pages.ko/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> 이 명령은 `-p linux cksum` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux cksum` diff --git a/pages.ko/osx/gcomm.md b/pages.ko/osx/gcomm.md new file mode 100644 index 0000000000..01cd6dcf4c --- /dev/null +++ b/pages.ko/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> 이 명령은 `-p linux comm` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux comm` diff --git a/pages.ko/osx/gcp.md b/pages.ko/osx/gcp.md new file mode 100644 index 0000000000..06a769db69 --- /dev/null +++ b/pages.ko/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> 이 명령은 `-p linux cp` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux cp` diff --git a/pages.ko/osx/gcsplit.md b/pages.ko/osx/gcsplit.md new file mode 100644 index 0000000000..f12b1afd0e --- /dev/null +++ b/pages.ko/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> 이 명령은 `-p linux csplit` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux csplit` diff --git a/pages.ko/osx/gcut.md b/pages.ko/osx/gcut.md new file mode 100644 index 0000000000..9f469457c5 --- /dev/null +++ b/pages.ko/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> 이 명령은 `-p linux cut` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux cut` diff --git a/pages.ko/osx/gdate.md b/pages.ko/osx/gdate.md new file mode 100644 index 0000000000..e1c202d75d --- /dev/null +++ b/pages.ko/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> 이 명령은 `-p linux date` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux date` diff --git a/pages.ko/osx/gdd.md b/pages.ko/osx/gdd.md new file mode 100644 index 0000000000..1d2383e4f2 --- /dev/null +++ b/pages.ko/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> 이 명령은 `-p linux dd` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux dd` diff --git a/pages.ko/osx/gdf.md b/pages.ko/osx/gdf.md new file mode 100644 index 0000000000..4897a82d85 --- /dev/null +++ b/pages.ko/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> 이 명령은 `-p linux df` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux df` diff --git a/pages.ko/osx/gdir.md b/pages.ko/osx/gdir.md new file mode 100644 index 0000000000..1c6a68c227 --- /dev/null +++ b/pages.ko/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> 이 명령은 `-p linux dir` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux dir` diff --git a/pages.ko/osx/gdircolors.md b/pages.ko/osx/gdircolors.md new file mode 100644 index 0000000000..4e15237718 --- /dev/null +++ b/pages.ko/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> 이 명령은 `-p linux dircolors` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux dircolors` diff --git a/pages.ko/osx/gdirname.md b/pages.ko/osx/gdirname.md new file mode 100644 index 0000000000..08547eee21 --- /dev/null +++ b/pages.ko/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> 이 명령은 `-p linux dirname` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux dirname` diff --git a/pages.ko/osx/gdnsdomainname.md b/pages.ko/osx/gdnsdomainname.md new file mode 100644 index 0000000000..db2ac6610b --- /dev/null +++ b/pages.ko/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> 이 명령은 `-p linux dnsdomainname` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux dnsdomainname` diff --git a/pages.ko/osx/gecho.md b/pages.ko/osx/gecho.md new file mode 100644 index 0000000000..51f255e069 --- /dev/null +++ b/pages.ko/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> 이 명령은 `-p linux echo` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux echo` diff --git a/pages.ko/osx/ged.md b/pages.ko/osx/ged.md new file mode 100644 index 0000000000..682f0604f4 --- /dev/null +++ b/pages.ko/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> 이 명령은 `-p linux ed` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux ed` diff --git a/pages.ko/osx/gegrep.md b/pages.ko/osx/gegrep.md new file mode 100644 index 0000000000..4390b05761 --- /dev/null +++ b/pages.ko/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> 이 명령은 `-p linux egrep` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux egrep` diff --git a/pages.ko/osx/genv.md b/pages.ko/osx/genv.md new file mode 100644 index 0000000000..9193648062 --- /dev/null +++ b/pages.ko/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> 이 명령은 `-p linux env` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux env` diff --git a/pages.ko/osx/gexpand.md b/pages.ko/osx/gexpand.md new file mode 100644 index 0000000000..168e37be52 --- /dev/null +++ b/pages.ko/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> 이 명령은 `-p linux expand` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux expand` diff --git a/pages.ko/osx/gexpr.md b/pages.ko/osx/gexpr.md new file mode 100644 index 0000000000..b76c7a3a7c --- /dev/null +++ b/pages.ko/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> 이 명령은 `-p linux expr` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux expr` diff --git a/pages.ko/osx/gfactor.md b/pages.ko/osx/gfactor.md new file mode 100644 index 0000000000..0cfdd07002 --- /dev/null +++ b/pages.ko/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> 이 명령은 `-p linux factor` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux factor` diff --git a/pages.ko/osx/gfalse.md b/pages.ko/osx/gfalse.md new file mode 100644 index 0000000000..8b6728a8b4 --- /dev/null +++ b/pages.ko/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> 이 명령은 `-p linux false` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux false` diff --git a/pages.ko/osx/gfgrep.md b/pages.ko/osx/gfgrep.md new file mode 100644 index 0000000000..623c663441 --- /dev/null +++ b/pages.ko/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> 이 명령은 `-p linux fgrep` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux fgrep` diff --git a/pages.ko/osx/gfind.md b/pages.ko/osx/gfind.md new file mode 100644 index 0000000000..60a8210a09 --- /dev/null +++ b/pages.ko/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> 이 명령은 `-p linux find` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux find` diff --git a/pages.ko/osx/gfmt.md b/pages.ko/osx/gfmt.md new file mode 100644 index 0000000000..de8d5301d1 --- /dev/null +++ b/pages.ko/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> 이 명령은 `-p linux fmt` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux fmt` diff --git a/pages.ko/osx/gfold.md b/pages.ko/osx/gfold.md new file mode 100644 index 0000000000..a4a1fc79f9 --- /dev/null +++ b/pages.ko/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> 이 명령은 `-p linux fold` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux fold` diff --git a/pages.ko/osx/gftp.md b/pages.ko/osx/gftp.md new file mode 100644 index 0000000000..e629284436 --- /dev/null +++ b/pages.ko/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> 이 명령은 `-p linux ftp` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux ftp` diff --git a/pages.ko/osx/ggrep.md b/pages.ko/osx/ggrep.md new file mode 100644 index 0000000000..b5ad7b3356 --- /dev/null +++ b/pages.ko/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> 이 명령은 `-p linux grep` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux grep` diff --git a/pages.ko/osx/ggroups.md b/pages.ko/osx/ggroups.md new file mode 100644 index 0000000000..df02d8ee2a --- /dev/null +++ b/pages.ko/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> 이 명령은 `-p linux groups` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux groups` diff --git a/pages.ko/osx/ghead.md b/pages.ko/osx/ghead.md new file mode 100644 index 0000000000..df0da7f2cd --- /dev/null +++ b/pages.ko/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> 이 명령은 `-p linux head` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux head` diff --git a/pages.ko/osx/ghostid.md b/pages.ko/osx/ghostid.md new file mode 100644 index 0000000000..520e9e4a87 --- /dev/null +++ b/pages.ko/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> 이 명령은 `-p linux hostid` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux hostid` diff --git a/pages.ko/osx/ghostname.md b/pages.ko/osx/ghostname.md new file mode 100644 index 0000000000..a1d6e234f8 --- /dev/null +++ b/pages.ko/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> 이 명령은 `-p linux hostname` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux hostname` diff --git a/pages.ko/osx/gid.md b/pages.ko/osx/gid.md new file mode 100644 index 0000000000..a225904ba6 --- /dev/null +++ b/pages.ko/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> 이 명령은 `-p linux id` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux id` diff --git a/pages.ko/osx/gifconfig.md b/pages.ko/osx/gifconfig.md new file mode 100644 index 0000000000..c947b4cd14 --- /dev/null +++ b/pages.ko/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> 이 명령은 `-p linux ifconfig` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux ifconfig` diff --git a/pages.ko/osx/gindent.md b/pages.ko/osx/gindent.md new file mode 100644 index 0000000000..3a3f16241a --- /dev/null +++ b/pages.ko/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> 이 명령은 `-p linux indent` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux indent` diff --git a/pages.ko/osx/ginstall.md b/pages.ko/osx/ginstall.md new file mode 100644 index 0000000000..bef83cfb40 --- /dev/null +++ b/pages.ko/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> 이 명령은 `-p linux install` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux install` diff --git a/pages.ko/osx/gjoin.md b/pages.ko/osx/gjoin.md new file mode 100644 index 0000000000..75add678f8 --- /dev/null +++ b/pages.ko/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> 이 명령은 `-p linux join` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux join` diff --git a/pages.ko/osx/gkill.md b/pages.ko/osx/gkill.md new file mode 100644 index 0000000000..d7c85680e1 --- /dev/null +++ b/pages.ko/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> 이 명령은 `-p linux kill` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux kill` diff --git a/pages.ko/osx/glibtool.md b/pages.ko/osx/glibtool.md new file mode 100644 index 0000000000..d5459e15ef --- /dev/null +++ b/pages.ko/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> 이 명령은 `-p linux libtool` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux libtool` diff --git a/pages.ko/osx/glibtoolize.md b/pages.ko/osx/glibtoolize.md new file mode 100644 index 0000000000..5493722eaa --- /dev/null +++ b/pages.ko/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> 이 명령은 `-p linux libtoolize` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux libtoolize` diff --git a/pages.ko/osx/glink.md b/pages.ko/osx/glink.md new file mode 100644 index 0000000000..7f57d6078a --- /dev/null +++ b/pages.ko/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> 이 명령은 `-p linux link` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux link` diff --git a/pages.ko/osx/gln.md b/pages.ko/osx/gln.md new file mode 100644 index 0000000000..605d5054a4 --- /dev/null +++ b/pages.ko/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> 이 명령은 `-p linux ln` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux ln` diff --git a/pages.ko/osx/glocate.md b/pages.ko/osx/glocate.md new file mode 100644 index 0000000000..49ff9db99c --- /dev/null +++ b/pages.ko/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> 이 명령은 `-p linux locate` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux locate` diff --git a/pages.ko/osx/glogger.md b/pages.ko/osx/glogger.md new file mode 100644 index 0000000000..6fc9a91c17 --- /dev/null +++ b/pages.ko/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> 이 명령은 `-p linux logger` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux logger` diff --git a/pages.ko/osx/glogname.md b/pages.ko/osx/glogname.md new file mode 100644 index 0000000000..d654eb70c6 --- /dev/null +++ b/pages.ko/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> 이 명령은 `-p linux logname` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux logname` diff --git a/pages.ko/osx/gls.md b/pages.ko/osx/gls.md new file mode 100644 index 0000000000..e497d241e9 --- /dev/null +++ b/pages.ko/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> 이 명령은 `-p linux ls` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux ls` diff --git a/pages.ko/osx/gmake.md b/pages.ko/osx/gmake.md new file mode 100644 index 0000000000..9f419c0058 --- /dev/null +++ b/pages.ko/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> 이 명령은 `-p linux make` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux make` diff --git a/pages.ko/osx/gmd5sum.md b/pages.ko/osx/gmd5sum.md new file mode 100644 index 0000000000..4ffe205f2b --- /dev/null +++ b/pages.ko/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> 이 명령은 `-p linux md5sum` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux md5sum` diff --git a/pages.ko/osx/gmkdir.md b/pages.ko/osx/gmkdir.md new file mode 100644 index 0000000000..130ec4cd2b --- /dev/null +++ b/pages.ko/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> 이 명령은 `-p linux mkdir` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux mkdir` diff --git a/pages.ko/osx/gmkfifo.md b/pages.ko/osx/gmkfifo.md new file mode 100644 index 0000000000..09eeae95da --- /dev/null +++ b/pages.ko/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> 이 명령은 `-p linux mkfifo` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux mkfifo` diff --git a/pages.ko/osx/gmknod.md b/pages.ko/osx/gmknod.md new file mode 100644 index 0000000000..ab119b8c6b --- /dev/null +++ b/pages.ko/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> 이 명령은 `-p linux mknod` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux mknod` diff --git a/pages.ko/osx/gmktemp.md b/pages.ko/osx/gmktemp.md new file mode 100644 index 0000000000..0d22b01be0 --- /dev/null +++ b/pages.ko/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> 이 명령은 `-p linux mktemp` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux mktemp` diff --git a/pages.ko/osx/gmv.md b/pages.ko/osx/gmv.md new file mode 100644 index 0000000000..71644137d8 --- /dev/null +++ b/pages.ko/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> 이 명령은 `-p linux mv` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux mv` diff --git a/pages.ko/osx/gnice.md b/pages.ko/osx/gnice.md new file mode 100644 index 0000000000..26b5735f2a --- /dev/null +++ b/pages.ko/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> 이 명령은 `-p linux nice` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux nice` diff --git a/pages.ko/osx/gnl.md b/pages.ko/osx/gnl.md new file mode 100644 index 0000000000..814891b164 --- /dev/null +++ b/pages.ko/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> 이 명령은 `-p linux nl` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux nl` diff --git a/pages.ko/osx/gnohup.md b/pages.ko/osx/gnohup.md new file mode 100644 index 0000000000..fae9a73aeb --- /dev/null +++ b/pages.ko/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> 이 명령은 `-p linux nohup` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux nohup` diff --git a/pages.ko/osx/gnproc.md b/pages.ko/osx/gnproc.md new file mode 100644 index 0000000000..8f952e5406 --- /dev/null +++ b/pages.ko/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> 이 명령은 `-p linux nproc` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux nproc` diff --git a/pages.ko/osx/gnumfmt.md b/pages.ko/osx/gnumfmt.md new file mode 100644 index 0000000000..708f78c498 --- /dev/null +++ b/pages.ko/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> 이 명령은 `-p linux numfmt` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux numfmt` diff --git a/pages.ko/osx/god.md b/pages.ko/osx/god.md new file mode 100644 index 0000000000..a53b68bef5 --- /dev/null +++ b/pages.ko/osx/god.md @@ -0,0 +1,7 @@ +# god + +> 이 명령은 `-p linux od` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux od` diff --git a/pages.ko/osx/gpaste.md b/pages.ko/osx/gpaste.md new file mode 100644 index 0000000000..4550ba608b --- /dev/null +++ b/pages.ko/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> 이 명령은 `-p linux paste` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux paste` diff --git a/pages.ko/osx/gpathchk.md b/pages.ko/osx/gpathchk.md new file mode 100644 index 0000000000..d87de7872a --- /dev/null +++ b/pages.ko/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> 이 명령은 `-p linux pathchk` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux pathchk` diff --git a/pages.ko/osx/gping.md b/pages.ko/osx/gping.md new file mode 100644 index 0000000000..439b9e0c7a --- /dev/null +++ b/pages.ko/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> 이 명령은 `-p linux ping` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux ping` diff --git a/pages.ko/osx/gping6.md b/pages.ko/osx/gping6.md new file mode 100644 index 0000000000..94b0505f8d --- /dev/null +++ b/pages.ko/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> 이 명령은 `-p linux ping6` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux ping6` diff --git a/pages.ko/osx/gpinky.md b/pages.ko/osx/gpinky.md new file mode 100644 index 0000000000..ce4bff162b --- /dev/null +++ b/pages.ko/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> 이 명령은 `-p linux pinky` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux pinky` diff --git a/pages.ko/osx/gpr.md b/pages.ko/osx/gpr.md new file mode 100644 index 0000000000..cc9ec006d0 --- /dev/null +++ b/pages.ko/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> 이 명령은 `-p linux pr` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux pr` diff --git a/pages.ko/osx/gprintenv.md b/pages.ko/osx/gprintenv.md new file mode 100644 index 0000000000..2428de075f --- /dev/null +++ b/pages.ko/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> 이 명령은 `-p linux printenv` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux printenv` diff --git a/pages.ko/osx/gprintf.md b/pages.ko/osx/gprintf.md new file mode 100644 index 0000000000..cd5b5c17be --- /dev/null +++ b/pages.ko/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> 이 명령은 `-p linux printf` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux printf` diff --git a/pages.ko/osx/gptx.md b/pages.ko/osx/gptx.md new file mode 100644 index 0000000000..bc3baa82c9 --- /dev/null +++ b/pages.ko/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> 이 명령은 `-p linux ptx` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux ptx` diff --git a/pages.ko/osx/gpwd.md b/pages.ko/osx/gpwd.md new file mode 100644 index 0000000000..ade2c2e9b2 --- /dev/null +++ b/pages.ko/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> 이 명령은 `-p linux pwd` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux pwd` diff --git a/pages.ko/osx/grcp.md b/pages.ko/osx/grcp.md new file mode 100644 index 0000000000..13907278bb --- /dev/null +++ b/pages.ko/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> 이 명령은 `-p linux rcp` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux rcp` diff --git a/pages.ko/osx/greadlink.md b/pages.ko/osx/greadlink.md new file mode 100644 index 0000000000..72da4970a2 --- /dev/null +++ b/pages.ko/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> 이 명령은 `-p linux readlink` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux readlink` diff --git a/pages.ko/osx/grealpath.md b/pages.ko/osx/grealpath.md new file mode 100644 index 0000000000..3a322775e3 --- /dev/null +++ b/pages.ko/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> 이 명령은 `-p linux realpath` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux realpath` diff --git a/pages.ko/osx/grexec.md b/pages.ko/osx/grexec.md new file mode 100644 index 0000000000..71dab8c3d5 --- /dev/null +++ b/pages.ko/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> 이 명령은 `-p linux rexec` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux rexec` diff --git a/pages.ko/osx/grlogin.md b/pages.ko/osx/grlogin.md new file mode 100644 index 0000000000..23db15ab2e --- /dev/null +++ b/pages.ko/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> 이 명령은 `-p linux rlogin` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux rlogin` diff --git a/pages.ko/osx/grm.md b/pages.ko/osx/grm.md new file mode 100644 index 0000000000..38cc346862 --- /dev/null +++ b/pages.ko/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> 이 명령은 `-p linux rm` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux rm` diff --git a/pages.ko/osx/grmdir.md b/pages.ko/osx/grmdir.md new file mode 100644 index 0000000000..8788fb7136 --- /dev/null +++ b/pages.ko/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> 이 명령은 `-p linux rmdir` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux rmdir` diff --git a/pages.ko/osx/grsh.md b/pages.ko/osx/grsh.md new file mode 100644 index 0000000000..91e313738d --- /dev/null +++ b/pages.ko/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> 이 명령은 `-p linux rsh` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux rsh` diff --git a/pages.ko/osx/gruncon.md b/pages.ko/osx/gruncon.md new file mode 100644 index 0000000000..b16d85b59d --- /dev/null +++ b/pages.ko/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> 이 명령은 `-p linux runcon` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux runcon` diff --git a/pages.ko/osx/gsed.md b/pages.ko/osx/gsed.md new file mode 100644 index 0000000000..7f6fc8e7bc --- /dev/null +++ b/pages.ko/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> 이 명령은 `-p linux sed` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux sed` diff --git a/pages.ko/osx/gseq.md b/pages.ko/osx/gseq.md new file mode 100644 index 0000000000..d725cff4b6 --- /dev/null +++ b/pages.ko/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> 이 명령은 `-p linux seq` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux seq` diff --git a/pages.ko/osx/gsha1sum.md b/pages.ko/osx/gsha1sum.md new file mode 100644 index 0000000000..1f949c6261 --- /dev/null +++ b/pages.ko/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> 이 명령은 `-p linux sha1sum` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux sha1sum` diff --git a/pages.ko/osx/gsha224sum.md b/pages.ko/osx/gsha224sum.md new file mode 100644 index 0000000000..9255a451a5 --- /dev/null +++ b/pages.ko/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> 이 명령은 `-p linux sha224sum` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux sha224sum` diff --git a/pages.ko/osx/gsha256sum.md b/pages.ko/osx/gsha256sum.md new file mode 100644 index 0000000000..a3df186194 --- /dev/null +++ b/pages.ko/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> 이 명령은 `-p linux sha256sum` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux sha256sum` diff --git a/pages.ko/osx/gsha384sum.md b/pages.ko/osx/gsha384sum.md new file mode 100644 index 0000000000..0e4d328f0d --- /dev/null +++ b/pages.ko/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> 이 명령은 `-p linux sha384sum` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux sha384sum` diff --git a/pages.ko/osx/gsha512sum.md b/pages.ko/osx/gsha512sum.md new file mode 100644 index 0000000000..0bc9bec000 --- /dev/null +++ b/pages.ko/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> 이 명령은 `-p linux sha512sum` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux sha512sum` diff --git a/pages.ko/osx/gshred.md b/pages.ko/osx/gshred.md new file mode 100644 index 0000000000..1dd9037be0 --- /dev/null +++ b/pages.ko/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> 이 명령은 `-p linux shred` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux shred` diff --git a/pages.ko/osx/gshuf.md b/pages.ko/osx/gshuf.md new file mode 100644 index 0000000000..8a5b271f9c --- /dev/null +++ b/pages.ko/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> 이 명령은 `-p linux shuf` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux shuf` diff --git a/pages.ko/osx/gsleep.md b/pages.ko/osx/gsleep.md new file mode 100644 index 0000000000..fb41879b4a --- /dev/null +++ b/pages.ko/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> 이 명령은 `-p linux sleep` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux sleep` diff --git a/pages.ko/osx/gsort.md b/pages.ko/osx/gsort.md new file mode 100644 index 0000000000..ffcda6facc --- /dev/null +++ b/pages.ko/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> 이 명령은 `-p linux sort` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux sort` diff --git a/pages.ko/osx/gsplit.md b/pages.ko/osx/gsplit.md new file mode 100644 index 0000000000..4d0a47872b --- /dev/null +++ b/pages.ko/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> 이 명령은 `-p linux split` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux split` diff --git a/pages.ko/osx/gstat.md b/pages.ko/osx/gstat.md new file mode 100644 index 0000000000..7f0d907986 --- /dev/null +++ b/pages.ko/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> 이 명령은 `-p linux stat` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux stat` diff --git a/pages.ko/osx/gstdbuf.md b/pages.ko/osx/gstdbuf.md new file mode 100644 index 0000000000..7c07c0325c --- /dev/null +++ b/pages.ko/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> 이 명령은 `-p linux stdbuf` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux stdbuf` diff --git a/pages.ko/osx/gstty.md b/pages.ko/osx/gstty.md new file mode 100644 index 0000000000..e21bcf8c19 --- /dev/null +++ b/pages.ko/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> 이 명령은 `-p linux stty` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux stty` diff --git a/pages.ko/osx/gsum.md b/pages.ko/osx/gsum.md new file mode 100644 index 0000000000..b451ca6d3f --- /dev/null +++ b/pages.ko/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> 이 명령은 `-p linux sum` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux sum` diff --git a/pages.ko/osx/gsync.md b/pages.ko/osx/gsync.md new file mode 100644 index 0000000000..8857afbe14 --- /dev/null +++ b/pages.ko/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> 이 명령은 `-p linux sync` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux sync` diff --git a/pages.ko/osx/gtac.md b/pages.ko/osx/gtac.md new file mode 100644 index 0000000000..631426ef94 --- /dev/null +++ b/pages.ko/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> 이 명령은 `-p linux tac` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux tac` diff --git a/pages.ko/osx/gtail.md b/pages.ko/osx/gtail.md new file mode 100644 index 0000000000..47dac19532 --- /dev/null +++ b/pages.ko/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> 이 명령은 `-p linux tail` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux tail` diff --git a/pages.ko/osx/gtalk.md b/pages.ko/osx/gtalk.md new file mode 100644 index 0000000000..fea890bcba --- /dev/null +++ b/pages.ko/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> 이 명령은 `-p linux talk` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux talk` diff --git a/pages.ko/osx/gtar.md b/pages.ko/osx/gtar.md new file mode 100644 index 0000000000..cf2300c7a6 --- /dev/null +++ b/pages.ko/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> 이 명령은 `-p linux tar` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux tar` diff --git a/pages.ko/osx/gtee.md b/pages.ko/osx/gtee.md new file mode 100644 index 0000000000..32d2641ba1 --- /dev/null +++ b/pages.ko/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> 이 명령은 `-p linux tee` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux tee` diff --git a/pages.ko/osx/gtelnet.md b/pages.ko/osx/gtelnet.md new file mode 100644 index 0000000000..10206c8c3f --- /dev/null +++ b/pages.ko/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> 이 명령은 `-p linux telnet` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux telnet` diff --git a/pages.ko/osx/gtest.md b/pages.ko/osx/gtest.md new file mode 100644 index 0000000000..bc46762656 --- /dev/null +++ b/pages.ko/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> 이 명령은 `-p linux test` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux test` diff --git a/pages.ko/osx/gtftp.md b/pages.ko/osx/gtftp.md new file mode 100644 index 0000000000..aa0b477779 --- /dev/null +++ b/pages.ko/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> 이 명령은 `-p linux tftp` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux tftp` diff --git a/pages.ko/osx/gtime.md b/pages.ko/osx/gtime.md new file mode 100644 index 0000000000..89459d0a8c --- /dev/null +++ b/pages.ko/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> 이 명령은 `-p linux time` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux time` diff --git a/pages.ko/osx/gtimeout.md b/pages.ko/osx/gtimeout.md new file mode 100644 index 0000000000..a459b97c72 --- /dev/null +++ b/pages.ko/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> 이 명령은 `-p linux timeout` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux timeout` diff --git a/pages.ko/osx/gtouch.md b/pages.ko/osx/gtouch.md new file mode 100644 index 0000000000..fd24bf7f2c --- /dev/null +++ b/pages.ko/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> 이 명령은 `-p linux touch` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux touch` diff --git a/pages.ko/osx/gtr.md b/pages.ko/osx/gtr.md new file mode 100644 index 0000000000..9396ad704e --- /dev/null +++ b/pages.ko/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> 이 명령은 `-p linux tr` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux tr` diff --git a/pages.ko/osx/gtraceroute.md b/pages.ko/osx/gtraceroute.md new file mode 100644 index 0000000000..6fec390db2 --- /dev/null +++ b/pages.ko/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> 이 명령은 `-p linux traceroute` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux traceroute` diff --git a/pages.ko/osx/gtrue.md b/pages.ko/osx/gtrue.md new file mode 100644 index 0000000000..6b928f8fd1 --- /dev/null +++ b/pages.ko/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> 이 명령은 `-p linux true` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux true` diff --git a/pages.ko/osx/gtruncate.md b/pages.ko/osx/gtruncate.md new file mode 100644 index 0000000000..7469c91c82 --- /dev/null +++ b/pages.ko/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> 이 명령은 `-p linux truncate` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux truncate` diff --git a/pages.ko/osx/gtsort.md b/pages.ko/osx/gtsort.md new file mode 100644 index 0000000000..19c5eceb99 --- /dev/null +++ b/pages.ko/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> 이 명령은 `-p linux tsort` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux tsort` diff --git a/pages.ko/osx/gtty.md b/pages.ko/osx/gtty.md new file mode 100644 index 0000000000..f9857c4f61 --- /dev/null +++ b/pages.ko/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> 이 명령은 `-p linux tty` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux tty` diff --git a/pages.ko/osx/guname.md b/pages.ko/osx/guname.md new file mode 100644 index 0000000000..4677fc88c5 --- /dev/null +++ b/pages.ko/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> 이 명령은 `-p linux uname` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux uname` diff --git a/pages.ko/osx/gunexpand.md b/pages.ko/osx/gunexpand.md new file mode 100644 index 0000000000..323b2082e4 --- /dev/null +++ b/pages.ko/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> 이 명령은 `-p linux unexpand` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux unexpand` diff --git a/pages.ko/osx/guniq.md b/pages.ko/osx/guniq.md new file mode 100644 index 0000000000..023bcc1b50 --- /dev/null +++ b/pages.ko/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> 이 명령은 `-p linux uniq` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux uniq` diff --git a/pages.ko/osx/gunits.md b/pages.ko/osx/gunits.md new file mode 100644 index 0000000000..938aae93f1 --- /dev/null +++ b/pages.ko/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> 이 명령은 `-p linux units` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux units` diff --git a/pages.ko/osx/gunlink.md b/pages.ko/osx/gunlink.md new file mode 100644 index 0000000000..0866edba0f --- /dev/null +++ b/pages.ko/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> 이 명령은 `-p linux unlink` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux unlink` diff --git a/pages.ko/osx/gupdatedb.md b/pages.ko/osx/gupdatedb.md new file mode 100644 index 0000000000..584c846772 --- /dev/null +++ b/pages.ko/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> 이 명령은 `-p linux updatedb` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux updatedb` diff --git a/pages.ko/osx/guptime.md b/pages.ko/osx/guptime.md new file mode 100644 index 0000000000..27fcbf1923 --- /dev/null +++ b/pages.ko/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> 이 명령은 `-p linux uptime` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux uptime` diff --git a/pages.ko/osx/gusers.md b/pages.ko/osx/gusers.md new file mode 100644 index 0000000000..07e28141c5 --- /dev/null +++ b/pages.ko/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> 이 명령은 `-p linux users` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux users` diff --git a/pages.ko/osx/gvdir.md b/pages.ko/osx/gvdir.md new file mode 100644 index 0000000000..2c13904391 --- /dev/null +++ b/pages.ko/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> 이 명령은 `-p linux vdir` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux vdir` diff --git a/pages.ko/osx/gwc.md b/pages.ko/osx/gwc.md new file mode 100644 index 0000000000..f0b3aa6d65 --- /dev/null +++ b/pages.ko/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> 이 명령은 `-p linux wc` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux wc` diff --git a/pages.ko/osx/gwhich.md b/pages.ko/osx/gwhich.md new file mode 100644 index 0000000000..c23e7d0a82 --- /dev/null +++ b/pages.ko/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> 이 명령은 `-p linux which` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux which` diff --git a/pages.ko/osx/gwho.md b/pages.ko/osx/gwho.md new file mode 100644 index 0000000000..b1f474fca5 --- /dev/null +++ b/pages.ko/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> 이 명령은 `-p linux who` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux who` diff --git a/pages.ko/osx/gwhoami.md b/pages.ko/osx/gwhoami.md new file mode 100644 index 0000000000..0afb4a9b6a --- /dev/null +++ b/pages.ko/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> 이 명령은 `-p linux whoami` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux whoami` diff --git a/pages.ko/osx/gwhois.md b/pages.ko/osx/gwhois.md new file mode 100644 index 0000000000..a44f5c831d --- /dev/null +++ b/pages.ko/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> 이 명령은 `-p linux whois` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux whois` diff --git a/pages.ko/osx/gxargs.md b/pages.ko/osx/gxargs.md new file mode 100644 index 0000000000..ed164d7372 --- /dev/null +++ b/pages.ko/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> 이 명령은 `-p linux xargs` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux xargs` diff --git a/pages.ko/osx/gyes.md b/pages.ko/osx/gyes.md new file mode 100644 index 0000000000..af4ad53691 --- /dev/null +++ b/pages.ko/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> 이 명령은 `-p linux yes` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr -p linux yes` diff --git a/pages.ko/osx/launchd.md b/pages.ko/osx/launchd.md new file mode 100644 index 0000000000..7b91447314 --- /dev/null +++ b/pages.ko/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> 이 명령은 `launchctl` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr launchctl` diff --git a/pages.ko/windows/chrome.md b/pages.ko/windows/chrome.md new file mode 100644 index 0000000000..591b620492 --- /dev/null +++ b/pages.ko/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> 이 명령은 `chromium` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr chromium` diff --git a/pages.ko/windows/cinst.md b/pages.ko/windows/cinst.md new file mode 100644 index 0000000000..6872a087d0 --- /dev/null +++ b/pages.ko/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> 이 명령은 `choco install` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr choco install` diff --git a/pages.ko/windows/clist.md b/pages.ko/windows/clist.md new file mode 100644 index 0000000000..5f1342aa28 --- /dev/null +++ b/pages.ko/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> 이 명령은 `choco list` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr choco list` diff --git a/pages.ko/windows/cpush.md b/pages.ko/windows/cpush.md new file mode 100644 index 0000000000..353a42d3f6 --- /dev/null +++ b/pages.ko/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> 이 명령은 `choco-push` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr choco-push` diff --git a/pages.ko/windows/cuninst.md b/pages.ko/windows/cuninst.md new file mode 100644 index 0000000000..94bb308c07 --- /dev/null +++ b/pages.ko/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> 이 명령은 `choco uninstall` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr choco uninstall` diff --git a/pages.ko/windows/curl.md b/pages.ko/windows/curl.md new file mode 100644 index 0000000000..04523d6d1b --- /dev/null +++ b/pages.ko/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> 이 명령은 `curl -p common` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr curl -p common` diff --git a/pages.ko/windows/iwr.md b/pages.ko/windows/iwr.md new file mode 100644 index 0000000000..35f16d6b62 --- /dev/null +++ b/pages.ko/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> 이 명령은 `invoke-webrequest` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr invoke-webrequest` diff --git a/pages.ko/windows/pwsh-where.md b/pages.ko/windows/pwsh-where.md new file mode 100644 index 0000000000..8047e23437 --- /dev/null +++ b/pages.ko/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> 이 명령은 `Where-Object` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr Where-Object` diff --git a/pages.ko/windows/rd.md b/pages.ko/windows/rd.md new file mode 100644 index 0000000000..200d29fb2e --- /dev/null +++ b/pages.ko/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> 이 명령은 `rmdir` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr rmdir` diff --git a/pages.ko/windows/sls.md b/pages.ko/windows/sls.md new file mode 100644 index 0000000000..636560e11d --- /dev/null +++ b/pages.ko/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> 이 명령은 `where-object` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr where-object` diff --git a/pages.ko/windows/wget.md b/pages.ko/windows/wget.md new file mode 100644 index 0000000000..ac0712052b --- /dev/null +++ b/pages.ko/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> 이 명령은 `wget -p common` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr wget -p common` diff --git a/pages.lo/common/bundler.md b/pages.lo/common/bundler.md new file mode 100644 index 0000000000..d9b53f8367 --- /dev/null +++ b/pages.lo/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `bundle`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr bundle` diff --git a/pages.lo/common/clamav.md b/pages.lo/common/clamav.md new file mode 100644 index 0000000000..c0fe7ef88d --- /dev/null +++ b/pages.lo/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `clamdscan`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr clamdscan` diff --git a/pages.lo/common/cron.md b/pages.lo/common/cron.md new file mode 100644 index 0000000000..825fb61590 --- /dev/null +++ b/pages.lo/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `crontab`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr crontab` diff --git a/pages.lo/common/fossil-ci.md b/pages.lo/common/fossil-ci.md new file mode 100644 index 0000000000..267ba07282 --- /dev/null +++ b/pages.lo/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `fossil-commit`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr fossil-commit` diff --git a/pages.lo/common/fossil-delete.md b/pages.lo/common/fossil-delete.md new file mode 100644 index 0000000000..3f97df4215 --- /dev/null +++ b/pages.lo/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `fossil rm`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr fossil rm` diff --git a/pages.lo/common/fossil-forget.md b/pages.lo/common/fossil-forget.md new file mode 100644 index 0000000000..dd9d7e779e --- /dev/null +++ b/pages.lo/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `fossil rm`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr fossil rm` diff --git a/pages.lo/common/fossil-new.md b/pages.lo/common/fossil-new.md new file mode 100644 index 0000000000..7f261bf6ef --- /dev/null +++ b/pages.lo/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `fossil-init`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr fossil-init` diff --git a/pages.lo/common/gh-cs.md b/pages.lo/common/gh-cs.md new file mode 100644 index 0000000000..812206519b --- /dev/null +++ b/pages.lo/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `gh-codespace`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr gh-codespace` diff --git a/pages.lo/common/gnmic-sub.md b/pages.lo/common/gnmic-sub.md new file mode 100644 index 0000000000..2acd695c3c --- /dev/null +++ b/pages.lo/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `gnmic subscribe`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr gnmic subscribe` diff --git a/pages.lo/common/google-chrome.md b/pages.lo/common/google-chrome.md new file mode 100644 index 0000000000..bde3acc9ea --- /dev/null +++ b/pages.lo/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `chromium`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr chromium` diff --git a/pages.lo/common/hx.md b/pages.lo/common/hx.md new file mode 100644 index 0000000000..6e3cfc52a1 --- /dev/null +++ b/pages.lo/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `helix`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr helix` diff --git a/pages.lo/common/kafkacat.md b/pages.lo/common/kafkacat.md new file mode 100644 index 0000000000..3ec124418b --- /dev/null +++ b/pages.lo/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `kcat`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr kcat` diff --git a/pages.lo/common/lzcat.md b/pages.lo/common/lzcat.md new file mode 100644 index 0000000000..b80f469ce5 --- /dev/null +++ b/pages.lo/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `xz`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr xz` diff --git a/pages.lo/common/lzma.md b/pages.lo/common/lzma.md new file mode 100644 index 0000000000..5571bcbd8d --- /dev/null +++ b/pages.lo/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `xz`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr xz` diff --git a/pages.lo/common/nm-classic.md b/pages.lo/common/nm-classic.md new file mode 100644 index 0000000000..c7a360ea96 --- /dev/null +++ b/pages.lo/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `nm`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr nm` diff --git a/pages.lo/common/ntl.md b/pages.lo/common/ntl.md new file mode 100644 index 0000000000..ddc938258b --- /dev/null +++ b/pages.lo/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `netlify`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr netlify` diff --git a/pages.lo/common/ptpython3.md b/pages.lo/common/ptpython3.md new file mode 100644 index 0000000000..8dd56d9fbe --- /dev/null +++ b/pages.lo/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `ptpython`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr ptpython` diff --git a/pages.lo/common/python3.md b/pages.lo/common/python3.md new file mode 100644 index 0000000000..65bf088a7f --- /dev/null +++ b/pages.lo/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `python`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr python` diff --git a/pages.lo/common/rcat.md b/pages.lo/common/rcat.md new file mode 100644 index 0000000000..f8e07e651d --- /dev/null +++ b/pages.lo/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `rc`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr rc` diff --git a/pages.lo/common/ripgrep.md b/pages.lo/common/ripgrep.md new file mode 100644 index 0000000000..9a74b76a79 --- /dev/null +++ b/pages.lo/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `rg`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr rg` diff --git a/pages.lo/common/todoman.md b/pages.lo/common/todoman.md new file mode 100644 index 0000000000..68ac3ca71d --- /dev/null +++ b/pages.lo/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `todo`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr todo` diff --git a/pages.lo/common/transmission.md b/pages.lo/common/transmission.md new file mode 100644 index 0000000000..4485d61bbe --- /dev/null +++ b/pages.lo/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `transmission-daemon`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr transmission-daemon` diff --git a/pages.lo/common/unlzma.md b/pages.lo/common/unlzma.md new file mode 100644 index 0000000000..66907105df --- /dev/null +++ b/pages.lo/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `xz`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr xz` diff --git a/pages.lo/common/unxz.md b/pages.lo/common/unxz.md new file mode 100644 index 0000000000..0e75b939f9 --- /dev/null +++ b/pages.lo/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `xz`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr xz` diff --git a/pages.lo/common/xzcat.md b/pages.lo/common/xzcat.md new file mode 100644 index 0000000000..72a9a2817f --- /dev/null +++ b/pages.lo/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `xz`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr xz` diff --git a/pages.lo/linux/alternatives.md b/pages.lo/linux/alternatives.md new file mode 100644 index 0000000000..8ac9f9a5c3 --- /dev/null +++ b/pages.lo/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `update-alternatives`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr update-alternatives` diff --git a/pages.lo/linux/batcat.md b/pages.lo/linux/batcat.md new file mode 100644 index 0000000000..d4886b291a --- /dev/null +++ b/pages.lo/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `bat`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr bat` diff --git a/pages.lo/linux/bspwm.md b/pages.lo/linux/bspwm.md new file mode 100644 index 0000000000..e4494a6ae0 --- /dev/null +++ b/pages.lo/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `bspc`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr bspc` diff --git a/pages.lo/linux/cc.md b/pages.lo/linux/cc.md new file mode 100644 index 0000000000..60ee1dcc67 --- /dev/null +++ b/pages.lo/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `gcc`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr gcc` diff --git a/pages.lo/linux/cgroups.md b/pages.lo/linux/cgroups.md new file mode 100644 index 0000000000..8fa4e834b8 --- /dev/null +++ b/pages.lo/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `cgclassify`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr cgclassify` diff --git a/pages.lo/linux/ip-route-list.md b/pages.lo/linux/ip-route-list.md new file mode 100644 index 0000000000..9d2b67301c --- /dev/null +++ b/pages.lo/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `ip-route-show`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr ip-route-show` diff --git a/pages.lo/linux/megadl.md b/pages.lo/linux/megadl.md new file mode 100644 index 0000000000..9d9f925044 --- /dev/null +++ b/pages.lo/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `megatools-dl`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr megatools-dl` diff --git a/pages.lo/linux/ubuntu-bug.md b/pages.lo/linux/ubuntu-bug.md new file mode 100644 index 0000000000..207bf15922 --- /dev/null +++ b/pages.lo/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `apport-bug`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr apport-bug` diff --git a/pages.lo/osx/aa.md b/pages.lo/osx/aa.md new file mode 100644 index 0000000000..9941d0ce49 --- /dev/null +++ b/pages.lo/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `yaa`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr yaa` diff --git a/pages.lo/osx/g[.md b/pages.lo/osx/g[.md new file mode 100644 index 0000000000..b8d7464116 --- /dev/null +++ b/pages.lo/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux [`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux [` diff --git a/pages.lo/osx/gawk.md b/pages.lo/osx/gawk.md new file mode 100644 index 0000000000..2d182a6a28 --- /dev/null +++ b/pages.lo/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux awk`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux awk` diff --git a/pages.lo/osx/gb2sum.md b/pages.lo/osx/gb2sum.md new file mode 100644 index 0000000000..6e94ed34ae --- /dev/null +++ b/pages.lo/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux b2sum`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux b2sum` diff --git a/pages.lo/osx/gbase32.md b/pages.lo/osx/gbase32.md new file mode 100644 index 0000000000..3ff2c82369 --- /dev/null +++ b/pages.lo/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux base32`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux base32` diff --git a/pages.lo/osx/gbase64.md b/pages.lo/osx/gbase64.md new file mode 100644 index 0000000000..8a3fe2eecd --- /dev/null +++ b/pages.lo/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux base64`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux base64` diff --git a/pages.lo/osx/gbasename.md b/pages.lo/osx/gbasename.md new file mode 100644 index 0000000000..700332ac4b --- /dev/null +++ b/pages.lo/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux basename`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux basename` diff --git a/pages.lo/osx/gbasenc.md b/pages.lo/osx/gbasenc.md new file mode 100644 index 0000000000..691a93ca7a --- /dev/null +++ b/pages.lo/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux basenc`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux basenc` diff --git a/pages.lo/osx/gcat.md b/pages.lo/osx/gcat.md new file mode 100644 index 0000000000..57b1c1c81d --- /dev/null +++ b/pages.lo/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux cat`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux cat` diff --git a/pages.lo/osx/gchcon.md b/pages.lo/osx/gchcon.md new file mode 100644 index 0000000000..cf57a47b9e --- /dev/null +++ b/pages.lo/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux chcon`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux chcon` diff --git a/pages.lo/osx/gchgrp.md b/pages.lo/osx/gchgrp.md new file mode 100644 index 0000000000..69b6493b9e --- /dev/null +++ b/pages.lo/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux chgrp`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux chgrp` diff --git a/pages.lo/osx/gchmod.md b/pages.lo/osx/gchmod.md new file mode 100644 index 0000000000..82099897d5 --- /dev/null +++ b/pages.lo/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux chmod`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux chmod` diff --git a/pages.lo/osx/gchown.md b/pages.lo/osx/gchown.md new file mode 100644 index 0000000000..a5fc4c1ce3 --- /dev/null +++ b/pages.lo/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux chown`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux chown` diff --git a/pages.lo/osx/gchroot.md b/pages.lo/osx/gchroot.md new file mode 100644 index 0000000000..20f8a6e9fd --- /dev/null +++ b/pages.lo/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux chroot`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux chroot` diff --git a/pages.lo/osx/gcksum.md b/pages.lo/osx/gcksum.md new file mode 100644 index 0000000000..ff2449605e --- /dev/null +++ b/pages.lo/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux cksum`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux cksum` diff --git a/pages.lo/osx/gcomm.md b/pages.lo/osx/gcomm.md new file mode 100644 index 0000000000..11a2a51f73 --- /dev/null +++ b/pages.lo/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux comm`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux comm` diff --git a/pages.lo/osx/gcp.md b/pages.lo/osx/gcp.md new file mode 100644 index 0000000000..2aab86a667 --- /dev/null +++ b/pages.lo/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux cp`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux cp` diff --git a/pages.lo/osx/gcsplit.md b/pages.lo/osx/gcsplit.md new file mode 100644 index 0000000000..0dfb23c0f4 --- /dev/null +++ b/pages.lo/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux csplit`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux csplit` diff --git a/pages.lo/osx/gcut.md b/pages.lo/osx/gcut.md new file mode 100644 index 0000000000..ef03e21d29 --- /dev/null +++ b/pages.lo/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux cut`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux cut` diff --git a/pages.lo/osx/gdate.md b/pages.lo/osx/gdate.md new file mode 100644 index 0000000000..e7a69bec85 --- /dev/null +++ b/pages.lo/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux date`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux date` diff --git a/pages.lo/osx/gdd.md b/pages.lo/osx/gdd.md new file mode 100644 index 0000000000..0d980a393b --- /dev/null +++ b/pages.lo/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux dd`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux dd` diff --git a/pages.lo/osx/gdf.md b/pages.lo/osx/gdf.md new file mode 100644 index 0000000000..0e4d95ffc0 --- /dev/null +++ b/pages.lo/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux df`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux df` diff --git a/pages.lo/osx/gdir.md b/pages.lo/osx/gdir.md new file mode 100644 index 0000000000..801bd39a10 --- /dev/null +++ b/pages.lo/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux dir`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux dir` diff --git a/pages.lo/osx/gdircolors.md b/pages.lo/osx/gdircolors.md new file mode 100644 index 0000000000..fe2cc57d3e --- /dev/null +++ b/pages.lo/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux dircolors`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux dircolors` diff --git a/pages.lo/osx/gdirname.md b/pages.lo/osx/gdirname.md new file mode 100644 index 0000000000..2618b1612a --- /dev/null +++ b/pages.lo/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux dirname`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux dirname` diff --git a/pages.lo/osx/gdnsdomainname.md b/pages.lo/osx/gdnsdomainname.md new file mode 100644 index 0000000000..82c498419e --- /dev/null +++ b/pages.lo/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux dnsdomainname`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux dnsdomainname` diff --git a/pages.lo/osx/gecho.md b/pages.lo/osx/gecho.md new file mode 100644 index 0000000000..10d028e6fa --- /dev/null +++ b/pages.lo/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux echo`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux echo` diff --git a/pages.lo/osx/ged.md b/pages.lo/osx/ged.md new file mode 100644 index 0000000000..0bf057b546 --- /dev/null +++ b/pages.lo/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux ed`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux ed` diff --git a/pages.lo/osx/gegrep.md b/pages.lo/osx/gegrep.md new file mode 100644 index 0000000000..9014787d6d --- /dev/null +++ b/pages.lo/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux egrep`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux egrep` diff --git a/pages.lo/osx/genv.md b/pages.lo/osx/genv.md new file mode 100644 index 0000000000..ef1a3610a3 --- /dev/null +++ b/pages.lo/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux env`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux env` diff --git a/pages.lo/osx/gexpand.md b/pages.lo/osx/gexpand.md new file mode 100644 index 0000000000..cf54903dce --- /dev/null +++ b/pages.lo/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux expand`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux expand` diff --git a/pages.lo/osx/gexpr.md b/pages.lo/osx/gexpr.md new file mode 100644 index 0000000000..aed7542dd5 --- /dev/null +++ b/pages.lo/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux expr`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux expr` diff --git a/pages.lo/osx/gfactor.md b/pages.lo/osx/gfactor.md new file mode 100644 index 0000000000..8c2c1b9404 --- /dev/null +++ b/pages.lo/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux factor`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux factor` diff --git a/pages.lo/osx/gfalse.md b/pages.lo/osx/gfalse.md new file mode 100644 index 0000000000..a977093515 --- /dev/null +++ b/pages.lo/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux false`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux false` diff --git a/pages.lo/osx/gfgrep.md b/pages.lo/osx/gfgrep.md new file mode 100644 index 0000000000..1582ce745b --- /dev/null +++ b/pages.lo/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux fgrep`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux fgrep` diff --git a/pages.lo/osx/gfind.md b/pages.lo/osx/gfind.md new file mode 100644 index 0000000000..62b93aca64 --- /dev/null +++ b/pages.lo/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux find`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux find` diff --git a/pages.lo/osx/gfmt.md b/pages.lo/osx/gfmt.md new file mode 100644 index 0000000000..f7c8f20b22 --- /dev/null +++ b/pages.lo/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux fmt`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux fmt` diff --git a/pages.lo/osx/gfold.md b/pages.lo/osx/gfold.md new file mode 100644 index 0000000000..d3736e8758 --- /dev/null +++ b/pages.lo/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux fold`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux fold` diff --git a/pages.lo/osx/gftp.md b/pages.lo/osx/gftp.md new file mode 100644 index 0000000000..8ff51d3b1a --- /dev/null +++ b/pages.lo/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux ftp`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux ftp` diff --git a/pages.lo/osx/ggrep.md b/pages.lo/osx/ggrep.md new file mode 100644 index 0000000000..ab781a3060 --- /dev/null +++ b/pages.lo/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux grep`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux grep` diff --git a/pages.lo/osx/ggroups.md b/pages.lo/osx/ggroups.md new file mode 100644 index 0000000000..50a1827094 --- /dev/null +++ b/pages.lo/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux groups`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux groups` diff --git a/pages.lo/osx/ghead.md b/pages.lo/osx/ghead.md new file mode 100644 index 0000000000..de9e976e6e --- /dev/null +++ b/pages.lo/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux head`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux head` diff --git a/pages.lo/osx/ghostid.md b/pages.lo/osx/ghostid.md new file mode 100644 index 0000000000..b368de72ba --- /dev/null +++ b/pages.lo/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux hostid`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux hostid` diff --git a/pages.lo/osx/ghostname.md b/pages.lo/osx/ghostname.md new file mode 100644 index 0000000000..5a91f93b7f --- /dev/null +++ b/pages.lo/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux hostname`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux hostname` diff --git a/pages.lo/osx/gid.md b/pages.lo/osx/gid.md new file mode 100644 index 0000000000..7940bbbd46 --- /dev/null +++ b/pages.lo/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux id`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux id` diff --git a/pages.lo/osx/gifconfig.md b/pages.lo/osx/gifconfig.md new file mode 100644 index 0000000000..062b95af39 --- /dev/null +++ b/pages.lo/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux ifconfig`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux ifconfig` diff --git a/pages.lo/osx/gindent.md b/pages.lo/osx/gindent.md new file mode 100644 index 0000000000..c46e66dedb --- /dev/null +++ b/pages.lo/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux indent`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux indent` diff --git a/pages.lo/osx/ginstall.md b/pages.lo/osx/ginstall.md new file mode 100644 index 0000000000..4f3890961f --- /dev/null +++ b/pages.lo/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux install`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux install` diff --git a/pages.lo/osx/gjoin.md b/pages.lo/osx/gjoin.md new file mode 100644 index 0000000000..9b3854f32d --- /dev/null +++ b/pages.lo/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux join`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux join` diff --git a/pages.lo/osx/gkill.md b/pages.lo/osx/gkill.md new file mode 100644 index 0000000000..8ec8fef87b --- /dev/null +++ b/pages.lo/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux kill`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux kill` diff --git a/pages.lo/osx/glibtool.md b/pages.lo/osx/glibtool.md new file mode 100644 index 0000000000..9e439a3a7a --- /dev/null +++ b/pages.lo/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux libtool`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux libtool` diff --git a/pages.lo/osx/glibtoolize.md b/pages.lo/osx/glibtoolize.md new file mode 100644 index 0000000000..61a1d23e34 --- /dev/null +++ b/pages.lo/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux libtoolize`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux libtoolize` diff --git a/pages.lo/osx/glink.md b/pages.lo/osx/glink.md new file mode 100644 index 0000000000..35f36225e2 --- /dev/null +++ b/pages.lo/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux link`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux link` diff --git a/pages.lo/osx/gln.md b/pages.lo/osx/gln.md new file mode 100644 index 0000000000..eb27f08b21 --- /dev/null +++ b/pages.lo/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux ln`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux ln` diff --git a/pages.lo/osx/glocate.md b/pages.lo/osx/glocate.md new file mode 100644 index 0000000000..f4a94627a7 --- /dev/null +++ b/pages.lo/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux locate`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux locate` diff --git a/pages.lo/osx/glogger.md b/pages.lo/osx/glogger.md new file mode 100644 index 0000000000..bb22b80565 --- /dev/null +++ b/pages.lo/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux logger`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux logger` diff --git a/pages.lo/osx/glogname.md b/pages.lo/osx/glogname.md new file mode 100644 index 0000000000..f0eb704c2c --- /dev/null +++ b/pages.lo/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux logname`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux logname` diff --git a/pages.lo/osx/gls.md b/pages.lo/osx/gls.md new file mode 100644 index 0000000000..978de4b082 --- /dev/null +++ b/pages.lo/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux ls`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux ls` diff --git a/pages.lo/osx/gmake.md b/pages.lo/osx/gmake.md new file mode 100644 index 0000000000..7ecfd5762b --- /dev/null +++ b/pages.lo/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux make`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux make` diff --git a/pages.lo/osx/gmd5sum.md b/pages.lo/osx/gmd5sum.md new file mode 100644 index 0000000000..67c64cb46f --- /dev/null +++ b/pages.lo/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux md5sum`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux md5sum` diff --git a/pages.lo/osx/gmkdir.md b/pages.lo/osx/gmkdir.md new file mode 100644 index 0000000000..b99e074754 --- /dev/null +++ b/pages.lo/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux mkdir`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux mkdir` diff --git a/pages.lo/osx/gmkfifo.md b/pages.lo/osx/gmkfifo.md new file mode 100644 index 0000000000..6d68ccbc17 --- /dev/null +++ b/pages.lo/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux mkfifo`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux mkfifo` diff --git a/pages.lo/osx/gmknod.md b/pages.lo/osx/gmknod.md new file mode 100644 index 0000000000..646a49ee13 --- /dev/null +++ b/pages.lo/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux mknod`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux mknod` diff --git a/pages.lo/osx/gmktemp.md b/pages.lo/osx/gmktemp.md new file mode 100644 index 0000000000..8b65630999 --- /dev/null +++ b/pages.lo/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux mktemp`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux mktemp` diff --git a/pages.lo/osx/gmv.md b/pages.lo/osx/gmv.md new file mode 100644 index 0000000000..1a0b33b36b --- /dev/null +++ b/pages.lo/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux mv`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux mv` diff --git a/pages.lo/osx/gnice.md b/pages.lo/osx/gnice.md new file mode 100644 index 0000000000..d7ff31c56a --- /dev/null +++ b/pages.lo/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux nice`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux nice` diff --git a/pages.lo/osx/gnl.md b/pages.lo/osx/gnl.md new file mode 100644 index 0000000000..50c5b69213 --- /dev/null +++ b/pages.lo/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux nl`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux nl` diff --git a/pages.lo/osx/gnohup.md b/pages.lo/osx/gnohup.md new file mode 100644 index 0000000000..571c1b20e3 --- /dev/null +++ b/pages.lo/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux nohup`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux nohup` diff --git a/pages.lo/osx/gnproc.md b/pages.lo/osx/gnproc.md new file mode 100644 index 0000000000..386020f350 --- /dev/null +++ b/pages.lo/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux nproc`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux nproc` diff --git a/pages.lo/osx/gnumfmt.md b/pages.lo/osx/gnumfmt.md new file mode 100644 index 0000000000..833ce9a267 --- /dev/null +++ b/pages.lo/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux numfmt`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux numfmt` diff --git a/pages.lo/osx/god.md b/pages.lo/osx/god.md new file mode 100644 index 0000000000..7340575518 --- /dev/null +++ b/pages.lo/osx/god.md @@ -0,0 +1,7 @@ +# god + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux od`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux od` diff --git a/pages.lo/osx/gpaste.md b/pages.lo/osx/gpaste.md new file mode 100644 index 0000000000..e31d8fd7f0 --- /dev/null +++ b/pages.lo/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux paste`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux paste` diff --git a/pages.lo/osx/gpathchk.md b/pages.lo/osx/gpathchk.md new file mode 100644 index 0000000000..37ad610218 --- /dev/null +++ b/pages.lo/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux pathchk`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux pathchk` diff --git a/pages.lo/osx/gping.md b/pages.lo/osx/gping.md new file mode 100644 index 0000000000..020675d0d8 --- /dev/null +++ b/pages.lo/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux ping`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux ping` diff --git a/pages.lo/osx/gping6.md b/pages.lo/osx/gping6.md new file mode 100644 index 0000000000..df78d4664b --- /dev/null +++ b/pages.lo/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux ping6`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux ping6` diff --git a/pages.lo/osx/gpinky.md b/pages.lo/osx/gpinky.md new file mode 100644 index 0000000000..deae5cbd48 --- /dev/null +++ b/pages.lo/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux pinky`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux pinky` diff --git a/pages.lo/osx/gpr.md b/pages.lo/osx/gpr.md new file mode 100644 index 0000000000..91673c789e --- /dev/null +++ b/pages.lo/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux pr`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux pr` diff --git a/pages.lo/osx/gprintenv.md b/pages.lo/osx/gprintenv.md new file mode 100644 index 0000000000..0499d7e54e --- /dev/null +++ b/pages.lo/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux printenv`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux printenv` diff --git a/pages.lo/osx/gprintf.md b/pages.lo/osx/gprintf.md new file mode 100644 index 0000000000..f7b7c929a5 --- /dev/null +++ b/pages.lo/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux printf`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux printf` diff --git a/pages.lo/osx/gptx.md b/pages.lo/osx/gptx.md new file mode 100644 index 0000000000..ff03148dce --- /dev/null +++ b/pages.lo/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux ptx`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux ptx` diff --git a/pages.lo/osx/gpwd.md b/pages.lo/osx/gpwd.md new file mode 100644 index 0000000000..ea20aaddf2 --- /dev/null +++ b/pages.lo/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux pwd`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux pwd` diff --git a/pages.lo/osx/grcp.md b/pages.lo/osx/grcp.md new file mode 100644 index 0000000000..9c95e3c5c4 --- /dev/null +++ b/pages.lo/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux rcp`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux rcp` diff --git a/pages.lo/osx/greadlink.md b/pages.lo/osx/greadlink.md new file mode 100644 index 0000000000..ac18d0664d --- /dev/null +++ b/pages.lo/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux readlink`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux readlink` diff --git a/pages.lo/osx/grealpath.md b/pages.lo/osx/grealpath.md new file mode 100644 index 0000000000..8665114631 --- /dev/null +++ b/pages.lo/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux realpath`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux realpath` diff --git a/pages.lo/osx/grexec.md b/pages.lo/osx/grexec.md new file mode 100644 index 0000000000..fa49b1efa0 --- /dev/null +++ b/pages.lo/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux rexec`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux rexec` diff --git a/pages.lo/osx/grlogin.md b/pages.lo/osx/grlogin.md new file mode 100644 index 0000000000..f5e10e6907 --- /dev/null +++ b/pages.lo/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux rlogin`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux rlogin` diff --git a/pages.lo/osx/grm.md b/pages.lo/osx/grm.md new file mode 100644 index 0000000000..8d067069dc --- /dev/null +++ b/pages.lo/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux rm`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux rm` diff --git a/pages.lo/osx/grmdir.md b/pages.lo/osx/grmdir.md new file mode 100644 index 0000000000..ecd54dce42 --- /dev/null +++ b/pages.lo/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux rmdir`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux rmdir` diff --git a/pages.lo/osx/grsh.md b/pages.lo/osx/grsh.md new file mode 100644 index 0000000000..3b490e89a1 --- /dev/null +++ b/pages.lo/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux rsh`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux rsh` diff --git a/pages.lo/osx/gruncon.md b/pages.lo/osx/gruncon.md new file mode 100644 index 0000000000..5d1a9bf886 --- /dev/null +++ b/pages.lo/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux runcon`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux runcon` diff --git a/pages.lo/osx/gsed.md b/pages.lo/osx/gsed.md new file mode 100644 index 0000000000..5885ca82dc --- /dev/null +++ b/pages.lo/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux sed`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux sed` diff --git a/pages.lo/osx/gseq.md b/pages.lo/osx/gseq.md new file mode 100644 index 0000000000..855f2d7b87 --- /dev/null +++ b/pages.lo/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux seq`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux seq` diff --git a/pages.lo/osx/gsha1sum.md b/pages.lo/osx/gsha1sum.md new file mode 100644 index 0000000000..0782d258eb --- /dev/null +++ b/pages.lo/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux sha1sum`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux sha1sum` diff --git a/pages.lo/osx/gsha224sum.md b/pages.lo/osx/gsha224sum.md new file mode 100644 index 0000000000..bf7c69313b --- /dev/null +++ b/pages.lo/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux sha224sum`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux sha224sum` diff --git a/pages.lo/osx/gsha256sum.md b/pages.lo/osx/gsha256sum.md new file mode 100644 index 0000000000..40ad7d4ebc --- /dev/null +++ b/pages.lo/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux sha256sum`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux sha256sum` diff --git a/pages.lo/osx/gsha384sum.md b/pages.lo/osx/gsha384sum.md new file mode 100644 index 0000000000..52a4d46a79 --- /dev/null +++ b/pages.lo/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux sha384sum`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux sha384sum` diff --git a/pages.lo/osx/gsha512sum.md b/pages.lo/osx/gsha512sum.md new file mode 100644 index 0000000000..939f7a2f08 --- /dev/null +++ b/pages.lo/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux sha512sum`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux sha512sum` diff --git a/pages.lo/osx/gshred.md b/pages.lo/osx/gshred.md new file mode 100644 index 0000000000..ba4f676131 --- /dev/null +++ b/pages.lo/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux shred`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux shred` diff --git a/pages.lo/osx/gshuf.md b/pages.lo/osx/gshuf.md new file mode 100644 index 0000000000..55ddf32cf9 --- /dev/null +++ b/pages.lo/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux shuf`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux shuf` diff --git a/pages.lo/osx/gsleep.md b/pages.lo/osx/gsleep.md new file mode 100644 index 0000000000..441092ce44 --- /dev/null +++ b/pages.lo/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux sleep`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux sleep` diff --git a/pages.lo/osx/gsort.md b/pages.lo/osx/gsort.md new file mode 100644 index 0000000000..14bc837a69 --- /dev/null +++ b/pages.lo/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux sort`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux sort` diff --git a/pages.lo/osx/gsplit.md b/pages.lo/osx/gsplit.md new file mode 100644 index 0000000000..f593b68819 --- /dev/null +++ b/pages.lo/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux split`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux split` diff --git a/pages.lo/osx/gstat.md b/pages.lo/osx/gstat.md new file mode 100644 index 0000000000..1d555dce14 --- /dev/null +++ b/pages.lo/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux stat`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux stat` diff --git a/pages.lo/osx/gstdbuf.md b/pages.lo/osx/gstdbuf.md new file mode 100644 index 0000000000..323e28d1fa --- /dev/null +++ b/pages.lo/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux stdbuf`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux stdbuf` diff --git a/pages.lo/osx/gstty.md b/pages.lo/osx/gstty.md new file mode 100644 index 0000000000..7583aabda5 --- /dev/null +++ b/pages.lo/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux stty`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux stty` diff --git a/pages.lo/osx/gsum.md b/pages.lo/osx/gsum.md new file mode 100644 index 0000000000..823934f5a8 --- /dev/null +++ b/pages.lo/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux sum`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux sum` diff --git a/pages.lo/osx/gsync.md b/pages.lo/osx/gsync.md new file mode 100644 index 0000000000..264f4c5a87 --- /dev/null +++ b/pages.lo/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux sync`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux sync` diff --git a/pages.lo/osx/gtac.md b/pages.lo/osx/gtac.md new file mode 100644 index 0000000000..83749b5ebd --- /dev/null +++ b/pages.lo/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux tac`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux tac` diff --git a/pages.lo/osx/gtail.md b/pages.lo/osx/gtail.md new file mode 100644 index 0000000000..e91c1f7e91 --- /dev/null +++ b/pages.lo/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux tail`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux tail` diff --git a/pages.lo/osx/gtalk.md b/pages.lo/osx/gtalk.md new file mode 100644 index 0000000000..f61d9ba785 --- /dev/null +++ b/pages.lo/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux talk`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux talk` diff --git a/pages.lo/osx/gtar.md b/pages.lo/osx/gtar.md new file mode 100644 index 0000000000..b749a7b550 --- /dev/null +++ b/pages.lo/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux tar`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux tar` diff --git a/pages.lo/osx/gtee.md b/pages.lo/osx/gtee.md new file mode 100644 index 0000000000..c456528e99 --- /dev/null +++ b/pages.lo/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux tee`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux tee` diff --git a/pages.lo/osx/gtelnet.md b/pages.lo/osx/gtelnet.md new file mode 100644 index 0000000000..de8c8bb607 --- /dev/null +++ b/pages.lo/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux telnet`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux telnet` diff --git a/pages.lo/osx/gtest.md b/pages.lo/osx/gtest.md new file mode 100644 index 0000000000..faa1a54b05 --- /dev/null +++ b/pages.lo/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux test`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux test` diff --git a/pages.lo/osx/gtftp.md b/pages.lo/osx/gtftp.md new file mode 100644 index 0000000000..1e9fde5e8a --- /dev/null +++ b/pages.lo/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux tftp`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux tftp` diff --git a/pages.lo/osx/gtime.md b/pages.lo/osx/gtime.md new file mode 100644 index 0000000000..aca3fee53c --- /dev/null +++ b/pages.lo/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux time`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux time` diff --git a/pages.lo/osx/gtimeout.md b/pages.lo/osx/gtimeout.md new file mode 100644 index 0000000000..11e390851c --- /dev/null +++ b/pages.lo/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux timeout`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux timeout` diff --git a/pages.lo/osx/gtouch.md b/pages.lo/osx/gtouch.md new file mode 100644 index 0000000000..245d7288cb --- /dev/null +++ b/pages.lo/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux touch`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux touch` diff --git a/pages.lo/osx/gtr.md b/pages.lo/osx/gtr.md new file mode 100644 index 0000000000..7e28219e3b --- /dev/null +++ b/pages.lo/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux tr`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux tr` diff --git a/pages.lo/osx/gtraceroute.md b/pages.lo/osx/gtraceroute.md new file mode 100644 index 0000000000..f1cb9ebff6 --- /dev/null +++ b/pages.lo/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux traceroute`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux traceroute` diff --git a/pages.lo/osx/gtrue.md b/pages.lo/osx/gtrue.md new file mode 100644 index 0000000000..d43d35fb69 --- /dev/null +++ b/pages.lo/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux true`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux true` diff --git a/pages.lo/osx/gtruncate.md b/pages.lo/osx/gtruncate.md new file mode 100644 index 0000000000..3fd5198f86 --- /dev/null +++ b/pages.lo/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux truncate`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux truncate` diff --git a/pages.lo/osx/gtsort.md b/pages.lo/osx/gtsort.md new file mode 100644 index 0000000000..5d4be39b0e --- /dev/null +++ b/pages.lo/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux tsort`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux tsort` diff --git a/pages.lo/osx/gtty.md b/pages.lo/osx/gtty.md new file mode 100644 index 0000000000..b0df711a01 --- /dev/null +++ b/pages.lo/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux tty`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux tty` diff --git a/pages.lo/osx/guname.md b/pages.lo/osx/guname.md new file mode 100644 index 0000000000..ab8964a045 --- /dev/null +++ b/pages.lo/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux uname`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux uname` diff --git a/pages.lo/osx/gunexpand.md b/pages.lo/osx/gunexpand.md new file mode 100644 index 0000000000..0662b2d500 --- /dev/null +++ b/pages.lo/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux unexpand`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux unexpand` diff --git a/pages.lo/osx/guniq.md b/pages.lo/osx/guniq.md new file mode 100644 index 0000000000..9527a22aa7 --- /dev/null +++ b/pages.lo/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux uniq`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux uniq` diff --git a/pages.lo/osx/gunits.md b/pages.lo/osx/gunits.md new file mode 100644 index 0000000000..fbe752f174 --- /dev/null +++ b/pages.lo/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux units`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux units` diff --git a/pages.lo/osx/gunlink.md b/pages.lo/osx/gunlink.md new file mode 100644 index 0000000000..f75e5f0c8f --- /dev/null +++ b/pages.lo/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux unlink`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux unlink` diff --git a/pages.lo/osx/gupdatedb.md b/pages.lo/osx/gupdatedb.md new file mode 100644 index 0000000000..8f69433f9d --- /dev/null +++ b/pages.lo/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux updatedb`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux updatedb` diff --git a/pages.lo/osx/guptime.md b/pages.lo/osx/guptime.md new file mode 100644 index 0000000000..f196a138e1 --- /dev/null +++ b/pages.lo/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux uptime`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux uptime` diff --git a/pages.lo/osx/gusers.md b/pages.lo/osx/gusers.md new file mode 100644 index 0000000000..ad6e2c8332 --- /dev/null +++ b/pages.lo/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux users`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux users` diff --git a/pages.lo/osx/gvdir.md b/pages.lo/osx/gvdir.md new file mode 100644 index 0000000000..6952d55ea5 --- /dev/null +++ b/pages.lo/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux vdir`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux vdir` diff --git a/pages.lo/osx/gwc.md b/pages.lo/osx/gwc.md new file mode 100644 index 0000000000..d96434711d --- /dev/null +++ b/pages.lo/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux wc`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux wc` diff --git a/pages.lo/osx/gwhich.md b/pages.lo/osx/gwhich.md new file mode 100644 index 0000000000..6f5fc022dc --- /dev/null +++ b/pages.lo/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux which`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux which` diff --git a/pages.lo/osx/gwho.md b/pages.lo/osx/gwho.md new file mode 100644 index 0000000000..4e84a0e999 --- /dev/null +++ b/pages.lo/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux who`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux who` diff --git a/pages.lo/osx/gwhoami.md b/pages.lo/osx/gwhoami.md new file mode 100644 index 0000000000..fdabe10b76 --- /dev/null +++ b/pages.lo/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux whoami`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux whoami` diff --git a/pages.lo/osx/gwhois.md b/pages.lo/osx/gwhois.md new file mode 100644 index 0000000000..84091251ea --- /dev/null +++ b/pages.lo/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux whois`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux whois` diff --git a/pages.lo/osx/gxargs.md b/pages.lo/osx/gxargs.md new file mode 100644 index 0000000000..4f13628581 --- /dev/null +++ b/pages.lo/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux xargs`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux xargs` diff --git a/pages.lo/osx/gyes.md b/pages.lo/osx/gyes.md new file mode 100644 index 0000000000..4398f01da0 --- /dev/null +++ b/pages.lo/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `-p linux yes`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr -p linux yes` diff --git a/pages.lo/osx/launchd.md b/pages.lo/osx/launchd.md new file mode 100644 index 0000000000..38b4295658 --- /dev/null +++ b/pages.lo/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `launchctl`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr launchctl` diff --git a/pages.lo/windows/cls.md b/pages.lo/windows/cls.md index 93f06ca889..928caa62a5 100644 --- a/pages.lo/windows/cls.md +++ b/pages.lo/windows/cls.md @@ -1,7 +1,7 @@ # cls > ລ້າງຕົວອັກສອນທັງໝົດເທິງໜ້າຈໍ -> ຂໍ້ມູນເພີ່ມເຕີມ: https://learn.microsoft.com/windows-server/administration/windows-commands/cls +> ຂໍ້ມູນເພີ່ມເຕີມ: . - ລ້າງຕົວອັກສອນທັງໝົດເທິງໜ້າຈໍ diff --git a/pages.lo/windows/cpush.md b/pages.lo/windows/cpush.md new file mode 100644 index 0000000000..bacb0f39e6 --- /dev/null +++ b/pages.lo/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `choco-push`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr choco-push` diff --git a/pages.lo/windows/curl.md b/pages.lo/windows/curl.md new file mode 100644 index 0000000000..f58860b9df --- /dev/null +++ b/pages.lo/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `curl -p common`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr curl -p common` diff --git a/pages.lo/windows/iwr.md b/pages.lo/windows/iwr.md new file mode 100644 index 0000000000..ad4e725cd6 --- /dev/null +++ b/pages.lo/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `invoke-webrequest`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr invoke-webrequest` diff --git a/pages.lo/windows/pwsh-where.md b/pages.lo/windows/pwsh-where.md new file mode 100644 index 0000000000..7918039997 --- /dev/null +++ b/pages.lo/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `Where-Object`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr Where-Object` diff --git a/pages.lo/windows/rd.md b/pages.lo/windows/rd.md new file mode 100644 index 0000000000..2d42208f57 --- /dev/null +++ b/pages.lo/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `rmdir`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr rmdir` diff --git a/pages.lo/windows/sls.md b/pages.lo/windows/sls.md new file mode 100644 index 0000000000..bca5ffda8b --- /dev/null +++ b/pages.lo/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `where-object`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr where-object` diff --git a/pages.lo/windows/wget.md b/pages.lo/windows/wget.md new file mode 100644 index 0000000000..87245fa0b0 --- /dev/null +++ b/pages.lo/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `wget -p common`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr wget -p common` diff --git a/pages.ml/common/bundler.md b/pages.ml/common/bundler.md new file mode 100644 index 0000000000..cd272eb6c4 --- /dev/null +++ b/pages.ml/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> ഈ കമാൻഡ് `bundle` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr bundle` diff --git a/pages.ml/common/chmod.md b/pages.ml/common/chmod.md new file mode 100644 index 0000000000..027b4fa40b --- /dev/null +++ b/pages.ml/common/chmod.md @@ -0,0 +1,36 @@ +# chmod + +> ഒരു ഫയലിന്റെയോ ഡയറക്ടറിയുടെയോ പ്രവേശന അനുമതികൾ മാറ്റുക. +> കൂടുതൽ വിവരങ്ങൾ: . + +- ഒരു ഫയൽ കൈവശമുള്ള [u]ser-ന് അത് e[x]ecute ചെയ്യാനുള്ള അവകാശം നൽകുക: + +`chmod u+x {{ഫയലിലേക്കുള്ള/പാത}}` + +- ഒരു ഫയൽ/ഡയറക്‌ടറിയിലേക്ക് [r]ead, [w]rite എന്നിവയ്ക്കുള്ള [u]ser അവകാശങ്ങൾ നൽകുക: + +`chmod u+rw {{ഫയലിലേക്കോ_ഡയറക്ടറിയിലേക്കോ/ഉള്ള/പാത}}` + +- [g]roup ൽ നിന്ന് e[x]ecutable അവകാശങ്ങൾ നീക്കം ചെയ്യുക: + +`chmod g-x {{ഫയലിലേക്കുള്ള/പാത}}` + +- എല്ലാ ഉപയോക്താക്കൾക്കും [r]ead, e[x]ecute എന്നിവയ്ക്കുള്ള അവകാശങ്ങൾ നൽകുക: + +`chmod a+rx {{ഫയലിലേക്കുള്ള/പാത}}` + +- [o]thers മറ്റുള്ളവർക്കും (ഫയൽ ഉടമയുടെ ഗ്രൂപ്പിലല്ല) [g]roup ൽ അതേ അവകാശങ്ങൾ നൽകുക: + +`chmod o=g {{ഫയലിലേക്കുള്ള/പാത}}` + +- [o]thers മറ്റുള്ളവരിൽ നിന്ന് എല്ലാ അവകാശങ്ങളും നീക്കം ചെയ്യുക: + +`chmod o= {{ഫയലിലേക്കുള്ള/പാത}}` + +- ആവർത്തനാനുമതികൾ മാറ്റുക [g]roupൽ [o]thers മറ്റുള്ളവർക്കും [w]rite റൈറ്റ് ചെയ്യാനുള്ള കഴിവ് നൽകുന്നു: + +`chmod -R g+w,o+w {{ഡയറക്ടറിയിലേക്കുള്ള/പാത}}` + +- ഫയലുകൾക്കുള്ള [a]ll എല്ലാ ഉപയോക്താക്കൾക്കും [r]ead അനുമതികളും ഒരു ഡയറക്‌ടറിയിലെ ഉപ ഡയറക്‌ടറികൾക്ക് e[x]ecute എക്‌ക്യൂട്ട് അനുമതികളും ആവർത്തിച്ച് നൽകുക: + +`chmod -R a+rX {{ഡയറക്ടറിയിലേക്കുള്ള/പാത}}` diff --git a/pages.ml/common/clamav.md b/pages.ml/common/clamav.md new file mode 100644 index 0000000000..ef46d6a78c --- /dev/null +++ b/pages.ml/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> ഈ കമാൻഡ് `clamdscan` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr clamdscan` diff --git a/pages.ml/common/cron.md b/pages.ml/common/cron.md new file mode 100644 index 0000000000..f757c14585 --- /dev/null +++ b/pages.ml/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> ഈ കമാൻഡ് `crontab` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr crontab` diff --git a/pages.ml/common/fossil-ci.md b/pages.ml/common/fossil-ci.md new file mode 100644 index 0000000000..fc441861bb --- /dev/null +++ b/pages.ml/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> ഈ കമാൻഡ് `fossil-commit` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr fossil-commit` diff --git a/pages.ml/common/fossil-delete.md b/pages.ml/common/fossil-delete.md new file mode 100644 index 0000000000..5c58004121 --- /dev/null +++ b/pages.ml/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> ഈ കമാൻഡ് `fossil rm` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr fossil rm` diff --git a/pages.ml/common/fossil-forget.md b/pages.ml/common/fossil-forget.md new file mode 100644 index 0000000000..a3036c91cd --- /dev/null +++ b/pages.ml/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> ഈ കമാൻഡ് `fossil rm` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr fossil rm` diff --git a/pages.ml/common/fossil-new.md b/pages.ml/common/fossil-new.md new file mode 100644 index 0000000000..5abed24eba --- /dev/null +++ b/pages.ml/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> ഈ കമാൻഡ് `fossil-init` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr fossil-init` diff --git a/pages.ml/common/gh-cs.md b/pages.ml/common/gh-cs.md new file mode 100644 index 0000000000..ae1c13e10f --- /dev/null +++ b/pages.ml/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> ഈ കമാൻഡ് `gh-codespace` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr gh-codespace` diff --git a/pages.ml/common/gnmic-sub.md b/pages.ml/common/gnmic-sub.md new file mode 100644 index 0000000000..94caa40159 --- /dev/null +++ b/pages.ml/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> ഈ കമാൻഡ് `gnmic subscribe` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr gnmic subscribe` diff --git a/pages.ml/common/google-chrome.md b/pages.ml/common/google-chrome.md new file mode 100644 index 0000000000..f33afa92b3 --- /dev/null +++ b/pages.ml/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> ഈ കമാൻഡ് `chromium` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr chromium` diff --git a/pages.ml/common/hx.md b/pages.ml/common/hx.md new file mode 100644 index 0000000000..1705b4b8a0 --- /dev/null +++ b/pages.ml/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> ഈ കമാൻഡ് `helix` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr helix` diff --git a/pages.ml/common/kafkacat.md b/pages.ml/common/kafkacat.md new file mode 100644 index 0000000000..fcb0a0252d --- /dev/null +++ b/pages.ml/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> ഈ കമാൻഡ് `kcat` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr kcat` diff --git a/pages.ml/common/lzcat.md b/pages.ml/common/lzcat.md new file mode 100644 index 0000000000..9624a9b704 --- /dev/null +++ b/pages.ml/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> ഈ കമാൻഡ് `xz` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr xz` diff --git a/pages.ml/common/lzma.md b/pages.ml/common/lzma.md new file mode 100644 index 0000000000..27a2efed22 --- /dev/null +++ b/pages.ml/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> ഈ കമാൻഡ് `xz` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr xz` diff --git a/pages.ml/common/nm-classic.md b/pages.ml/common/nm-classic.md new file mode 100644 index 0000000000..95504d1413 --- /dev/null +++ b/pages.ml/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> ഈ കമാൻഡ് `nm` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr nm` diff --git a/pages.ml/common/ntl.md b/pages.ml/common/ntl.md new file mode 100644 index 0000000000..f2582842ca --- /dev/null +++ b/pages.ml/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> ഈ കമാൻഡ് `netlify` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr netlify` diff --git a/pages.ml/common/ptpython3.md b/pages.ml/common/ptpython3.md new file mode 100644 index 0000000000..b81bb74a2c --- /dev/null +++ b/pages.ml/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> ഈ കമാൻഡ് `ptpython` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr ptpython` diff --git a/pages.ml/common/python3.md b/pages.ml/common/python3.md new file mode 100644 index 0000000000..785c67fb28 --- /dev/null +++ b/pages.ml/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> ഈ കമാൻഡ് `python` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr python` diff --git a/pages.ml/common/rcat.md b/pages.ml/common/rcat.md new file mode 100644 index 0000000000..ff9e71879a --- /dev/null +++ b/pages.ml/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> ഈ കമാൻഡ് `rc` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr rc` diff --git a/pages.ml/common/ripgrep.md b/pages.ml/common/ripgrep.md new file mode 100644 index 0000000000..a5eb86bf4f --- /dev/null +++ b/pages.ml/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> ഈ കമാൻഡ് `rg` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr rg` diff --git a/pages.ml/common/todoman.md b/pages.ml/common/todoman.md new file mode 100644 index 0000000000..f46df3bffb --- /dev/null +++ b/pages.ml/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> ഈ കമാൻഡ് `todo` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr todo` diff --git a/pages.ml/common/transmission.md b/pages.ml/common/transmission.md new file mode 100644 index 0000000000..e179b401ed --- /dev/null +++ b/pages.ml/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> ഈ കമാൻഡ് `transmission-daemon` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr transmission-daemon` diff --git a/pages.ml/common/unlzma.md b/pages.ml/common/unlzma.md new file mode 100644 index 0000000000..39891efa89 --- /dev/null +++ b/pages.ml/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> ഈ കമാൻഡ് `xz` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr xz` diff --git a/pages.ml/common/unxz.md b/pages.ml/common/unxz.md new file mode 100644 index 0000000000..84a90eebb0 --- /dev/null +++ b/pages.ml/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> ഈ കമാൻഡ് `xz` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr xz` diff --git a/pages.ml/common/xzcat.md b/pages.ml/common/xzcat.md new file mode 100644 index 0000000000..679ae76b05 --- /dev/null +++ b/pages.ml/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> ഈ കമാൻഡ് `xz` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr xz` diff --git a/pages.ml/linux/alternatives.md b/pages.ml/linux/alternatives.md new file mode 100644 index 0000000000..cad2aefa25 --- /dev/null +++ b/pages.ml/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> ഈ കമാൻഡ് `update-alternatives` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr update-alternatives` diff --git a/pages.ml/linux/batcat.md b/pages.ml/linux/batcat.md new file mode 100644 index 0000000000..9fd3e24f4e --- /dev/null +++ b/pages.ml/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> ഈ കമാൻഡ് `bat` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr bat` diff --git a/pages.ml/linux/bspwm.md b/pages.ml/linux/bspwm.md new file mode 100644 index 0000000000..5a0f145794 --- /dev/null +++ b/pages.ml/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> ഈ കമാൻഡ് `bspc` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr bspc` diff --git a/pages.ml/linux/cat.md b/pages.ml/linux/cat.md new file mode 100644 index 0000000000..ae639c5da2 --- /dev/null +++ b/pages.ml/linux/cat.md @@ -0,0 +1,32 @@ +# cat + +> ഫയലുകൾ പ്രിന്റ് ചെയ്യുവാനും സംയോജിപ്പിക്കുവാനുമുള്ള കമാൻഡ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- ഫയലിന്റെ ഉള്ളടക്കം സ്റ്റാൻഡേർഡ് ഔട്പുട്ടിലേക്ക് പ്രിന്റ് ചെയ്യുവാൻ: + +`cat {{ഫയലിലേക്കുള്ള/പാത}}` + +- പല ഫയലുകൾ സംയോജിപ്പിച് ഒരു ഔട്ട്പുട്ട് ഫയലുണ്ടാക്കുവാൻ: + +`cat {{ഫയൽ1/ലേക്കുള്ള/പാത ഫയൽ2/ലേക്കുള്ള/പാത ...}} > {{ഔട്ട്പുട്ട്_ഫയൽ/ലേക്കുള്ള/പാത}}` + +- പല ഫയലുകൾ അപ്പെൻഡ് ചെയ്‌ത്‌ ഒരു ഔട്ട്പുട്ട് ഫയലുണ്ടാക്കുവാൻ: + +`cat {{ഫയൽ1/ലേക്കുള്ള/പാത ഫയൽ2/ലേക്കുള്ള/പാത ...}} >> {{ഔട്ട്പുട്ട്_ഫയൽ/ലേക്കുള്ള/പാത}}` + +- ഫയലിന്റെ ഉള്ളടക്കം അൺബഫേർഡ് മോഡിൽ ഒരു ഔട്ട്പുട്ട് ഫയലിലേക്ക് കോപ്പിചെയ്യുവാൻ: + +`cat -u {{/dev/tty12}} > {{/dev/tty13}}` + +- `stdin` ഫയലിലേക്ക് എഴുതുവാൻ: + +`cat - > {{ഫയലിലേക്കുള്ള/പാത}}` + +- ഔട്ട്പുട്ട് ലൈനുകൾ നമ്പർ ചെയ്യുവാൻ: + +`cat -n {{ഫയലിലേക്കുള്ള/പാത}}` + +- വൈറ്റ്സ്പേസും പ്രിന്റ് ചെയ്യപ്പെടാത്ത മറ്റ് ചിഹ്നങ്ങളും കാണുവാൻ (ASCII അല്ലെങ്കിൽ `M-` ആരംഭത്തിൽ ചേർക്കുക): + +`cat -v -t -e {{ഫയലിലേക്കുള്ള/പാത}}` diff --git a/pages.ml/linux/cc.md b/pages.ml/linux/cc.md new file mode 100644 index 0000000000..854f14548f --- /dev/null +++ b/pages.ml/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> ഈ കമാൻഡ് `gcc` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr gcc` diff --git a/pages.ml/linux/cgroups.md b/pages.ml/linux/cgroups.md new file mode 100644 index 0000000000..86d95cfe5c --- /dev/null +++ b/pages.ml/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> ഈ കമാൻഡ് `cgclassify` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr cgclassify` diff --git a/pages.ml/linux/ip-route-list.md b/pages.ml/linux/ip-route-list.md new file mode 100644 index 0000000000..36d744fa13 --- /dev/null +++ b/pages.ml/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> ഈ കമാൻഡ് `ip-route-show` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr ip-route-show` diff --git a/pages.ml/linux/megadl.md b/pages.ml/linux/megadl.md new file mode 100644 index 0000000000..7010abfcc1 --- /dev/null +++ b/pages.ml/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> ഈ കമാൻഡ് `megatools-dl` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr megatools-dl` diff --git a/pages.ml/linux/nemo.md b/pages.ml/linux/nemo.md index ec3724f6fb..db47d2da97 100644 --- a/pages.ml/linux/nemo.md +++ b/pages.ml/linux/nemo.md @@ -1,7 +1,7 @@ # nemo > സിന്നമോണിനു വേണ്ടിയുള്ള ഫയൽ മാനേജർ-ഗ്രാഫിക്കൽ ഷെൽ. -> കൂടുതൽ വിവരങ്ങൾ: . +> കൂടുതൽ വിവരങ്ങൾ: . - യൂസറിന്റെ ഹോം ഡയറക്ടറിയിൽ ഒരു പുതിയ വിൻഡോ ഓപ്പൺ ചെയ്യുവാൻ: diff --git a/pages.ml/linux/pacman.md b/pages.ml/linux/pacman.md index e869903208..7dace78ca3 100644 --- a/pages.ml/linux/pacman.md +++ b/pages.ml/linux/pacman.md @@ -1,6 +1,7 @@ # pacman > ആർച്ച് ലിന്ക്സിന്റെ പാക്കേജ് മാനേജുമെന്റ് യൂട്ടിലിറ്റി. +> ഇതും കാണുക: `pacman-database`, `pacman-deptest`, `pacman-files`, `pacman-key`, `pacman-mirrors`, `pacman-query`, `pacman-remove`, `pacman-sync`, `pacman-upgrade`. > കൂടുതൽ വിവരങ്ങൾ: . - ഇൻസ്റ്റാൾ ചെയ്‌ത എല്ലാ പാക്കേജും അപ്‌ഡേറ്റു ചെയ്യുക: diff --git a/pages.ml/linux/ubuntu-bug.md b/pages.ml/linux/ubuntu-bug.md new file mode 100644 index 0000000000..9725bb825c --- /dev/null +++ b/pages.ml/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> ഈ കമാൻഡ് `apport-bug` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr apport-bug` diff --git a/pages.ml/osx/aa.md b/pages.ml/osx/aa.md new file mode 100644 index 0000000000..e0386b673f --- /dev/null +++ b/pages.ml/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> ഈ കമാൻഡ് `yaa` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr yaa` diff --git a/pages.ml/osx/g[.md b/pages.ml/osx/g[.md new file mode 100644 index 0000000000..3e1a9a033b --- /dev/null +++ b/pages.ml/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> ഈ കമാൻഡ് `-p linux [` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux [` diff --git a/pages.ml/osx/gawk.md b/pages.ml/osx/gawk.md new file mode 100644 index 0000000000..b855813353 --- /dev/null +++ b/pages.ml/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> ഈ കമാൻഡ് `-p linux awk` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux awk` diff --git a/pages.ml/osx/gb2sum.md b/pages.ml/osx/gb2sum.md new file mode 100644 index 0000000000..a7f8f42c4d --- /dev/null +++ b/pages.ml/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> ഈ കമാൻഡ് `-p linux b2sum` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux b2sum` diff --git a/pages.ml/osx/gbase32.md b/pages.ml/osx/gbase32.md new file mode 100644 index 0000000000..28b36ae601 --- /dev/null +++ b/pages.ml/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> ഈ കമാൻഡ് `-p linux base32` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux base32` diff --git a/pages.ml/osx/gbase64.md b/pages.ml/osx/gbase64.md new file mode 100644 index 0000000000..3a125bd1f9 --- /dev/null +++ b/pages.ml/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> ഈ കമാൻഡ് `-p linux base64` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux base64` diff --git a/pages.ml/osx/gbasename.md b/pages.ml/osx/gbasename.md new file mode 100644 index 0000000000..d84e9fc349 --- /dev/null +++ b/pages.ml/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> ഈ കമാൻഡ് `-p linux basename` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux basename` diff --git a/pages.ml/osx/gbasenc.md b/pages.ml/osx/gbasenc.md new file mode 100644 index 0000000000..8785111962 --- /dev/null +++ b/pages.ml/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> ഈ കമാൻഡ് `-p linux basenc` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux basenc` diff --git a/pages.ml/osx/gcat.md b/pages.ml/osx/gcat.md new file mode 100644 index 0000000000..e1502c17c9 --- /dev/null +++ b/pages.ml/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> ഈ കമാൻഡ് `-p linux cat` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux cat` diff --git a/pages.ml/osx/gchcon.md b/pages.ml/osx/gchcon.md new file mode 100644 index 0000000000..1bb3829c4f --- /dev/null +++ b/pages.ml/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> ഈ കമാൻഡ് `-p linux chcon` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux chcon` diff --git a/pages.ml/osx/gchgrp.md b/pages.ml/osx/gchgrp.md new file mode 100644 index 0000000000..3df54f8fb6 --- /dev/null +++ b/pages.ml/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> ഈ കമാൻഡ് `-p linux chgrp` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux chgrp` diff --git a/pages.ml/osx/gchmod.md b/pages.ml/osx/gchmod.md new file mode 100644 index 0000000000..9e9a70cc39 --- /dev/null +++ b/pages.ml/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> ഈ കമാൻഡ് `-p linux chmod` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux chmod` diff --git a/pages.ml/osx/gchown.md b/pages.ml/osx/gchown.md new file mode 100644 index 0000000000..81e7ac6574 --- /dev/null +++ b/pages.ml/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> ഈ കമാൻഡ് `-p linux chown` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux chown` diff --git a/pages.ml/osx/gchroot.md b/pages.ml/osx/gchroot.md new file mode 100644 index 0000000000..5b7fafd53d --- /dev/null +++ b/pages.ml/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> ഈ കമാൻഡ് `-p linux chroot` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux chroot` diff --git a/pages.ml/osx/gcksum.md b/pages.ml/osx/gcksum.md new file mode 100644 index 0000000000..26ab1f4174 --- /dev/null +++ b/pages.ml/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> ഈ കമാൻഡ് `-p linux cksum` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux cksum` diff --git a/pages.ml/osx/gcomm.md b/pages.ml/osx/gcomm.md new file mode 100644 index 0000000000..a08c11cd82 --- /dev/null +++ b/pages.ml/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> ഈ കമാൻഡ് `-p linux comm` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux comm` diff --git a/pages.ml/osx/gcp.md b/pages.ml/osx/gcp.md new file mode 100644 index 0000000000..2047a443b4 --- /dev/null +++ b/pages.ml/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> ഈ കമാൻഡ് `-p linux cp` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux cp` diff --git a/pages.ml/osx/gcsplit.md b/pages.ml/osx/gcsplit.md new file mode 100644 index 0000000000..e306cd1f78 --- /dev/null +++ b/pages.ml/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> ഈ കമാൻഡ് `-p linux csplit` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux csplit` diff --git a/pages.ml/osx/gcut.md b/pages.ml/osx/gcut.md new file mode 100644 index 0000000000..bb6481f811 --- /dev/null +++ b/pages.ml/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> ഈ കമാൻഡ് `-p linux cut` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux cut` diff --git a/pages.ml/osx/gdate.md b/pages.ml/osx/gdate.md new file mode 100644 index 0000000000..20eb305bcb --- /dev/null +++ b/pages.ml/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> ഈ കമാൻഡ് `-p linux date` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux date` diff --git a/pages.ml/osx/gdd.md b/pages.ml/osx/gdd.md new file mode 100644 index 0000000000..36b4745bd7 --- /dev/null +++ b/pages.ml/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> ഈ കമാൻഡ് `-p linux dd` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux dd` diff --git a/pages.ml/osx/gdf.md b/pages.ml/osx/gdf.md new file mode 100644 index 0000000000..b7ae532f02 --- /dev/null +++ b/pages.ml/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> ഈ കമാൻഡ് `-p linux df` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux df` diff --git a/pages.ml/osx/gdir.md b/pages.ml/osx/gdir.md new file mode 100644 index 0000000000..a2a3bd561a --- /dev/null +++ b/pages.ml/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> ഈ കമാൻഡ് `-p linux dir` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux dir` diff --git a/pages.ml/osx/gdircolors.md b/pages.ml/osx/gdircolors.md new file mode 100644 index 0000000000..45f109a355 --- /dev/null +++ b/pages.ml/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> ഈ കമാൻഡ് `-p linux dircolors` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux dircolors` diff --git a/pages.ml/osx/gdirname.md b/pages.ml/osx/gdirname.md new file mode 100644 index 0000000000..cf38ec86ca --- /dev/null +++ b/pages.ml/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> ഈ കമാൻഡ് `-p linux dirname` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux dirname` diff --git a/pages.ml/osx/gdnsdomainname.md b/pages.ml/osx/gdnsdomainname.md new file mode 100644 index 0000000000..355982aabb --- /dev/null +++ b/pages.ml/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> ഈ കമാൻഡ് `-p linux dnsdomainname` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux dnsdomainname` diff --git a/pages.ml/osx/gecho.md b/pages.ml/osx/gecho.md new file mode 100644 index 0000000000..61dd491dc7 --- /dev/null +++ b/pages.ml/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> ഈ കമാൻഡ് `-p linux echo` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux echo` diff --git a/pages.ml/osx/ged.md b/pages.ml/osx/ged.md new file mode 100644 index 0000000000..f447a40b65 --- /dev/null +++ b/pages.ml/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> ഈ കമാൻഡ് `-p linux ed` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux ed` diff --git a/pages.ml/osx/gegrep.md b/pages.ml/osx/gegrep.md new file mode 100644 index 0000000000..e2db57e014 --- /dev/null +++ b/pages.ml/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> ഈ കമാൻഡ് `-p linux egrep` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux egrep` diff --git a/pages.ml/osx/genv.md b/pages.ml/osx/genv.md new file mode 100644 index 0000000000..62900a30e6 --- /dev/null +++ b/pages.ml/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> ഈ കമാൻഡ് `-p linux env` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux env` diff --git a/pages.ml/osx/gexpand.md b/pages.ml/osx/gexpand.md new file mode 100644 index 0000000000..754c8417d7 --- /dev/null +++ b/pages.ml/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> ഈ കമാൻഡ് `-p linux expand` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux expand` diff --git a/pages.ml/osx/gexpr.md b/pages.ml/osx/gexpr.md new file mode 100644 index 0000000000..d356808cef --- /dev/null +++ b/pages.ml/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> ഈ കമാൻഡ് `-p linux expr` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux expr` diff --git a/pages.ml/osx/gfactor.md b/pages.ml/osx/gfactor.md new file mode 100644 index 0000000000..d62653a737 --- /dev/null +++ b/pages.ml/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> ഈ കമാൻഡ് `-p linux factor` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux factor` diff --git a/pages.ml/osx/gfalse.md b/pages.ml/osx/gfalse.md new file mode 100644 index 0000000000..0a73abc9f7 --- /dev/null +++ b/pages.ml/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> ഈ കമാൻഡ് `-p linux false` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux false` diff --git a/pages.ml/osx/gfgrep.md b/pages.ml/osx/gfgrep.md new file mode 100644 index 0000000000..665f9e145b --- /dev/null +++ b/pages.ml/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> ഈ കമാൻഡ് `-p linux fgrep` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux fgrep` diff --git a/pages.ml/osx/gfind.md b/pages.ml/osx/gfind.md new file mode 100644 index 0000000000..660b630917 --- /dev/null +++ b/pages.ml/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> ഈ കമാൻഡ് `-p linux find` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux find` diff --git a/pages.ml/osx/gfmt.md b/pages.ml/osx/gfmt.md new file mode 100644 index 0000000000..b65094a394 --- /dev/null +++ b/pages.ml/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> ഈ കമാൻഡ് `-p linux fmt` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux fmt` diff --git a/pages.ml/osx/gfold.md b/pages.ml/osx/gfold.md new file mode 100644 index 0000000000..7815ab8445 --- /dev/null +++ b/pages.ml/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> ഈ കമാൻഡ് `-p linux fold` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux fold` diff --git a/pages.ml/osx/gftp.md b/pages.ml/osx/gftp.md new file mode 100644 index 0000000000..55e4f8a621 --- /dev/null +++ b/pages.ml/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> ഈ കമാൻഡ് `-p linux ftp` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux ftp` diff --git a/pages.ml/osx/ggrep.md b/pages.ml/osx/ggrep.md new file mode 100644 index 0000000000..971df7f2fd --- /dev/null +++ b/pages.ml/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> ഈ കമാൻഡ് `-p linux grep` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux grep` diff --git a/pages.ml/osx/ggroups.md b/pages.ml/osx/ggroups.md new file mode 100644 index 0000000000..4453136adb --- /dev/null +++ b/pages.ml/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> ഈ കമാൻഡ് `-p linux groups` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux groups` diff --git a/pages.ml/osx/ghead.md b/pages.ml/osx/ghead.md new file mode 100644 index 0000000000..f876429a65 --- /dev/null +++ b/pages.ml/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> ഈ കമാൻഡ് `-p linux head` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux head` diff --git a/pages.ml/osx/ghostid.md b/pages.ml/osx/ghostid.md new file mode 100644 index 0000000000..441d4e07db --- /dev/null +++ b/pages.ml/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> ഈ കമാൻഡ് `-p linux hostid` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux hostid` diff --git a/pages.ml/osx/ghostname.md b/pages.ml/osx/ghostname.md new file mode 100644 index 0000000000..4b4f91cd85 --- /dev/null +++ b/pages.ml/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> ഈ കമാൻഡ് `-p linux hostname` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux hostname` diff --git a/pages.ml/osx/gid.md b/pages.ml/osx/gid.md new file mode 100644 index 0000000000..f63df0947c --- /dev/null +++ b/pages.ml/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> ഈ കമാൻഡ് `-p linux id` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux id` diff --git a/pages.ml/osx/gifconfig.md b/pages.ml/osx/gifconfig.md new file mode 100644 index 0000000000..df24c98baf --- /dev/null +++ b/pages.ml/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> ഈ കമാൻഡ് `-p linux ifconfig` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux ifconfig` diff --git a/pages.ml/osx/gindent.md b/pages.ml/osx/gindent.md new file mode 100644 index 0000000000..c55e8c6cb3 --- /dev/null +++ b/pages.ml/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> ഈ കമാൻഡ് `-p linux indent` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux indent` diff --git a/pages.ml/osx/ginstall.md b/pages.ml/osx/ginstall.md new file mode 100644 index 0000000000..99634298ee --- /dev/null +++ b/pages.ml/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> ഈ കമാൻഡ് `-p linux install` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux install` diff --git a/pages.ml/osx/gjoin.md b/pages.ml/osx/gjoin.md new file mode 100644 index 0000000000..4ba2674ab5 --- /dev/null +++ b/pages.ml/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> ഈ കമാൻഡ് `-p linux join` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux join` diff --git a/pages.ml/osx/gkill.md b/pages.ml/osx/gkill.md new file mode 100644 index 0000000000..d931bac59b --- /dev/null +++ b/pages.ml/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> ഈ കമാൻഡ് `-p linux kill` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux kill` diff --git a/pages.ml/osx/glibtool.md b/pages.ml/osx/glibtool.md new file mode 100644 index 0000000000..0d08495eab --- /dev/null +++ b/pages.ml/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> ഈ കമാൻഡ് `-p linux libtool` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux libtool` diff --git a/pages.ml/osx/glibtoolize.md b/pages.ml/osx/glibtoolize.md new file mode 100644 index 0000000000..0d8ae5ccbc --- /dev/null +++ b/pages.ml/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> ഈ കമാൻഡ് `-p linux libtoolize` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux libtoolize` diff --git a/pages.ml/osx/glink.md b/pages.ml/osx/glink.md new file mode 100644 index 0000000000..72ef1014dc --- /dev/null +++ b/pages.ml/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> ഈ കമാൻഡ് `-p linux link` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux link` diff --git a/pages.ml/osx/gln.md b/pages.ml/osx/gln.md new file mode 100644 index 0000000000..e7f4568905 --- /dev/null +++ b/pages.ml/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> ഈ കമാൻഡ് `-p linux ln` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux ln` diff --git a/pages.ml/osx/glocate.md b/pages.ml/osx/glocate.md new file mode 100644 index 0000000000..c9a7119618 --- /dev/null +++ b/pages.ml/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> ഈ കമാൻഡ് `-p linux locate` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux locate` diff --git a/pages.ml/osx/glogger.md b/pages.ml/osx/glogger.md new file mode 100644 index 0000000000..87523fd67f --- /dev/null +++ b/pages.ml/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> ഈ കമാൻഡ് `-p linux logger` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux logger` diff --git a/pages.ml/osx/glogname.md b/pages.ml/osx/glogname.md new file mode 100644 index 0000000000..9823031d13 --- /dev/null +++ b/pages.ml/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> ഈ കമാൻഡ് `-p linux logname` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux logname` diff --git a/pages.ml/osx/gls.md b/pages.ml/osx/gls.md new file mode 100644 index 0000000000..e4091e6454 --- /dev/null +++ b/pages.ml/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> ഈ കമാൻഡ് `-p linux ls` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux ls` diff --git a/pages.ml/osx/gmake.md b/pages.ml/osx/gmake.md new file mode 100644 index 0000000000..de9669002d --- /dev/null +++ b/pages.ml/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> ഈ കമാൻഡ് `-p linux make` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux make` diff --git a/pages.ml/osx/gmd5sum.md b/pages.ml/osx/gmd5sum.md new file mode 100644 index 0000000000..14ad7cfc05 --- /dev/null +++ b/pages.ml/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> ഈ കമാൻഡ് `-p linux md5sum` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux md5sum` diff --git a/pages.ml/osx/gmkdir.md b/pages.ml/osx/gmkdir.md new file mode 100644 index 0000000000..7269d06c6b --- /dev/null +++ b/pages.ml/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> ഈ കമാൻഡ് `-p linux mkdir` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux mkdir` diff --git a/pages.ml/osx/gmkfifo.md b/pages.ml/osx/gmkfifo.md new file mode 100644 index 0000000000..60187ea041 --- /dev/null +++ b/pages.ml/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> ഈ കമാൻഡ് `-p linux mkfifo` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux mkfifo` diff --git a/pages.ml/osx/gmknod.md b/pages.ml/osx/gmknod.md new file mode 100644 index 0000000000..920d80d94f --- /dev/null +++ b/pages.ml/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> ഈ കമാൻഡ് `-p linux mknod` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux mknod` diff --git a/pages.ml/osx/gmktemp.md b/pages.ml/osx/gmktemp.md new file mode 100644 index 0000000000..813369989d --- /dev/null +++ b/pages.ml/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> ഈ കമാൻഡ് `-p linux mktemp` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux mktemp` diff --git a/pages.ml/osx/gmv.md b/pages.ml/osx/gmv.md new file mode 100644 index 0000000000..c59d181957 --- /dev/null +++ b/pages.ml/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> ഈ കമാൻഡ് `-p linux mv` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux mv` diff --git a/pages.ml/osx/gnice.md b/pages.ml/osx/gnice.md new file mode 100644 index 0000000000..ff99df9aab --- /dev/null +++ b/pages.ml/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> ഈ കമാൻഡ് `-p linux nice` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux nice` diff --git a/pages.ml/osx/gnl.md b/pages.ml/osx/gnl.md new file mode 100644 index 0000000000..1f900573f8 --- /dev/null +++ b/pages.ml/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> ഈ കമാൻഡ് `-p linux nl` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux nl` diff --git a/pages.ml/osx/gnohup.md b/pages.ml/osx/gnohup.md new file mode 100644 index 0000000000..c95d2d3845 --- /dev/null +++ b/pages.ml/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> ഈ കമാൻഡ് `-p linux nohup` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux nohup` diff --git a/pages.ml/osx/gnproc.md b/pages.ml/osx/gnproc.md new file mode 100644 index 0000000000..2824fed46b --- /dev/null +++ b/pages.ml/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> ഈ കമാൻഡ് `-p linux nproc` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux nproc` diff --git a/pages.ml/osx/gnumfmt.md b/pages.ml/osx/gnumfmt.md new file mode 100644 index 0000000000..b10e6dfdc6 --- /dev/null +++ b/pages.ml/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> ഈ കമാൻഡ് `-p linux numfmt` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux numfmt` diff --git a/pages.ml/osx/god.md b/pages.ml/osx/god.md new file mode 100644 index 0000000000..476eaec697 --- /dev/null +++ b/pages.ml/osx/god.md @@ -0,0 +1,7 @@ +# god + +> ഈ കമാൻഡ് `-p linux od` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux od` diff --git a/pages.ml/osx/gpaste.md b/pages.ml/osx/gpaste.md new file mode 100644 index 0000000000..339bb59368 --- /dev/null +++ b/pages.ml/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> ഈ കമാൻഡ് `-p linux paste` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux paste` diff --git a/pages.ml/osx/gpathchk.md b/pages.ml/osx/gpathchk.md new file mode 100644 index 0000000000..a411dbddf6 --- /dev/null +++ b/pages.ml/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> ഈ കമാൻഡ് `-p linux pathchk` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux pathchk` diff --git a/pages.ml/osx/gping.md b/pages.ml/osx/gping.md new file mode 100644 index 0000000000..63f6e706a6 --- /dev/null +++ b/pages.ml/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> ഈ കമാൻഡ് `-p linux ping` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux ping` diff --git a/pages.ml/osx/gping6.md b/pages.ml/osx/gping6.md new file mode 100644 index 0000000000..5dbdb649f5 --- /dev/null +++ b/pages.ml/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> ഈ കമാൻഡ് `-p linux ping6` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux ping6` diff --git a/pages.ml/osx/gpinky.md b/pages.ml/osx/gpinky.md new file mode 100644 index 0000000000..bbf83e994c --- /dev/null +++ b/pages.ml/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> ഈ കമാൻഡ് `-p linux pinky` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux pinky` diff --git a/pages.ml/osx/gpr.md b/pages.ml/osx/gpr.md new file mode 100644 index 0000000000..94b3e44470 --- /dev/null +++ b/pages.ml/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> ഈ കമാൻഡ് `-p linux pr` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux pr` diff --git a/pages.ml/osx/gprintenv.md b/pages.ml/osx/gprintenv.md new file mode 100644 index 0000000000..042826f728 --- /dev/null +++ b/pages.ml/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> ഈ കമാൻഡ് `-p linux printenv` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux printenv` diff --git a/pages.ml/osx/gprintf.md b/pages.ml/osx/gprintf.md new file mode 100644 index 0000000000..5e01a5d09c --- /dev/null +++ b/pages.ml/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> ഈ കമാൻഡ് `-p linux printf` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux printf` diff --git a/pages.ml/osx/gptx.md b/pages.ml/osx/gptx.md new file mode 100644 index 0000000000..35fb7ea2a1 --- /dev/null +++ b/pages.ml/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> ഈ കമാൻഡ് `-p linux ptx` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux ptx` diff --git a/pages.ml/osx/gpwd.md b/pages.ml/osx/gpwd.md new file mode 100644 index 0000000000..3492bdbefe --- /dev/null +++ b/pages.ml/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> ഈ കമാൻഡ് `-p linux pwd` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux pwd` diff --git a/pages.ml/osx/grcp.md b/pages.ml/osx/grcp.md new file mode 100644 index 0000000000..6a2b659d95 --- /dev/null +++ b/pages.ml/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> ഈ കമാൻഡ് `-p linux rcp` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux rcp` diff --git a/pages.ml/osx/greadlink.md b/pages.ml/osx/greadlink.md new file mode 100644 index 0000000000..526ce93c7f --- /dev/null +++ b/pages.ml/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> ഈ കമാൻഡ് `-p linux readlink` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux readlink` diff --git a/pages.ml/osx/grealpath.md b/pages.ml/osx/grealpath.md new file mode 100644 index 0000000000..df7134ed65 --- /dev/null +++ b/pages.ml/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> ഈ കമാൻഡ് `-p linux realpath` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux realpath` diff --git a/pages.ml/osx/grexec.md b/pages.ml/osx/grexec.md new file mode 100644 index 0000000000..79d04147dd --- /dev/null +++ b/pages.ml/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> ഈ കമാൻഡ് `-p linux rexec` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux rexec` diff --git a/pages.ml/osx/grlogin.md b/pages.ml/osx/grlogin.md new file mode 100644 index 0000000000..242219cd42 --- /dev/null +++ b/pages.ml/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> ഈ കമാൻഡ് `-p linux rlogin` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux rlogin` diff --git a/pages.ml/osx/grm.md b/pages.ml/osx/grm.md new file mode 100644 index 0000000000..2c4bcd9028 --- /dev/null +++ b/pages.ml/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> ഈ കമാൻഡ് `-p linux rm` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux rm` diff --git a/pages.ml/osx/grmdir.md b/pages.ml/osx/grmdir.md new file mode 100644 index 0000000000..9c91bda4a0 --- /dev/null +++ b/pages.ml/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> ഈ കമാൻഡ് `-p linux rmdir` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux rmdir` diff --git a/pages.ml/osx/grsh.md b/pages.ml/osx/grsh.md new file mode 100644 index 0000000000..19061a803f --- /dev/null +++ b/pages.ml/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> ഈ കമാൻഡ് `-p linux rsh` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux rsh` diff --git a/pages.ml/osx/gruncon.md b/pages.ml/osx/gruncon.md new file mode 100644 index 0000000000..a345e05bc5 --- /dev/null +++ b/pages.ml/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> ഈ കമാൻഡ് `-p linux runcon` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux runcon` diff --git a/pages.ml/osx/gsed.md b/pages.ml/osx/gsed.md new file mode 100644 index 0000000000..8977f87696 --- /dev/null +++ b/pages.ml/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> ഈ കമാൻഡ് `-p linux sed` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux sed` diff --git a/pages.ml/osx/gseq.md b/pages.ml/osx/gseq.md new file mode 100644 index 0000000000..a307b54de3 --- /dev/null +++ b/pages.ml/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> ഈ കമാൻഡ് `-p linux seq` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux seq` diff --git a/pages.ml/osx/gsha1sum.md b/pages.ml/osx/gsha1sum.md new file mode 100644 index 0000000000..48dd03a30e --- /dev/null +++ b/pages.ml/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> ഈ കമാൻഡ് `-p linux sha1sum` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux sha1sum` diff --git a/pages.ml/osx/gsha224sum.md b/pages.ml/osx/gsha224sum.md new file mode 100644 index 0000000000..a91b0991ee --- /dev/null +++ b/pages.ml/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> ഈ കമാൻഡ് `-p linux sha224sum` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux sha224sum` diff --git a/pages.ml/osx/gsha256sum.md b/pages.ml/osx/gsha256sum.md new file mode 100644 index 0000000000..9fc2e98768 --- /dev/null +++ b/pages.ml/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> ഈ കമാൻഡ് `-p linux sha256sum` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux sha256sum` diff --git a/pages.ml/osx/gsha384sum.md b/pages.ml/osx/gsha384sum.md new file mode 100644 index 0000000000..5c41e262d7 --- /dev/null +++ b/pages.ml/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> ഈ കമാൻഡ് `-p linux sha384sum` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux sha384sum` diff --git a/pages.ml/osx/gsha512sum.md b/pages.ml/osx/gsha512sum.md new file mode 100644 index 0000000000..7926609db6 --- /dev/null +++ b/pages.ml/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> ഈ കമാൻഡ് `-p linux sha512sum` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux sha512sum` diff --git a/pages.ml/osx/gshred.md b/pages.ml/osx/gshred.md new file mode 100644 index 0000000000..00b09d02ad --- /dev/null +++ b/pages.ml/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> ഈ കമാൻഡ് `-p linux shred` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux shred` diff --git a/pages.ml/osx/gshuf.md b/pages.ml/osx/gshuf.md new file mode 100644 index 0000000000..05fa24c3d1 --- /dev/null +++ b/pages.ml/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> ഈ കമാൻഡ് `-p linux shuf` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux shuf` diff --git a/pages.ml/osx/gsleep.md b/pages.ml/osx/gsleep.md new file mode 100644 index 0000000000..8f342ae543 --- /dev/null +++ b/pages.ml/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> ഈ കമാൻഡ് `-p linux sleep` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux sleep` diff --git a/pages.ml/osx/gsort.md b/pages.ml/osx/gsort.md new file mode 100644 index 0000000000..74bd936032 --- /dev/null +++ b/pages.ml/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> ഈ കമാൻഡ് `-p linux sort` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux sort` diff --git a/pages.ml/osx/gsplit.md b/pages.ml/osx/gsplit.md new file mode 100644 index 0000000000..0dbdf050bd --- /dev/null +++ b/pages.ml/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> ഈ കമാൻഡ് `-p linux split` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux split` diff --git a/pages.ml/osx/gstat.md b/pages.ml/osx/gstat.md new file mode 100644 index 0000000000..a544b10c85 --- /dev/null +++ b/pages.ml/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> ഈ കമാൻഡ് `-p linux stat` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux stat` diff --git a/pages.ml/osx/gstdbuf.md b/pages.ml/osx/gstdbuf.md new file mode 100644 index 0000000000..7d0f86a738 --- /dev/null +++ b/pages.ml/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> ഈ കമാൻഡ് `-p linux stdbuf` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux stdbuf` diff --git a/pages.ml/osx/gstty.md b/pages.ml/osx/gstty.md new file mode 100644 index 0000000000..997db6a65f --- /dev/null +++ b/pages.ml/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> ഈ കമാൻഡ് `-p linux stty` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux stty` diff --git a/pages.ml/osx/gsum.md b/pages.ml/osx/gsum.md new file mode 100644 index 0000000000..d69a75f35c --- /dev/null +++ b/pages.ml/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> ഈ കമാൻഡ് `-p linux sum` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux sum` diff --git a/pages.ml/osx/gsync.md b/pages.ml/osx/gsync.md new file mode 100644 index 0000000000..c2b3776329 --- /dev/null +++ b/pages.ml/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> ഈ കമാൻഡ് `-p linux sync` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux sync` diff --git a/pages.ml/osx/gtac.md b/pages.ml/osx/gtac.md new file mode 100644 index 0000000000..e03b84adeb --- /dev/null +++ b/pages.ml/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> ഈ കമാൻഡ് `-p linux tac` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux tac` diff --git a/pages.ml/osx/gtail.md b/pages.ml/osx/gtail.md new file mode 100644 index 0000000000..867538bc13 --- /dev/null +++ b/pages.ml/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> ഈ കമാൻഡ് `-p linux tail` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux tail` diff --git a/pages.ml/osx/gtalk.md b/pages.ml/osx/gtalk.md new file mode 100644 index 0000000000..1ff3362e8e --- /dev/null +++ b/pages.ml/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> ഈ കമാൻഡ് `-p linux talk` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux talk` diff --git a/pages.ml/osx/gtar.md b/pages.ml/osx/gtar.md new file mode 100644 index 0000000000..8aaebe7943 --- /dev/null +++ b/pages.ml/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> ഈ കമാൻഡ് `-p linux tar` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux tar` diff --git a/pages.ml/osx/gtee.md b/pages.ml/osx/gtee.md new file mode 100644 index 0000000000..77e13e224a --- /dev/null +++ b/pages.ml/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> ഈ കമാൻഡ് `-p linux tee` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux tee` diff --git a/pages.ml/osx/gtelnet.md b/pages.ml/osx/gtelnet.md new file mode 100644 index 0000000000..9d65dbe393 --- /dev/null +++ b/pages.ml/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> ഈ കമാൻഡ് `-p linux telnet` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux telnet` diff --git a/pages.ml/osx/gtest.md b/pages.ml/osx/gtest.md new file mode 100644 index 0000000000..09ff054197 --- /dev/null +++ b/pages.ml/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> ഈ കമാൻഡ് `-p linux test` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux test` diff --git a/pages.ml/osx/gtftp.md b/pages.ml/osx/gtftp.md new file mode 100644 index 0000000000..64774ec493 --- /dev/null +++ b/pages.ml/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> ഈ കമാൻഡ് `-p linux tftp` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux tftp` diff --git a/pages.ml/osx/gtime.md b/pages.ml/osx/gtime.md new file mode 100644 index 0000000000..67b8a20602 --- /dev/null +++ b/pages.ml/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> ഈ കമാൻഡ് `-p linux time` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux time` diff --git a/pages.ml/osx/gtimeout.md b/pages.ml/osx/gtimeout.md new file mode 100644 index 0000000000..e08b30cd19 --- /dev/null +++ b/pages.ml/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> ഈ കമാൻഡ് `-p linux timeout` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux timeout` diff --git a/pages.ml/osx/gtouch.md b/pages.ml/osx/gtouch.md new file mode 100644 index 0000000000..ec43c9e2e9 --- /dev/null +++ b/pages.ml/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> ഈ കമാൻഡ് `-p linux touch` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux touch` diff --git a/pages.ml/osx/gtr.md b/pages.ml/osx/gtr.md new file mode 100644 index 0000000000..6e1ff15321 --- /dev/null +++ b/pages.ml/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> ഈ കമാൻഡ് `-p linux tr` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux tr` diff --git a/pages.ml/osx/gtraceroute.md b/pages.ml/osx/gtraceroute.md new file mode 100644 index 0000000000..110b7a177a --- /dev/null +++ b/pages.ml/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> ഈ കമാൻഡ് `-p linux traceroute` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux traceroute` diff --git a/pages.ml/osx/gtrue.md b/pages.ml/osx/gtrue.md new file mode 100644 index 0000000000..4c36864178 --- /dev/null +++ b/pages.ml/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> ഈ കമാൻഡ് `-p linux true` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux true` diff --git a/pages.ml/osx/gtruncate.md b/pages.ml/osx/gtruncate.md new file mode 100644 index 0000000000..9e0039a644 --- /dev/null +++ b/pages.ml/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> ഈ കമാൻഡ് `-p linux truncate` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux truncate` diff --git a/pages.ml/osx/gtsort.md b/pages.ml/osx/gtsort.md new file mode 100644 index 0000000000..8d5525b990 --- /dev/null +++ b/pages.ml/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> ഈ കമാൻഡ് `-p linux tsort` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux tsort` diff --git a/pages.ml/osx/gtty.md b/pages.ml/osx/gtty.md new file mode 100644 index 0000000000..3644c0ccad --- /dev/null +++ b/pages.ml/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> ഈ കമാൻഡ് `-p linux tty` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux tty` diff --git a/pages.ml/osx/guname.md b/pages.ml/osx/guname.md new file mode 100644 index 0000000000..cd02985799 --- /dev/null +++ b/pages.ml/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> ഈ കമാൻഡ് `-p linux uname` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux uname` diff --git a/pages.ml/osx/gunexpand.md b/pages.ml/osx/gunexpand.md new file mode 100644 index 0000000000..40a7b18fd1 --- /dev/null +++ b/pages.ml/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> ഈ കമാൻഡ് `-p linux unexpand` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux unexpand` diff --git a/pages.ml/osx/guniq.md b/pages.ml/osx/guniq.md new file mode 100644 index 0000000000..4bb13d2505 --- /dev/null +++ b/pages.ml/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> ഈ കമാൻഡ് `-p linux uniq` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux uniq` diff --git a/pages.ml/osx/gunits.md b/pages.ml/osx/gunits.md new file mode 100644 index 0000000000..c22ff94d12 --- /dev/null +++ b/pages.ml/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> ഈ കമാൻഡ് `-p linux units` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux units` diff --git a/pages.ml/osx/gunlink.md b/pages.ml/osx/gunlink.md new file mode 100644 index 0000000000..858b412180 --- /dev/null +++ b/pages.ml/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> ഈ കമാൻഡ് `-p linux unlink` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux unlink` diff --git a/pages.ml/osx/gupdatedb.md b/pages.ml/osx/gupdatedb.md new file mode 100644 index 0000000000..86a1dae098 --- /dev/null +++ b/pages.ml/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> ഈ കമാൻഡ് `-p linux updatedb` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux updatedb` diff --git a/pages.ml/osx/guptime.md b/pages.ml/osx/guptime.md new file mode 100644 index 0000000000..9ad956c83e --- /dev/null +++ b/pages.ml/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> ഈ കമാൻഡ് `-p linux uptime` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux uptime` diff --git a/pages.ml/osx/gusers.md b/pages.ml/osx/gusers.md new file mode 100644 index 0000000000..cdfd0891a7 --- /dev/null +++ b/pages.ml/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> ഈ കമാൻഡ് `-p linux users` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux users` diff --git a/pages.ml/osx/gvdir.md b/pages.ml/osx/gvdir.md new file mode 100644 index 0000000000..aeac00f9b4 --- /dev/null +++ b/pages.ml/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> ഈ കമാൻഡ് `-p linux vdir` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux vdir` diff --git a/pages.ml/osx/gwc.md b/pages.ml/osx/gwc.md new file mode 100644 index 0000000000..ec038762cb --- /dev/null +++ b/pages.ml/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> ഈ കമാൻഡ് `-p linux wc` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux wc` diff --git a/pages.ml/osx/gwhich.md b/pages.ml/osx/gwhich.md new file mode 100644 index 0000000000..e6b76c93b3 --- /dev/null +++ b/pages.ml/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> ഈ കമാൻഡ് `-p linux which` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux which` diff --git a/pages.ml/osx/gwho.md b/pages.ml/osx/gwho.md new file mode 100644 index 0000000000..24b59b2871 --- /dev/null +++ b/pages.ml/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> ഈ കമാൻഡ് `-p linux who` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux who` diff --git a/pages.ml/osx/gwhoami.md b/pages.ml/osx/gwhoami.md new file mode 100644 index 0000000000..3efa117493 --- /dev/null +++ b/pages.ml/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> ഈ കമാൻഡ് `-p linux whoami` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux whoami` diff --git a/pages.ml/osx/gwhois.md b/pages.ml/osx/gwhois.md new file mode 100644 index 0000000000..cd0fda85a4 --- /dev/null +++ b/pages.ml/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> ഈ കമാൻഡ് `-p linux whois` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux whois` diff --git a/pages.ml/osx/gxargs.md b/pages.ml/osx/gxargs.md new file mode 100644 index 0000000000..f43971082e --- /dev/null +++ b/pages.ml/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> ഈ കമാൻഡ് `-p linux xargs` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux xargs` diff --git a/pages.ml/osx/gyes.md b/pages.ml/osx/gyes.md new file mode 100644 index 0000000000..0f8773197e --- /dev/null +++ b/pages.ml/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> ഈ കമാൻഡ് `-p linux yes` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr -p linux yes` diff --git a/pages.ml/osx/launchd.md b/pages.ml/osx/launchd.md new file mode 100644 index 0000000000..de1e2d320f --- /dev/null +++ b/pages.ml/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> ഈ കമാൻഡ് `launchctl` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr launchctl` diff --git a/pages.ml/windows/chrome.md b/pages.ml/windows/chrome.md new file mode 100644 index 0000000000..6d1c7f5bdf --- /dev/null +++ b/pages.ml/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> ഈ കമാൻഡ് `chromium` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr chromium` diff --git a/pages.ml/windows/cpush.md b/pages.ml/windows/cpush.md new file mode 100644 index 0000000000..be5cea1c49 --- /dev/null +++ b/pages.ml/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> ഈ കമാൻഡ് `choco-push` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr choco-push` diff --git a/pages.ml/windows/curl.md b/pages.ml/windows/curl.md new file mode 100644 index 0000000000..63bf64e011 --- /dev/null +++ b/pages.ml/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> ഈ കമാൻഡ് `curl -p common` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr curl -p common` diff --git a/pages.ml/windows/iwr.md b/pages.ml/windows/iwr.md new file mode 100644 index 0000000000..a89a1296fe --- /dev/null +++ b/pages.ml/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> ഈ കമാൻഡ് `invoke-webrequest` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr invoke-webrequest` diff --git a/pages.ml/windows/pwsh-where.md b/pages.ml/windows/pwsh-where.md new file mode 100644 index 0000000000..77fd367d37 --- /dev/null +++ b/pages.ml/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> ഈ കമാൻഡ് `Where-Object` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr Where-Object` diff --git a/pages.ml/windows/rd.md b/pages.ml/windows/rd.md new file mode 100644 index 0000000000..b988eb2fa9 --- /dev/null +++ b/pages.ml/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> ഈ കമാൻഡ് `rmdir` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr rmdir` diff --git a/pages.ml/windows/sls.md b/pages.ml/windows/sls.md new file mode 100644 index 0000000000..940544245f --- /dev/null +++ b/pages.ml/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> ഈ കമാൻഡ് `where-object` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr where-object` diff --git a/pages.ml/windows/wget.md b/pages.ml/windows/wget.md new file mode 100644 index 0000000000..457b1f227b --- /dev/null +++ b/pages.ml/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> ഈ കമാൻഡ് `wget -p common` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr wget -p common` diff --git a/pages.ne/android/am.md b/pages.ne/android/am.md new file mode 100644 index 0000000000..7d0f45a9d6 --- /dev/null +++ b/pages.ne/android/am.md @@ -0,0 +1,20 @@ +# am + +> एन्ड्रोइड गतिविधि प्रबन्धक। +> थप जानकारी: . + +- एक विशेष गतिविधि सुरु गर्नुहोस्: + +`am start -n {{com.android.settings/.Settings}}` + +- एउटा गतिविधि सुरु गर्नुहोस् र यसलाई [d] डाटा पास गर्नुहोस्: + +`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}` + +- एक विशिष्ट कार्य र [c] श्रेणीसँग (category) मेल खाने गतिविधि सुरु गर्नुहोस्: + +`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}` + +- एउटा उद्देश्यलाई URI मा रूपान्तरण गर्नुहोस्: + +`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}` diff --git a/pages.ne/android/bugreport.md b/pages.ne/android/bugreport.md new file mode 100644 index 0000000000..8b7b2c73e5 --- /dev/null +++ b/pages.ne/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> एन्ड्रोइड बग रिपोर्ट देखाउनुहोस्। +> यो आदेश `adb shell` मार्फत मात्र प्रयोग गर्न सकिन्छ। +> थप जानकारी: . + +- एन्ड्रोइड उपकरणको पूर्ण बग रिपोर्ट प्रदर्शन गर्नुहोस्: + +`bugreport` diff --git a/pages.ne/common/bundler.md b/pages.ne/common/bundler.md new file mode 100644 index 0000000000..c1ebc70418 --- /dev/null +++ b/pages.ne/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> यो आदेश `bundle` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr bundle` diff --git a/pages.ne/common/clamav.md b/pages.ne/common/clamav.md new file mode 100644 index 0000000000..dba51d3a00 --- /dev/null +++ b/pages.ne/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> यो आदेश `clamdscan` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr clamdscan` diff --git a/pages.ne/common/clang-cpp.md b/pages.ne/common/clang-cpp.md new file mode 100644 index 0000000000..f2615a6eb2 --- /dev/null +++ b/pages.ne/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> यो आदेश `clang++` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr clang++` diff --git a/pages.ne/common/clojure.md b/pages.ne/common/clojure.md new file mode 100644 index 0000000000..628bb50709 --- /dev/null +++ b/pages.ne/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> यो आदेश `clj` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr clj` diff --git a/pages.ne/common/cola.md b/pages.ne/common/cola.md new file mode 100644 index 0000000000..dd4a06b265 --- /dev/null +++ b/pages.ne/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> यो आदेश `git-cola` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr git-cola` diff --git a/pages.ne/common/cron.md b/pages.ne/common/cron.md new file mode 100644 index 0000000000..ef4e361d91 --- /dev/null +++ b/pages.ne/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> यो आदेश `crontab` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr crontab` diff --git a/pages.ne/common/docker-compose.md b/pages.ne/common/docker-compose.md new file mode 100644 index 0000000000..f5960c897b --- /dev/null +++ b/pages.ne/common/docker-compose.md @@ -0,0 +1,36 @@ +# docker compose + +> बहु कन्टेनर डकर अनुप्रयोगहरू चलाउनुहोस् र व्यवस्थापन गर्नुहोस्। +> थप जानकारी: . + +- सबै चलिरहेको कन्टेनरहरू सूचीबद्ध गर्नुहोस्: + +`docker compose ps` + +- हालको डाइरेक्टरीबाट `docker-compose.yml` फाइल प्रयोग गरेर पृष्ठभूमिमा सबै कन्टेनरहरू सिर्जना गर्नुहोस् र सुरु गर्नुहोस्: + +`docker compose up --detach` + +- सबै कन्टेनरहरू सुरु गर्नुहोस्, आवश्यक भएमा पुन: निर्माण गर्नुहोस्: + +`docker compose up --build` + +- प्रोजेक्तको नाम निर्दिष्ट गरेर र वैकल्पिक रचना फाइल प्रयोग गरेर सबै कन्टेनरहरू सुरु गर्नुहोस्: + +`docker compose -p {{परियोजनाको_नाम}} --file {{फाइल/को/पथ}} up` + +- चलिरहेको सबै कन्टेनरहरू रोक्नुहोस्: + +`docker compose stop` + +- सबै कन्टेनरहरू, नेटवर्कहरू, छविहरू, र भोल्युमहरू हटाउनुहोस् र रोक्नुहोस्: + +`docker compose down --rmi all --volumes` + +- सबै कन्टेनरहरूको लागि लगहरू फलो गर्नुहोस्: + +`docker compose logs --follow` + +- विशेष कन्टेनरको लागि लगहरू पछ्याउनुहोस्: + +`docker compose logs --follow {{कन्टेनर_नाम}}` diff --git a/pages.ne/common/fossil-ci.md b/pages.ne/common/fossil-ci.md new file mode 100644 index 0000000000..ea27f21bab --- /dev/null +++ b/pages.ne/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> यो आदेश `fossil-commit` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr fossil-commit` diff --git a/pages.ne/common/fossil-delete.md b/pages.ne/common/fossil-delete.md new file mode 100644 index 0000000000..448b011dea --- /dev/null +++ b/pages.ne/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> यो आदेश `fossil rm` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr fossil rm` diff --git a/pages.ne/common/fossil-forget.md b/pages.ne/common/fossil-forget.md new file mode 100644 index 0000000000..d2e2d71413 --- /dev/null +++ b/pages.ne/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> यो आदेश `fossil rm` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr fossil rm` diff --git a/pages.ne/common/fossil-new.md b/pages.ne/common/fossil-new.md new file mode 100644 index 0000000000..c684c9c09f --- /dev/null +++ b/pages.ne/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> यो आदेश `fossil-init` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr fossil-init` diff --git a/pages.ne/common/gh-cs.md b/pages.ne/common/gh-cs.md new file mode 100644 index 0000000000..423d08f9a5 --- /dev/null +++ b/pages.ne/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> यो आदेश `gh-codespace` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr gh-codespace` diff --git a/pages.ne/common/gnmic-sub.md b/pages.ne/common/gnmic-sub.md new file mode 100644 index 0000000000..afb5375d13 --- /dev/null +++ b/pages.ne/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> यो आदेश `gnmic subscribe` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr gnmic subscribe` diff --git a/pages.ne/common/google-chrome.md b/pages.ne/common/google-chrome.md new file mode 100644 index 0000000000..7250f59878 --- /dev/null +++ b/pages.ne/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> यो आदेश `chromium` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr chromium` diff --git a/pages.ne/common/hx.md b/pages.ne/common/hx.md new file mode 100644 index 0000000000..7a50df7a78 --- /dev/null +++ b/pages.ne/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> यो आदेश `helix` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr helix` diff --git a/pages.ne/common/kafkacat.md b/pages.ne/common/kafkacat.md new file mode 100644 index 0000000000..79b12371f4 --- /dev/null +++ b/pages.ne/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> यो आदेश `kcat` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr kcat` diff --git a/pages.ne/common/llvm-ar.md b/pages.ne/common/llvm-ar.md new file mode 100644 index 0000000000..38f5b0abc8 --- /dev/null +++ b/pages.ne/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> यो आदेश `ar` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr ar` diff --git a/pages.ne/common/llvm-g++.md b/pages.ne/common/llvm-g++.md new file mode 100644 index 0000000000..47f7f924cb --- /dev/null +++ b/pages.ne/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> यो आदेश `clang++` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr clang++` diff --git a/pages.ne/common/llvm-gcc.md b/pages.ne/common/llvm-gcc.md new file mode 100644 index 0000000000..df8e4940df --- /dev/null +++ b/pages.ne/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> यो आदेश `clang` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr clang` diff --git a/pages.ne/common/llvm-nm.md b/pages.ne/common/llvm-nm.md new file mode 100644 index 0000000000..b966856fc8 --- /dev/null +++ b/pages.ne/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> यो आदेश `nm` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr nm` diff --git a/pages.ne/common/llvm-objdump.md b/pages.ne/common/llvm-objdump.md new file mode 100644 index 0000000000..7f127c6e8d --- /dev/null +++ b/pages.ne/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> यो आदेश `objdump` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr objdump` diff --git a/pages.ne/common/llvm-strings.md b/pages.ne/common/llvm-strings.md new file mode 100644 index 0000000000..43ee58032f --- /dev/null +++ b/pages.ne/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> यो आदेश `strings` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr strings` diff --git a/pages.ne/common/lzcat.md b/pages.ne/common/lzcat.md new file mode 100644 index 0000000000..7ad8f077ae --- /dev/null +++ b/pages.ne/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> यो आदेश `xz` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr xz` diff --git a/pages.ne/common/lzma.md b/pages.ne/common/lzma.md new file mode 100644 index 0000000000..943a2ba525 --- /dev/null +++ b/pages.ne/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> यो आदेश `xz` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr xz` diff --git a/pages.ne/common/mscore.md b/pages.ne/common/mscore.md new file mode 100644 index 0000000000..a237935b4a --- /dev/null +++ b/pages.ne/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> यो आदेश `musescore` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr musescore` diff --git a/pages.ne/common/nm-classic.md b/pages.ne/common/nm-classic.md new file mode 100644 index 0000000000..991a881d4b --- /dev/null +++ b/pages.ne/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> यो आदेश `nm` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr nm` diff --git a/pages.ne/common/ntl.md b/pages.ne/common/ntl.md new file mode 100644 index 0000000000..7ff6b92763 --- /dev/null +++ b/pages.ne/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> यो आदेश `netlify` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr netlify` diff --git a/pages.ne/common/pio-init.md b/pages.ne/common/pio-init.md new file mode 100644 index 0000000000..d2c9da4e9b --- /dev/null +++ b/pages.ne/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> यो आदेश `pio project` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr pio project` diff --git a/pages.ne/common/piodebuggdb.md b/pages.ne/common/piodebuggdb.md new file mode 100644 index 0000000000..bc34584c55 --- /dev/null +++ b/pages.ne/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> यो आदेश `pio debug` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr pio debug` diff --git a/pages.ne/common/platformio.md b/pages.ne/common/platformio.md new file mode 100644 index 0000000000..69713d7866 --- /dev/null +++ b/pages.ne/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> यो आदेश `pio` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr pio` diff --git a/pages.ne/common/ptpython3.md b/pages.ne/common/ptpython3.md new file mode 100644 index 0000000000..dce91b767b --- /dev/null +++ b/pages.ne/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> यो आदेश `ptpython` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr ptpython` diff --git a/pages.ne/common/python3.md b/pages.ne/common/python3.md new file mode 100644 index 0000000000..e7f33ec87f --- /dev/null +++ b/pages.ne/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> यो आदेश `python` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr python` diff --git a/pages.ne/common/r2.md b/pages.ne/common/r2.md new file mode 100644 index 0000000000..5b3d19ee76 --- /dev/null +++ b/pages.ne/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> यो आदेश `radare2` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr radare2` diff --git a/pages.ne/common/rcat.md b/pages.ne/common/rcat.md new file mode 100644 index 0000000000..db55ae5678 --- /dev/null +++ b/pages.ne/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> यो आदेश `rc` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr rc` diff --git a/pages.ne/common/ripgrep.md b/pages.ne/common/ripgrep.md new file mode 100644 index 0000000000..7a014a8787 --- /dev/null +++ b/pages.ne/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> यो आदेश `rg` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr rg` diff --git a/pages.ne/common/tldrl.md b/pages.ne/common/tldrl.md new file mode 100644 index 0000000000..85fdb94237 --- /dev/null +++ b/pages.ne/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> यो आदेश `tldr-lint` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr tldr-lint` diff --git a/pages.ne/common/tlmgr-arch.md b/pages.ne/common/tlmgr-arch.md new file mode 100644 index 0000000000..ec1bf01f35 --- /dev/null +++ b/pages.ne/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> यो आदेश `tlmgr platform` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr tlmgr platform` diff --git a/pages.ne/common/todoman.md b/pages.ne/common/todoman.md new file mode 100644 index 0000000000..76ad492c82 --- /dev/null +++ b/pages.ne/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> यो आदेश `todo` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr todo` diff --git a/pages.ne/common/transmission.md b/pages.ne/common/transmission.md new file mode 100644 index 0000000000..6b488d987d --- /dev/null +++ b/pages.ne/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> यो आदेश `transmission-daemon` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr transmission-daemon` diff --git a/pages.ne/common/unlzma.md b/pages.ne/common/unlzma.md new file mode 100644 index 0000000000..92326c5330 --- /dev/null +++ b/pages.ne/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> यो आदेश `xz` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr xz` diff --git a/pages.ne/common/unxz.md b/pages.ne/common/unxz.md new file mode 100644 index 0000000000..a8faedf253 --- /dev/null +++ b/pages.ne/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> यो आदेश `xz` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr xz` diff --git a/pages.ne/common/vi.md b/pages.ne/common/vi.md new file mode 100644 index 0000000000..10bb55baf2 --- /dev/null +++ b/pages.ne/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> यो आदेश `vim` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr vim` diff --git a/pages.ne/common/xzcat.md b/pages.ne/common/xzcat.md new file mode 100644 index 0000000000..2a79b874c1 --- /dev/null +++ b/pages.ne/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> यो आदेश `xz` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr xz` diff --git a/pages.ne/linux/alternatives.md b/pages.ne/linux/alternatives.md new file mode 100644 index 0000000000..0fb3a70342 --- /dev/null +++ b/pages.ne/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> यो आदेश `update-alternatives` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr update-alternatives` diff --git a/pages.ne/linux/batcat.md b/pages.ne/linux/batcat.md new file mode 100644 index 0000000000..a50c8de3cd --- /dev/null +++ b/pages.ne/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> यो आदेश `bat` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr bat` diff --git a/pages.ne/linux/bspwm.md b/pages.ne/linux/bspwm.md new file mode 100644 index 0000000000..12e3d1d7af --- /dev/null +++ b/pages.ne/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> यो आदेश `bspc` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr bspc` diff --git a/pages.ne/linux/cc.md b/pages.ne/linux/cc.md new file mode 100644 index 0000000000..daaa389621 --- /dev/null +++ b/pages.ne/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> यो आदेश `gcc` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr gcc` diff --git a/pages.ne/linux/cgroups.md b/pages.ne/linux/cgroups.md new file mode 100644 index 0000000000..fb053f8e59 --- /dev/null +++ b/pages.ne/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> यो आदेश `cgclassify` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr cgclassify` diff --git a/pages.ne/linux/ip-route-list.md b/pages.ne/linux/ip-route-list.md new file mode 100644 index 0000000000..a26dc2c497 --- /dev/null +++ b/pages.ne/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> यो आदेश `ip-route-show` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr ip-route-show` diff --git a/pages.ne/linux/megadl.md b/pages.ne/linux/megadl.md new file mode 100644 index 0000000000..cef7cd1290 --- /dev/null +++ b/pages.ne/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> यो आदेश `megatools-dl` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr megatools-dl` diff --git a/pages.ne/linux/ncal.md b/pages.ne/linux/ncal.md new file mode 100644 index 0000000000..17466a279c --- /dev/null +++ b/pages.ne/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> यो आदेश `cal` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr cal` diff --git a/pages.ne/linux/ubuntu-bug.md b/pages.ne/linux/ubuntu-bug.md new file mode 100644 index 0000000000..3450f8c825 --- /dev/null +++ b/pages.ne/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> यो आदेश `apport-bug` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr apport-bug` diff --git a/pages.ne/osx/aa.md b/pages.ne/osx/aa.md new file mode 100644 index 0000000000..d79214e85c --- /dev/null +++ b/pages.ne/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> यो आदेश `yaa` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr yaa` diff --git a/pages.ne/osx/g[.md b/pages.ne/osx/g[.md new file mode 100644 index 0000000000..4fd16472aa --- /dev/null +++ b/pages.ne/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> यो आदेश `-p linux [` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux [` diff --git a/pages.ne/osx/gawk.md b/pages.ne/osx/gawk.md new file mode 100644 index 0000000000..56da6e3728 --- /dev/null +++ b/pages.ne/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> यो आदेश `-p linux awk` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux awk` diff --git a/pages.ne/osx/gb2sum.md b/pages.ne/osx/gb2sum.md new file mode 100644 index 0000000000..980853ca56 --- /dev/null +++ b/pages.ne/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> यो आदेश `-p linux b2sum` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux b2sum` diff --git a/pages.ne/osx/gbase32.md b/pages.ne/osx/gbase32.md new file mode 100644 index 0000000000..84c177bc1e --- /dev/null +++ b/pages.ne/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> यो आदेश `-p linux base32` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux base32` diff --git a/pages.ne/osx/gbase64.md b/pages.ne/osx/gbase64.md new file mode 100644 index 0000000000..ff4725bd4b --- /dev/null +++ b/pages.ne/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> यो आदेश `-p linux base64` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux base64` diff --git a/pages.ne/osx/gbasename.md b/pages.ne/osx/gbasename.md new file mode 100644 index 0000000000..c37fea2662 --- /dev/null +++ b/pages.ne/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> यो आदेश `-p linux basename` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux basename` diff --git a/pages.ne/osx/gbasenc.md b/pages.ne/osx/gbasenc.md new file mode 100644 index 0000000000..4f8c104d10 --- /dev/null +++ b/pages.ne/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> यो आदेश `-p linux basenc` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux basenc` diff --git a/pages.ne/osx/gcat.md b/pages.ne/osx/gcat.md new file mode 100644 index 0000000000..55fb4791db --- /dev/null +++ b/pages.ne/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> यो आदेश `-p linux cat` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux cat` diff --git a/pages.ne/osx/gchcon.md b/pages.ne/osx/gchcon.md new file mode 100644 index 0000000000..e123646afd --- /dev/null +++ b/pages.ne/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> यो आदेश `-p linux chcon` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux chcon` diff --git a/pages.ne/osx/gchgrp.md b/pages.ne/osx/gchgrp.md new file mode 100644 index 0000000000..01d3526896 --- /dev/null +++ b/pages.ne/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> यो आदेश `-p linux chgrp` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux chgrp` diff --git a/pages.ne/osx/gchmod.md b/pages.ne/osx/gchmod.md new file mode 100644 index 0000000000..98dc4bf102 --- /dev/null +++ b/pages.ne/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> यो आदेश `-p linux chmod` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux chmod` diff --git a/pages.ne/osx/gchown.md b/pages.ne/osx/gchown.md new file mode 100644 index 0000000000..6a1e4e9383 --- /dev/null +++ b/pages.ne/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> यो आदेश `-p linux chown` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux chown` diff --git a/pages.ne/osx/gchroot.md b/pages.ne/osx/gchroot.md new file mode 100644 index 0000000000..221841dc70 --- /dev/null +++ b/pages.ne/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> यो आदेश `-p linux chroot` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux chroot` diff --git a/pages.ne/osx/gcksum.md b/pages.ne/osx/gcksum.md new file mode 100644 index 0000000000..781ca53960 --- /dev/null +++ b/pages.ne/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> यो आदेश `-p linux cksum` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux cksum` diff --git a/pages.ne/osx/gcomm.md b/pages.ne/osx/gcomm.md new file mode 100644 index 0000000000..5034d85490 --- /dev/null +++ b/pages.ne/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> यो आदेश `-p linux comm` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux comm` diff --git a/pages.ne/osx/gcp.md b/pages.ne/osx/gcp.md new file mode 100644 index 0000000000..2f7fe04ed3 --- /dev/null +++ b/pages.ne/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> यो आदेश `-p linux cp` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux cp` diff --git a/pages.ne/osx/gcsplit.md b/pages.ne/osx/gcsplit.md new file mode 100644 index 0000000000..25178473c6 --- /dev/null +++ b/pages.ne/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> यो आदेश `-p linux csplit` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux csplit` diff --git a/pages.ne/osx/gcut.md b/pages.ne/osx/gcut.md new file mode 100644 index 0000000000..829f6dccc8 --- /dev/null +++ b/pages.ne/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> यो आदेश `-p linux cut` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux cut` diff --git a/pages.ne/osx/gdate.md b/pages.ne/osx/gdate.md new file mode 100644 index 0000000000..b91035f26e --- /dev/null +++ b/pages.ne/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> यो आदेश `-p linux date` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux date` diff --git a/pages.ne/osx/gdd.md b/pages.ne/osx/gdd.md new file mode 100644 index 0000000000..a6e70b4881 --- /dev/null +++ b/pages.ne/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> यो आदेश `-p linux dd` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux dd` diff --git a/pages.ne/osx/gdf.md b/pages.ne/osx/gdf.md new file mode 100644 index 0000000000..0bb6f5a8cf --- /dev/null +++ b/pages.ne/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> यो आदेश `-p linux df` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux df` diff --git a/pages.ne/osx/gdir.md b/pages.ne/osx/gdir.md new file mode 100644 index 0000000000..ed19a61e37 --- /dev/null +++ b/pages.ne/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> यो आदेश `-p linux dir` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux dir` diff --git a/pages.ne/osx/gdircolors.md b/pages.ne/osx/gdircolors.md new file mode 100644 index 0000000000..0f13fea4fd --- /dev/null +++ b/pages.ne/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> यो आदेश `-p linux dircolors` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux dircolors` diff --git a/pages.ne/osx/gdirname.md b/pages.ne/osx/gdirname.md new file mode 100644 index 0000000000..2efd1e9f24 --- /dev/null +++ b/pages.ne/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> यो आदेश `-p linux dirname` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux dirname` diff --git a/pages.ne/osx/gdnsdomainname.md b/pages.ne/osx/gdnsdomainname.md new file mode 100644 index 0000000000..053f4296db --- /dev/null +++ b/pages.ne/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> यो आदेश `-p linux dnsdomainname` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux dnsdomainname` diff --git a/pages.ne/osx/gecho.md b/pages.ne/osx/gecho.md new file mode 100644 index 0000000000..fe52871cb9 --- /dev/null +++ b/pages.ne/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> यो आदेश `-p linux echo` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux echo` diff --git a/pages.ne/osx/ged.md b/pages.ne/osx/ged.md new file mode 100644 index 0000000000..e7b4f266b0 --- /dev/null +++ b/pages.ne/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> यो आदेश `-p linux ed` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux ed` diff --git a/pages.ne/osx/gegrep.md b/pages.ne/osx/gegrep.md new file mode 100644 index 0000000000..2f6b69dcbc --- /dev/null +++ b/pages.ne/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> यो आदेश `-p linux egrep` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux egrep` diff --git a/pages.ne/osx/genv.md b/pages.ne/osx/genv.md new file mode 100644 index 0000000000..1981805501 --- /dev/null +++ b/pages.ne/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> यो आदेश `-p linux env` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux env` diff --git a/pages.ne/osx/gexpand.md b/pages.ne/osx/gexpand.md new file mode 100644 index 0000000000..d4c2a52cab --- /dev/null +++ b/pages.ne/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> यो आदेश `-p linux expand` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux expand` diff --git a/pages.ne/osx/gexpr.md b/pages.ne/osx/gexpr.md new file mode 100644 index 0000000000..9612c00946 --- /dev/null +++ b/pages.ne/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> यो आदेश `-p linux expr` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux expr` diff --git a/pages.ne/osx/gfactor.md b/pages.ne/osx/gfactor.md new file mode 100644 index 0000000000..0d686e71c3 --- /dev/null +++ b/pages.ne/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> यो आदेश `-p linux factor` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux factor` diff --git a/pages.ne/osx/gfalse.md b/pages.ne/osx/gfalse.md new file mode 100644 index 0000000000..c7b33e3f0e --- /dev/null +++ b/pages.ne/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> यो आदेश `-p linux false` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux false` diff --git a/pages.ne/osx/gfgrep.md b/pages.ne/osx/gfgrep.md new file mode 100644 index 0000000000..3d47a311c3 --- /dev/null +++ b/pages.ne/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> यो आदेश `-p linux fgrep` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux fgrep` diff --git a/pages.ne/osx/gfind.md b/pages.ne/osx/gfind.md new file mode 100644 index 0000000000..c1e994e4d3 --- /dev/null +++ b/pages.ne/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> यो आदेश `-p linux find` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux find` diff --git a/pages.ne/osx/gfmt.md b/pages.ne/osx/gfmt.md new file mode 100644 index 0000000000..d96c64898f --- /dev/null +++ b/pages.ne/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> यो आदेश `-p linux fmt` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux fmt` diff --git a/pages.ne/osx/gfold.md b/pages.ne/osx/gfold.md new file mode 100644 index 0000000000..d253e0d394 --- /dev/null +++ b/pages.ne/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> यो आदेश `-p linux fold` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux fold` diff --git a/pages.ne/osx/gftp.md b/pages.ne/osx/gftp.md new file mode 100644 index 0000000000..6129d0848d --- /dev/null +++ b/pages.ne/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> यो आदेश `-p linux ftp` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux ftp` diff --git a/pages.ne/osx/ggrep.md b/pages.ne/osx/ggrep.md new file mode 100644 index 0000000000..382e38363a --- /dev/null +++ b/pages.ne/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> यो आदेश `-p linux grep` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux grep` diff --git a/pages.ne/osx/ggroups.md b/pages.ne/osx/ggroups.md new file mode 100644 index 0000000000..2eaa1c1453 --- /dev/null +++ b/pages.ne/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> यो आदेश `-p linux groups` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux groups` diff --git a/pages.ne/osx/ghead.md b/pages.ne/osx/ghead.md new file mode 100644 index 0000000000..2593766dd1 --- /dev/null +++ b/pages.ne/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> यो आदेश `-p linux head` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux head` diff --git a/pages.ne/osx/ghostid.md b/pages.ne/osx/ghostid.md new file mode 100644 index 0000000000..0dc03414d5 --- /dev/null +++ b/pages.ne/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> यो आदेश `-p linux hostid` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux hostid` diff --git a/pages.ne/osx/ghostname.md b/pages.ne/osx/ghostname.md new file mode 100644 index 0000000000..89738f6bbf --- /dev/null +++ b/pages.ne/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> यो आदेश `-p linux hostname` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux hostname` diff --git a/pages.ne/osx/gid.md b/pages.ne/osx/gid.md new file mode 100644 index 0000000000..d2dbca59e9 --- /dev/null +++ b/pages.ne/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> यो आदेश `-p linux id` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux id` diff --git a/pages.ne/osx/gifconfig.md b/pages.ne/osx/gifconfig.md new file mode 100644 index 0000000000..8e0de6b590 --- /dev/null +++ b/pages.ne/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> यो आदेश `-p linux ifconfig` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux ifconfig` diff --git a/pages.ne/osx/gindent.md b/pages.ne/osx/gindent.md new file mode 100644 index 0000000000..1a25bd9c0c --- /dev/null +++ b/pages.ne/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> यो आदेश `-p linux indent` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux indent` diff --git a/pages.ne/osx/ginstall.md b/pages.ne/osx/ginstall.md new file mode 100644 index 0000000000..bd931693bd --- /dev/null +++ b/pages.ne/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> यो आदेश `-p linux install` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux install` diff --git a/pages.ne/osx/gjoin.md b/pages.ne/osx/gjoin.md new file mode 100644 index 0000000000..ccec022ea6 --- /dev/null +++ b/pages.ne/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> यो आदेश `-p linux join` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux join` diff --git a/pages.ne/osx/gkill.md b/pages.ne/osx/gkill.md new file mode 100644 index 0000000000..9c58462f54 --- /dev/null +++ b/pages.ne/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> यो आदेश `-p linux kill` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux kill` diff --git a/pages.ne/osx/glibtool.md b/pages.ne/osx/glibtool.md new file mode 100644 index 0000000000..71aa8efd06 --- /dev/null +++ b/pages.ne/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> यो आदेश `-p linux libtool` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux libtool` diff --git a/pages.ne/osx/glibtoolize.md b/pages.ne/osx/glibtoolize.md new file mode 100644 index 0000000000..aaa93cf5dc --- /dev/null +++ b/pages.ne/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> यो आदेश `-p linux libtoolize` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux libtoolize` diff --git a/pages.ne/osx/glink.md b/pages.ne/osx/glink.md new file mode 100644 index 0000000000..37a2d19ff4 --- /dev/null +++ b/pages.ne/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> यो आदेश `-p linux link` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux link` diff --git a/pages.ne/osx/gln.md b/pages.ne/osx/gln.md new file mode 100644 index 0000000000..4c937f399c --- /dev/null +++ b/pages.ne/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> यो आदेश `-p linux ln` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux ln` diff --git a/pages.ne/osx/glocate.md b/pages.ne/osx/glocate.md new file mode 100644 index 0000000000..dce51778f7 --- /dev/null +++ b/pages.ne/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> यो आदेश `-p linux locate` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux locate` diff --git a/pages.ne/osx/glogger.md b/pages.ne/osx/glogger.md new file mode 100644 index 0000000000..279441a7a3 --- /dev/null +++ b/pages.ne/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> यो आदेश `-p linux logger` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux logger` diff --git a/pages.ne/osx/glogname.md b/pages.ne/osx/glogname.md new file mode 100644 index 0000000000..c9513aaa88 --- /dev/null +++ b/pages.ne/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> यो आदेश `-p linux logname` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux logname` diff --git a/pages.ne/osx/gls.md b/pages.ne/osx/gls.md new file mode 100644 index 0000000000..c86d11ef80 --- /dev/null +++ b/pages.ne/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> यो आदेश `-p linux ls` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux ls` diff --git a/pages.ne/osx/gmake.md b/pages.ne/osx/gmake.md new file mode 100644 index 0000000000..4b2c0f4d11 --- /dev/null +++ b/pages.ne/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> यो आदेश `-p linux make` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux make` diff --git a/pages.ne/osx/gmd5sum.md b/pages.ne/osx/gmd5sum.md new file mode 100644 index 0000000000..0968935eaf --- /dev/null +++ b/pages.ne/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> यो आदेश `-p linux md5sum` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux md5sum` diff --git a/pages.ne/osx/gmkdir.md b/pages.ne/osx/gmkdir.md new file mode 100644 index 0000000000..f0235e2b5c --- /dev/null +++ b/pages.ne/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> यो आदेश `-p linux mkdir` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux mkdir` diff --git a/pages.ne/osx/gmkfifo.md b/pages.ne/osx/gmkfifo.md new file mode 100644 index 0000000000..a991c4ad45 --- /dev/null +++ b/pages.ne/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> यो आदेश `-p linux mkfifo` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux mkfifo` diff --git a/pages.ne/osx/gmknod.md b/pages.ne/osx/gmknod.md new file mode 100644 index 0000000000..839031015b --- /dev/null +++ b/pages.ne/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> यो आदेश `-p linux mknod` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux mknod` diff --git a/pages.ne/osx/gmktemp.md b/pages.ne/osx/gmktemp.md new file mode 100644 index 0000000000..71b73bf2c4 --- /dev/null +++ b/pages.ne/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> यो आदेश `-p linux mktemp` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux mktemp` diff --git a/pages.ne/osx/gmv.md b/pages.ne/osx/gmv.md new file mode 100644 index 0000000000..8e89d7c36e --- /dev/null +++ b/pages.ne/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> यो आदेश `-p linux mv` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux mv` diff --git a/pages.ne/osx/gnice.md b/pages.ne/osx/gnice.md new file mode 100644 index 0000000000..4f3aaa910d --- /dev/null +++ b/pages.ne/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> यो आदेश `-p linux nice` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux nice` diff --git a/pages.ne/osx/gnl.md b/pages.ne/osx/gnl.md new file mode 100644 index 0000000000..e81f2cbfd5 --- /dev/null +++ b/pages.ne/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> यो आदेश `-p linux nl` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux nl` diff --git a/pages.ne/osx/gnohup.md b/pages.ne/osx/gnohup.md new file mode 100644 index 0000000000..4768557a86 --- /dev/null +++ b/pages.ne/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> यो आदेश `-p linux nohup` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux nohup` diff --git a/pages.ne/osx/gnproc.md b/pages.ne/osx/gnproc.md new file mode 100644 index 0000000000..0131299642 --- /dev/null +++ b/pages.ne/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> यो आदेश `-p linux nproc` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux nproc` diff --git a/pages.ne/osx/gnumfmt.md b/pages.ne/osx/gnumfmt.md new file mode 100644 index 0000000000..bd348ef356 --- /dev/null +++ b/pages.ne/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> यो आदेश `-p linux numfmt` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux numfmt` diff --git a/pages.ne/osx/god.md b/pages.ne/osx/god.md new file mode 100644 index 0000000000..b83c11c8c0 --- /dev/null +++ b/pages.ne/osx/god.md @@ -0,0 +1,7 @@ +# god + +> यो आदेश `-p linux od` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux od` diff --git a/pages.ne/osx/gpaste.md b/pages.ne/osx/gpaste.md new file mode 100644 index 0000000000..385b4959a2 --- /dev/null +++ b/pages.ne/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> यो आदेश `-p linux paste` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux paste` diff --git a/pages.ne/osx/gpathchk.md b/pages.ne/osx/gpathchk.md new file mode 100644 index 0000000000..c753f4442e --- /dev/null +++ b/pages.ne/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> यो आदेश `-p linux pathchk` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux pathchk` diff --git a/pages.ne/osx/gping.md b/pages.ne/osx/gping.md new file mode 100644 index 0000000000..4abd6d36b8 --- /dev/null +++ b/pages.ne/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> यो आदेश `-p linux ping` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux ping` diff --git a/pages.ne/osx/gping6.md b/pages.ne/osx/gping6.md new file mode 100644 index 0000000000..9e1bb05110 --- /dev/null +++ b/pages.ne/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> यो आदेश `-p linux ping6` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux ping6` diff --git a/pages.ne/osx/gpinky.md b/pages.ne/osx/gpinky.md new file mode 100644 index 0000000000..71ac6867f3 --- /dev/null +++ b/pages.ne/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> यो आदेश `-p linux pinky` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux pinky` diff --git a/pages.ne/osx/gpr.md b/pages.ne/osx/gpr.md new file mode 100644 index 0000000000..e275c99da5 --- /dev/null +++ b/pages.ne/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> यो आदेश `-p linux pr` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux pr` diff --git a/pages.ne/osx/gprintenv.md b/pages.ne/osx/gprintenv.md new file mode 100644 index 0000000000..0b1b8a9e33 --- /dev/null +++ b/pages.ne/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> यो आदेश `-p linux printenv` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux printenv` diff --git a/pages.ne/osx/gprintf.md b/pages.ne/osx/gprintf.md new file mode 100644 index 0000000000..6ee8788b38 --- /dev/null +++ b/pages.ne/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> यो आदेश `-p linux printf` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux printf` diff --git a/pages.ne/osx/gptx.md b/pages.ne/osx/gptx.md new file mode 100644 index 0000000000..902d6e8722 --- /dev/null +++ b/pages.ne/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> यो आदेश `-p linux ptx` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux ptx` diff --git a/pages.ne/osx/gpwd.md b/pages.ne/osx/gpwd.md new file mode 100644 index 0000000000..ed7357af37 --- /dev/null +++ b/pages.ne/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> यो आदेश `-p linux pwd` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux pwd` diff --git a/pages.ne/osx/grcp.md b/pages.ne/osx/grcp.md new file mode 100644 index 0000000000..1aa87940b2 --- /dev/null +++ b/pages.ne/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> यो आदेश `-p linux rcp` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux rcp` diff --git a/pages.ne/osx/greadlink.md b/pages.ne/osx/greadlink.md new file mode 100644 index 0000000000..01e60f0219 --- /dev/null +++ b/pages.ne/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> यो आदेश `-p linux readlink` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux readlink` diff --git a/pages.ne/osx/grealpath.md b/pages.ne/osx/grealpath.md new file mode 100644 index 0000000000..c195ccb6ee --- /dev/null +++ b/pages.ne/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> यो आदेश `-p linux realpath` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux realpath` diff --git a/pages.ne/osx/grexec.md b/pages.ne/osx/grexec.md new file mode 100644 index 0000000000..76746be0f6 --- /dev/null +++ b/pages.ne/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> यो आदेश `-p linux rexec` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux rexec` diff --git a/pages.ne/osx/grlogin.md b/pages.ne/osx/grlogin.md new file mode 100644 index 0000000000..d9ca64e059 --- /dev/null +++ b/pages.ne/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> यो आदेश `-p linux rlogin` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux rlogin` diff --git a/pages.ne/osx/grm.md b/pages.ne/osx/grm.md new file mode 100644 index 0000000000..cd941b7f61 --- /dev/null +++ b/pages.ne/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> यो आदेश `-p linux rm` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux rm` diff --git a/pages.ne/osx/grmdir.md b/pages.ne/osx/grmdir.md new file mode 100644 index 0000000000..e7cdcadf42 --- /dev/null +++ b/pages.ne/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> यो आदेश `-p linux rmdir` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux rmdir` diff --git a/pages.ne/osx/grsh.md b/pages.ne/osx/grsh.md new file mode 100644 index 0000000000..802ce1699c --- /dev/null +++ b/pages.ne/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> यो आदेश `-p linux rsh` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux rsh` diff --git a/pages.ne/osx/gruncon.md b/pages.ne/osx/gruncon.md new file mode 100644 index 0000000000..f4d915fc5f --- /dev/null +++ b/pages.ne/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> यो आदेश `-p linux runcon` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux runcon` diff --git a/pages.ne/osx/gsed.md b/pages.ne/osx/gsed.md new file mode 100644 index 0000000000..da8f1c2dd7 --- /dev/null +++ b/pages.ne/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> यो आदेश `-p linux sed` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux sed` diff --git a/pages.ne/osx/gseq.md b/pages.ne/osx/gseq.md new file mode 100644 index 0000000000..2c66380714 --- /dev/null +++ b/pages.ne/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> यो आदेश `-p linux seq` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux seq` diff --git a/pages.ne/osx/gsha1sum.md b/pages.ne/osx/gsha1sum.md new file mode 100644 index 0000000000..90f41d7d54 --- /dev/null +++ b/pages.ne/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> यो आदेश `-p linux sha1sum` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux sha1sum` diff --git a/pages.ne/osx/gsha224sum.md b/pages.ne/osx/gsha224sum.md new file mode 100644 index 0000000000..34b52c37ff --- /dev/null +++ b/pages.ne/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> यो आदेश `-p linux sha224sum` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux sha224sum` diff --git a/pages.ne/osx/gsha256sum.md b/pages.ne/osx/gsha256sum.md new file mode 100644 index 0000000000..c21e67aa51 --- /dev/null +++ b/pages.ne/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> यो आदेश `-p linux sha256sum` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux sha256sum` diff --git a/pages.ne/osx/gsha384sum.md b/pages.ne/osx/gsha384sum.md new file mode 100644 index 0000000000..0602da5d37 --- /dev/null +++ b/pages.ne/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> यो आदेश `-p linux sha384sum` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux sha384sum` diff --git a/pages.ne/osx/gsha512sum.md b/pages.ne/osx/gsha512sum.md new file mode 100644 index 0000000000..7da14f3d6e --- /dev/null +++ b/pages.ne/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> यो आदेश `-p linux sha512sum` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux sha512sum` diff --git a/pages.ne/osx/gshred.md b/pages.ne/osx/gshred.md new file mode 100644 index 0000000000..0cf9533df1 --- /dev/null +++ b/pages.ne/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> यो आदेश `-p linux shred` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux shred` diff --git a/pages.ne/osx/gshuf.md b/pages.ne/osx/gshuf.md new file mode 100644 index 0000000000..5187673560 --- /dev/null +++ b/pages.ne/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> यो आदेश `-p linux shuf` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux shuf` diff --git a/pages.ne/osx/gsleep.md b/pages.ne/osx/gsleep.md new file mode 100644 index 0000000000..0148c56cc8 --- /dev/null +++ b/pages.ne/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> यो आदेश `-p linux sleep` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux sleep` diff --git a/pages.ne/osx/gsort.md b/pages.ne/osx/gsort.md new file mode 100644 index 0000000000..56a3f409bd --- /dev/null +++ b/pages.ne/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> यो आदेश `-p linux sort` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux sort` diff --git a/pages.ne/osx/gsplit.md b/pages.ne/osx/gsplit.md new file mode 100644 index 0000000000..45d4c86e04 --- /dev/null +++ b/pages.ne/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> यो आदेश `-p linux split` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux split` diff --git a/pages.ne/osx/gstat.md b/pages.ne/osx/gstat.md new file mode 100644 index 0000000000..03ad10d4d7 --- /dev/null +++ b/pages.ne/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> यो आदेश `-p linux stat` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux stat` diff --git a/pages.ne/osx/gstdbuf.md b/pages.ne/osx/gstdbuf.md new file mode 100644 index 0000000000..cf2426e516 --- /dev/null +++ b/pages.ne/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> यो आदेश `-p linux stdbuf` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux stdbuf` diff --git a/pages.ne/osx/gstty.md b/pages.ne/osx/gstty.md new file mode 100644 index 0000000000..66c1bb4aa1 --- /dev/null +++ b/pages.ne/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> यो आदेश `-p linux stty` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux stty` diff --git a/pages.ne/osx/gsum.md b/pages.ne/osx/gsum.md new file mode 100644 index 0000000000..6a4df89794 --- /dev/null +++ b/pages.ne/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> यो आदेश `-p linux sum` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux sum` diff --git a/pages.ne/osx/gsync.md b/pages.ne/osx/gsync.md new file mode 100644 index 0000000000..e76b16f077 --- /dev/null +++ b/pages.ne/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> यो आदेश `-p linux sync` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux sync` diff --git a/pages.ne/osx/gtac.md b/pages.ne/osx/gtac.md new file mode 100644 index 0000000000..f93869a000 --- /dev/null +++ b/pages.ne/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> यो आदेश `-p linux tac` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux tac` diff --git a/pages.ne/osx/gtail.md b/pages.ne/osx/gtail.md new file mode 100644 index 0000000000..07c7bffe2f --- /dev/null +++ b/pages.ne/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> यो आदेश `-p linux tail` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux tail` diff --git a/pages.ne/osx/gtalk.md b/pages.ne/osx/gtalk.md new file mode 100644 index 0000000000..bc4a58958f --- /dev/null +++ b/pages.ne/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> यो आदेश `-p linux talk` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux talk` diff --git a/pages.ne/osx/gtar.md b/pages.ne/osx/gtar.md new file mode 100644 index 0000000000..ff07154561 --- /dev/null +++ b/pages.ne/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> यो आदेश `-p linux tar` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux tar` diff --git a/pages.ne/osx/gtee.md b/pages.ne/osx/gtee.md new file mode 100644 index 0000000000..9fc50320ec --- /dev/null +++ b/pages.ne/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> यो आदेश `-p linux tee` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux tee` diff --git a/pages.ne/osx/gtelnet.md b/pages.ne/osx/gtelnet.md new file mode 100644 index 0000000000..7d8b254268 --- /dev/null +++ b/pages.ne/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> यो आदेश `-p linux telnet` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux telnet` diff --git a/pages.ne/osx/gtest.md b/pages.ne/osx/gtest.md new file mode 100644 index 0000000000..c6e4518c56 --- /dev/null +++ b/pages.ne/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> यो आदेश `-p linux test` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux test` diff --git a/pages.ne/osx/gtftp.md b/pages.ne/osx/gtftp.md new file mode 100644 index 0000000000..292434793a --- /dev/null +++ b/pages.ne/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> यो आदेश `-p linux tftp` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux tftp` diff --git a/pages.ne/osx/gtime.md b/pages.ne/osx/gtime.md new file mode 100644 index 0000000000..1a00b86ce9 --- /dev/null +++ b/pages.ne/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> यो आदेश `-p linux time` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux time` diff --git a/pages.ne/osx/gtimeout.md b/pages.ne/osx/gtimeout.md new file mode 100644 index 0000000000..89a66f2e3f --- /dev/null +++ b/pages.ne/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> यो आदेश `-p linux timeout` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux timeout` diff --git a/pages.ne/osx/gtouch.md b/pages.ne/osx/gtouch.md new file mode 100644 index 0000000000..40e23a473b --- /dev/null +++ b/pages.ne/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> यो आदेश `-p linux touch` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux touch` diff --git a/pages.ne/osx/gtr.md b/pages.ne/osx/gtr.md new file mode 100644 index 0000000000..182b3f2447 --- /dev/null +++ b/pages.ne/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> यो आदेश `-p linux tr` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux tr` diff --git a/pages.ne/osx/gtraceroute.md b/pages.ne/osx/gtraceroute.md new file mode 100644 index 0000000000..f64af0d995 --- /dev/null +++ b/pages.ne/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> यो आदेश `-p linux traceroute` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux traceroute` diff --git a/pages.ne/osx/gtrue.md b/pages.ne/osx/gtrue.md new file mode 100644 index 0000000000..262fa5845b --- /dev/null +++ b/pages.ne/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> यो आदेश `-p linux true` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux true` diff --git a/pages.ne/osx/gtruncate.md b/pages.ne/osx/gtruncate.md new file mode 100644 index 0000000000..341c49e9d1 --- /dev/null +++ b/pages.ne/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> यो आदेश `-p linux truncate` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux truncate` diff --git a/pages.ne/osx/gtsort.md b/pages.ne/osx/gtsort.md new file mode 100644 index 0000000000..957ee9a1ed --- /dev/null +++ b/pages.ne/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> यो आदेश `-p linux tsort` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux tsort` diff --git a/pages.ne/osx/gtty.md b/pages.ne/osx/gtty.md new file mode 100644 index 0000000000..b2765b92d2 --- /dev/null +++ b/pages.ne/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> यो आदेश `-p linux tty` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux tty` diff --git a/pages.ne/osx/guname.md b/pages.ne/osx/guname.md new file mode 100644 index 0000000000..ce71be5f04 --- /dev/null +++ b/pages.ne/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> यो आदेश `-p linux uname` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux uname` diff --git a/pages.ne/osx/gunexpand.md b/pages.ne/osx/gunexpand.md new file mode 100644 index 0000000000..dedf9d2a80 --- /dev/null +++ b/pages.ne/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> यो आदेश `-p linux unexpand` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux unexpand` diff --git a/pages.ne/osx/guniq.md b/pages.ne/osx/guniq.md new file mode 100644 index 0000000000..9d02f793c0 --- /dev/null +++ b/pages.ne/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> यो आदेश `-p linux uniq` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux uniq` diff --git a/pages.ne/osx/gunits.md b/pages.ne/osx/gunits.md new file mode 100644 index 0000000000..a890a44cce --- /dev/null +++ b/pages.ne/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> यो आदेश `-p linux units` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux units` diff --git a/pages.ne/osx/gunlink.md b/pages.ne/osx/gunlink.md new file mode 100644 index 0000000000..7c4997fc07 --- /dev/null +++ b/pages.ne/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> यो आदेश `-p linux unlink` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux unlink` diff --git a/pages.ne/osx/gupdatedb.md b/pages.ne/osx/gupdatedb.md new file mode 100644 index 0000000000..7318dba972 --- /dev/null +++ b/pages.ne/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> यो आदेश `-p linux updatedb` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux updatedb` diff --git a/pages.ne/osx/guptime.md b/pages.ne/osx/guptime.md new file mode 100644 index 0000000000..de919d2ebf --- /dev/null +++ b/pages.ne/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> यो आदेश `-p linux uptime` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux uptime` diff --git a/pages.ne/osx/gusers.md b/pages.ne/osx/gusers.md new file mode 100644 index 0000000000..c51833c23e --- /dev/null +++ b/pages.ne/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> यो आदेश `-p linux users` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux users` diff --git a/pages.ne/osx/gvdir.md b/pages.ne/osx/gvdir.md new file mode 100644 index 0000000000..f0bb5731f1 --- /dev/null +++ b/pages.ne/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> यो आदेश `-p linux vdir` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux vdir` diff --git a/pages.ne/osx/gwc.md b/pages.ne/osx/gwc.md new file mode 100644 index 0000000000..77bf265370 --- /dev/null +++ b/pages.ne/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> यो आदेश `-p linux wc` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux wc` diff --git a/pages.ne/osx/gwhich.md b/pages.ne/osx/gwhich.md new file mode 100644 index 0000000000..af123d0b62 --- /dev/null +++ b/pages.ne/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> यो आदेश `-p linux which` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux which` diff --git a/pages.ne/osx/gwho.md b/pages.ne/osx/gwho.md new file mode 100644 index 0000000000..6c5355b8f3 --- /dev/null +++ b/pages.ne/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> यो आदेश `-p linux who` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux who` diff --git a/pages.ne/osx/gwhoami.md b/pages.ne/osx/gwhoami.md new file mode 100644 index 0000000000..ae1c0d2bf5 --- /dev/null +++ b/pages.ne/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> यो आदेश `-p linux whoami` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux whoami` diff --git a/pages.ne/osx/gwhois.md b/pages.ne/osx/gwhois.md new file mode 100644 index 0000000000..d5b453dc32 --- /dev/null +++ b/pages.ne/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> यो आदेश `-p linux whois` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux whois` diff --git a/pages.ne/osx/gxargs.md b/pages.ne/osx/gxargs.md new file mode 100644 index 0000000000..610460b1db --- /dev/null +++ b/pages.ne/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> यो आदेश `-p linux xargs` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux xargs` diff --git a/pages.ne/osx/gyes.md b/pages.ne/osx/gyes.md new file mode 100644 index 0000000000..6495ffe417 --- /dev/null +++ b/pages.ne/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> यो आदेश `-p linux yes` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr -p linux yes` diff --git a/pages.ne/osx/launchd.md b/pages.ne/osx/launchd.md new file mode 100644 index 0000000000..d1628db171 --- /dev/null +++ b/pages.ne/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> यो आदेश `launchctl` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr launchctl` diff --git a/pages.ne/windows/chrome.md b/pages.ne/windows/chrome.md new file mode 100644 index 0000000000..8301c69b40 --- /dev/null +++ b/pages.ne/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> यो आदेश `chromium` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr chromium` diff --git a/pages.ne/windows/cinst.md b/pages.ne/windows/cinst.md new file mode 100644 index 0000000000..c4b10223d3 --- /dev/null +++ b/pages.ne/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> यो आदेश `choco install` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr choco install` diff --git a/pages.ne/windows/clist.md b/pages.ne/windows/clist.md new file mode 100644 index 0000000000..cdb568eeae --- /dev/null +++ b/pages.ne/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> यो आदेश `choco list` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr choco list` diff --git a/pages.ne/windows/cpush.md b/pages.ne/windows/cpush.md new file mode 100644 index 0000000000..fe940818bf --- /dev/null +++ b/pages.ne/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> यो आदेश `choco-push` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr choco-push` diff --git a/pages.ne/windows/cuninst.md b/pages.ne/windows/cuninst.md new file mode 100644 index 0000000000..0fd64734a4 --- /dev/null +++ b/pages.ne/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> यो आदेश `choco uninstall` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr choco uninstall` diff --git a/pages.ne/windows/curl.md b/pages.ne/windows/curl.md new file mode 100644 index 0000000000..6a8e0bf631 --- /dev/null +++ b/pages.ne/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> यो आदेश `curl -p common` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr curl -p common` diff --git a/pages.ne/windows/iwr.md b/pages.ne/windows/iwr.md new file mode 100644 index 0000000000..e88e91eea3 --- /dev/null +++ b/pages.ne/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> यो आदेश `invoke-webrequest` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr invoke-webrequest` diff --git a/pages.ne/windows/pwsh-where.md b/pages.ne/windows/pwsh-where.md new file mode 100644 index 0000000000..d04a64f36f --- /dev/null +++ b/pages.ne/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> यो आदेश `Where-Object` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr Where-Object` diff --git a/pages.ne/windows/rd.md b/pages.ne/windows/rd.md new file mode 100644 index 0000000000..ddae16eaff --- /dev/null +++ b/pages.ne/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> यो आदेश `rmdir` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr rmdir` diff --git a/pages.ne/windows/sls.md b/pages.ne/windows/sls.md new file mode 100644 index 0000000000..b03d2e8ea3 --- /dev/null +++ b/pages.ne/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> यो आदेश `where-object` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr where-object` diff --git a/pages.ne/windows/wget.md b/pages.ne/windows/wget.md new file mode 100644 index 0000000000..667338c306 --- /dev/null +++ b/pages.ne/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> यो आदेश `wget -p common` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr wget -p common` diff --git a/pages.nl/android/am.md b/pages.nl/android/am.md new file mode 100644 index 0000000000..c2c454284e --- /dev/null +++ b/pages.nl/android/am.md @@ -0,0 +1,20 @@ +# am + +> Android-activiteitenmanager. +> Meer informatie: . + +- Start een specifieke activiteit: + +`am start -n {{com.android.settings/.Settings}}` + +- Start een activiteit en geef er gegevens aan door: + +`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}` + +- Start een activiteit die overeenkomt met een specifieke actie en categorie: + +`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}` + +- Converteer een intentie naar een URI: + +`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}` diff --git a/pages.nl/common/2to3.md b/pages.nl/common/2to3.md new file mode 100644 index 0000000000..5d48ef451a --- /dev/null +++ b/pages.nl/common/2to3.md @@ -0,0 +1,32 @@ +# 2to3 + +> Geautomatiseerde conversie van Python 2 naar 3-code. +> Meer informatie: . + +- Geef de wijzigingen weer die zouden worden uitgevoerd zonder ze uit te voeren (simulatie): + +`2to3 {{pad/naar/bestand.py}}` + +- Converteer een Python 2-bestand naar Python 3: + +`2to3 --write {{pad/naar/bestand.py}}` + +- Converteer specifieke Python 2-taalfuncties naar Python 3: + +`2to3 --write {{pad/naar/bestand.py}} --fix={{raw_input}} --fix={{print}}` + +- Converteer alle Python 2-taalfuncties behalve de gespecificeerde naar Python 3: + +`2to3 --write {{pad/naar/bestand.py}} --nofix={{has_key}} --nofix={{isinstance}}` + +- Geef een lijst weer met alle beschikbare taalfuncties die kunnen worden geconverteerd van Python 2 naar Python 3: + +`2to3 --list-fixes` + +- Converteer alle Python 2-bestanden in een map naar Python 3: + +`2to3 --output-dir={{pad/naar/python3_map}} --write-unchanged-files --nobackups {{pad/naar/python2_map}}` + +- Voer 2to3 uit met meerdere threads: + +`2to3 --processes={{4}} --output-dir={{pad/naar/python3_map}} --write --nobackups --no-diff {{pad/naar/python2_map}}` diff --git a/pages.nl/common/7z.md b/pages.nl/common/7z.md index 0e4a10fbc1..c24b64d573 100644 --- a/pages.nl/common/7z.md +++ b/pages.nl/common/7z.md @@ -1,7 +1,7 @@ # 7z > Een bestandsarchiveerder met een hoge compressieratio. -> Meer informatie: . +> Meer informatie: . - Archiveer een bestand of map: @@ -19,7 +19,7 @@ `7z x {{archief.7z}} -o{{pad/naar/uitvoer}}` -- Pak een archief naar stdout uit: +- Pak een archief naar `stdout` uit: `7z x {{archief.7z}} -so` diff --git a/pages.nl/common/7za.md b/pages.nl/common/7za.md new file mode 100644 index 0000000000..a16cce25a0 --- /dev/null +++ b/pages.nl/common/7za.md @@ -0,0 +1,37 @@ +# 7za + +> Bestandsarchiver met een hoge compressieverhouding. +> Vergelijkbaar met `7z`, behalve dat het minder bestandstypes ondersteunt, maar platformonafhankelijk is. +> Meer informatie: . + +- Archiveer een bestand of map: + +`7za a {{pad/naar/archief.7z}} {{pad/naar/bestand_of_map}}` + +- Versleutel een bestaand archief (inclusief bestandsnamen): + +`7za a {{pad/naar/versleuteld.7z}} -p{{wachtwoord}} -mhe={{on}} {{pad/naar/archief.7z}}` + +- Pak een archief uit met behoud van de originele map structuur: + +`7za x {{pad/naar/archief.7z}}` + +- Pak een archief uit naar een specifieke map: + +`7za x {{pad/naar/archief.7z}} -o{{pad/naar/uitkomst}}` + +- Pak een archief uit naar `stdout`: + +`7za x {{pad/naar/archief.7z}} -so` + +- Archiveren met een specifiek archieftype: + +`7za a -t{{7z|bzip2|gzip|lzip|tar|...}} {{pad/naar/archief.7z}} {{pad/naar/bestand_of_map}}` + +- Lijst de inhoud van een archief op: + +`7za l {{pad/naar/archief.7z}}` + +- Maak een lijst van beschikbare archieftypen: + +`7za i` diff --git a/pages.nl/common/7zr.md b/pages.nl/common/7zr.md new file mode 100644 index 0000000000..98b15d16a8 --- /dev/null +++ b/pages.nl/common/7zr.md @@ -0,0 +1,33 @@ +# 7zr + +> Bestandsarchiver met een hoge compressieverhouding. +> Vergelijkbaar met `7z`, behalve dat het alleen `.7z`-bestanden ondersteunt. +> Meer informatie: . + +- Archiveer een bestand of map: + +`7zr a {{pad/naar/archief.7z}} {{pad/naar/bestand_of_map}}` + +- Versleutel een bestaand archief (inclusief bestandsnamen): + +`7zr a {{pad/naar/versleuteld.7z}} -p{{wachtwoord}} -mhe={{on}} {{pad/naar/archief.7z}}` + +- Pak een archief uit met behoud van de originele map structuur: + +`7zr x {{pad/naar/archief.7z}}` + +- Pak een archief uit naar een specifieke map: + +`7zr x {{pad/naar/archief.7z}} -o{{pad/naar/uitkomst}}` + +- Pak een archief uit naar `stdout`: + +`7zr x {{pad/naar/archief.7z}} -so` + +- Lijst de inhoud van een archief op: + +`7zr l {{pad/naar/archief.7z}}` + +- Maak een lijst van beschikbare archieftypen: + +`7zr i` diff --git a/pages.nl/common/[.md b/pages.nl/common/[.md index 15248b5522..7898ab3c5b 100644 --- a/pages.nl/common/[.md +++ b/pages.nl/common/[.md @@ -1,25 +1,33 @@ # [ -> Evalueren voorwaarde. +> Controleer bestandstypes en vergelijk waardes. > Geeft een 0 terug als de voorwaarde waar (true) is, als het niet waar (false) is geeft het een 1 terug. > Meer informatie: . - Test of een gegeven variabele gelijk is aan een gegeven tekst: -`[ "{{$VARIABELE}}" == "{{/bin/zsh}}" ]` +`[ "${{variable}}" {{==|!=}} "{{string}}" ]` -- Test of een gegeven variabele leeg is: +- Test of een gegeven variabele gelijk/niet gelijk/groter dan/kleiner dan/groter dan of gelijk/kleiner dan of gelijk aan het gegeven nummer: -`[ -z "{{$GIT_TAK}}" ]` +`[ "${{variable}}" -{{eq|ne|gt|lt|ge|le}} {{integer}} ]` + +- Test of een gegeven variabele een niet-lege waarde heeft: + +`[ -n "${{variable}}" ]` + +- Test of een gegeven variable een lege waarde heeft: + +`[ -z "${{variable}}" ]` - Test of een bestand bestaat: `[ -f "{{pad/naar/bestand}}" ]` -- Test of een directory niet bestaat: +- Test of een map bestaat: -`[ ! -d "{{pad/naar/directory}}" ]` +`[ -d "{{pad/naar/map}}" ]` -- If-else instructie: +- Test of een bestand of een map bestaat: -`[ {{conditie}} ] && {{echo "waar"}} || {{echo "niet waar"}}` +`[ -e {{pad/naar/bestand_of_map}} ]` diff --git a/pages.nl/common/[[.md b/pages.nl/common/[[.md new file mode 100644 index 0000000000..2350f8264b --- /dev/null +++ b/pages.nl/common/[[.md @@ -0,0 +1,37 @@ +# [[ + +> Controleer bestandstypen en vergelijk waarden. +> Retourneert een status van 0 als de voorwaarde resulteert in waar, 1 als deze resulteert in onwaar. +> Meer informatie: . + +- Test of een gegeven variabele gelijk/niet gelijk is aan de opgegeven string: + +`[[ ${{variabele}} {{==|!=}} "{{string}}" ]]` + +- Test of een gegeven string voldoet aan de opgegeven glob/regex: + +`[[ ${{variabele}} {{==|=~}} {{patroon}} ]]` + +- Test of een bepaalde variabele gelijk/niet gelijk/groter dan/kleiner dan/groter dan of gelijk/kleiner dan of gelijk aan het opgegeven getal is: + +`[[ ${{variabele}} -{{eq|ne|gt|lt|ge|le}} {{geheel_getal}} ]]` + +- Test of de opgegeven variabele een niet-lege waarde heeft: + +`[[ -n ${{variabele}} ]]` + +- Test of de opgegeven variabele een lege waarde heeft: + +`[[ -z ${{variabele}} ]]` + +- Test of het opgegeven bestand bestaat: + +`[[ -f {{pad/naar/bestand}} ]]` + +- Test of de opgegeven map bestaat: + +`[[ -d {{pad/naar/map}} ]]` + +- Test of het opgegeven bestand of de opgegeven map bestaat: + +`[[ -e {{pad/naar/bestand_of_map}} ]]` diff --git a/pages.nl/common/aapt.md b/pages.nl/common/aapt.md new file mode 100644 index 0000000000..265b1dab8a --- /dev/null +++ b/pages.nl/common/aapt.md @@ -0,0 +1,17 @@ +# aapt + +> Android Asset Packaging-tool. +> Compileer en verpak de bronnen van een Android-app. +> Meer Informatie: . + +- Maak een lijst van bestanden in een APK-archief: + +`aapt list {{pad/naar/app.apk}}` + +- Geef de metadata van een app weer (versie, machtigingen, enz.): + +`aapt dump badging {{pad/naar/app.apk}}` + +- Maak een nieuw APK-archief met bestanden uit de opgegeven map: + +`aapt package -F {{pad/naar/app.apk}} {{pad/naar/map}}` diff --git a/pages.nl/common/ab.md b/pages.nl/common/ab.md new file mode 100644 index 0000000000..75c04aef10 --- /dev/null +++ b/pages.nl/common/ab.md @@ -0,0 +1,24 @@ +# ab + +> Apache HTTP-serverbenchmarktool. +> Meer Informatie: . + +- Voer 100 HTTP GET-verzoeken uit naar een bepaalde URL: + +`ab -n {{100}} {{url}}` + +- Voer 100 HTTP GET-verzoeken uit, in gelijktijdige batches van 10, naar een URL: + +`ab -n {{100}} -c {{10}} {{url}}` + +- Voer 100 HTTP POST-verzoeken uit naar een URL, met behulp van een JSON-payload uit een bestand: + +`ab -n {{100}} -T {{application/json}} -p {{pad/naar/bestand.json}} {{url}}` + +- Gebruik HTTP Keep Alive, d.w.z. voer meerdere verzoeken uit binnen één HTTP-sessie: + +`ab -k {{url}}` + +- Stel het maximale aantal seconden in dat je wil besteden aan benchmarking: + +`ab -t {{60}} {{url}}` diff --git a/pages.nl/common/abduco.md b/pages.nl/common/abduco.md new file mode 100644 index 0000000000..64d432d751 --- /dev/null +++ b/pages.nl/common/abduco.md @@ -0,0 +1,24 @@ +# abduco + +> Terminal sessiemanager. +> Meer Informatie: . + +- Lijst van sessies: + +`abduco` + +- Koppel aan een sessie en maak deze aan als deze nog niet bestaat: + +`abduco -A {{naam}} {{bash}}` + +- Maak verbinding met een sessie met `dvtm` en maak deze aan als deze nog niet bestaat: + +`abduco -A {{naam}}` + +- Loskoppelen van een sessie: + +`Ctrl + \` + +- Voeg toe aan een sessie in alleen-lezen modus: + +`abduco -Ar {{naam}}` diff --git a/pages.nl/common/ac.md b/pages.nl/common/ac.md new file mode 100644 index 0000000000..a9fd0c162f --- /dev/null +++ b/pages.nl/common/ac.md @@ -0,0 +1,20 @@ +# ac + +> Druk statistieken af over hoe lang gebruikers verbonden zijn geweest. +> Meer informatie: . + +- Druk af hoe lang de huidige gebruiker verbonden is in uren: + +`ac` + +- Druk af hoe lang gebruikers verbonden zijn in uren: + +`ac -p` + +- Druk af hoe lang een bepaalde gebruiker verbonden is in uren: + +`ac -p {{gebruikersnaam}}` + +- Print hoe lang een bepaalde gebruiker verbonden is in uren per dag (met totaal): + +`ac -dp {{gebruikersnaam}}` diff --git a/pages.nl/common/ack.md b/pages.nl/common/ack.md new file mode 100644 index 0000000000..cd276bf5e2 --- /dev/null +++ b/pages.nl/common/ack.md @@ -0,0 +1,37 @@ +# ack + +> Een zoektool zoals grep, geoptimaliseerd voor ontwikkelaars. +> Zie ook: `rg`, dat is veel sneller. +> Meer informatie: . + +- Zoek recursief naar bestanden met een tekenreeks of reguliere expressie in de huidige map: + +`ack "{{zoekpatroon}}"` + +- Zoek naar een niet-hoofdlettergevoelig patroon: + +`ack --ignore-case "{{zoekpatroon}}"` + +- Zoek naar lijnen die overeenkomen met een patroon en druk alleen de overeenkomende tekst af en niet de rest van de lijn: + +`ack -o "{{zoekpatroon}}"` + +- Beperk het zoeken tot bestanden van een specifiek type: + +`ack --type={{ruby}} "{{zoekpatroon}}"` + +- Zoek niet in bestanden van een specifiek type: + +`ack --type=no{{ruby}} "{{zoekpatroon}}"` + +- Tel het totaal aantal gevonden matches: + +`ack --count --no-filename "{{zoekpatroon}}"` + +- Druk alleen voor elk bestand de bestandsnamen en het aantal overeenkomsten af: + +`ack --count --files-with-matches "{{zoekpatroon}}"` + +- Maak een lijst van alle waarden die kunnen worden gebruikt met `--type`: + +`ack --help-types` diff --git a/pages.nl/common/acme.sh-dns.md b/pages.nl/common/acme.sh-dns.md new file mode 100644 index 0000000000..31b354b396 --- /dev/null +++ b/pages.nl/common/acme.sh-dns.md @@ -0,0 +1,24 @@ +# acme.sh --dns + +> Gebruik een DNS-01 challenge om een TLS-certificaat uit te geven. +> Meer informatie: . + +- Geef een certificaat uit met behulp van een automatische DNS API-modus: + +`acme.sh --issue --dns {{gnd_gd}} --domain {{voorbeeld.com}}` + +- Geef een wildcardcertificaat uit (aangegeven met een asterisk) met behulp van een automatische DNS API-modus: + +`acme.sh --issue --dns {{dns_namesilo}} --domain {{voorbeeld.com}} --domain {{*.voorbeeld.com}}` + +- Geef een certificaat uit met behulp van een DNS-aliasmodus: + +`acme.sh --issue --dns {{dns_cf}} --domain {{voorbeeld.com}} --challenge-alias {{alias-voor-voorbeeld-validatie.com}}` + +- Geef een certificaat uit terwijl u automatische Cloudflare / Google DNS-polling uitschakelt nadat het DNS-record is toegevoegd door een aangepaste wachttijd in seconden op te geven: + +`acme.sh --issue --dns {{dns_namecheap}} --domain {{voorbeeld.com}} --dnssleep {{300}}` + +- Geef een certificaat uit met behulp van een handmatige DNS-modus: + +`acme.sh --issue --dns --domain {{voorbeeld.com}} --yes-I-know-dns-manual-mode-enough-go-ahead-please` diff --git a/pages.nl/common/acme.sh.md b/pages.nl/common/acme.sh.md new file mode 100644 index 0000000000..53a8e6a831 --- /dev/null +++ b/pages.nl/common/acme.sh.md @@ -0,0 +1,33 @@ +# acme.sh + +> Shell-script dat het ACME-clientprotocol implementeert, een alternatief voor certbot. +> Zie ook `acme.sh dns`. +> Meer informatie: . + +- Geef een certificaat uit met behulp van de webroot-modus: + +`acme.sh --issue --domain {{voorbeeld.com}} --webroot {{/pad/naar/webroot}}` + +- Geef een certificaat uit voor meerdere domeinen in de zelfstandige modus met poort 80: + +`acme.sh --issue --standalone --domain {{voorbeeld.com}} --domain {{www.voorbeeld.com}}` + +- Geef een certificaat uit met behulp van de zelfstandige TLS-modus met behulp van poort 443: + +`acme.sh --issue --alpn --domain {{voorbeeld.com}}` + +- Geef een certificaat uit met een werkende Nginx-configuratie: + +`acme.sh --issue --nginx --domain {{voorbeeld.com}}` + +- Geef een certificaat uit met een werkende Apache-configuratie: + +`acme.sh --issue --apache --domain {{voorbeeld.com}}` + +- Geef een wildcardcertificaat (\*) uit met behulp van een automatische DNS API-modus: + +`acme.sh --issue --dns {{dns_cf}} --domain {{*.voorbeeld.com}}` + +- Installeer certificaatbestanden op de opgegeven locaties (handig voor automatische certificaatvernieuwing): + +`acme.sh --install-cert -d {{voorbeeld.com}} --key-file {{/pad/naar/voorbeeld.com.key}} --fullchain-file {{/pad/naar/voorbeeld.com.cer}} --reloadcmd {{"systemctl force-reload nginx"}}` diff --git a/pages.nl/common/act.md b/pages.nl/common/act.md new file mode 100644 index 0000000000..45afe50a94 --- /dev/null +++ b/pages.nl/common/act.md @@ -0,0 +1,32 @@ +# act + +> Voer GitHub-acties lokaal uit met behulp van Docker. +> Meer informatie: . + +- Maak een lijst van de beschikbare acties: + +`act -l` + +- Voer de standaard evenement uit: + +`act` + +- Voer een specifiek evenement uit: + +`act {{evenement_type}}` + +- Voer een specifieke actie uit: + +`act -a {{actie_id}}` + +- Voer de acties niet daadwerkelijk uit (d.w.z. een proefrit): + +`act -n` + +- Toon uitgebreide logboeken: + +`act -v` + +- Voer een specifieke workflow uit: + +`act push -W {{pad/naar/workflow}}` diff --git a/pages.nl/common/acyclic.md b/pages.nl/common/acyclic.md new file mode 100644 index 0000000000..5ff3c242ef --- /dev/null +++ b/pages.nl/common/acyclic.md @@ -0,0 +1,17 @@ +# acyclic + +> Maak een gerichte grafiek acyclisch door enkele randen om te keren. +> Graphviz filters: `acyclic`, `bcomps`, `comps`, `edgepaint`, `gvcolor`, `gvpack`, `mingle`, `nop`, `sccmap`, `tred`, & `unflatten`. +> Meer informatie: . + +- Maak een gerichte grafiek acyclisch door enkele randen om te keren: + +`acyclic {{pad/naar/invoer.gv}} > {{pad/naar/uitvoer.gv}}` + +- Afdrukken als een grafiek acyclisch is, een cyclus heeft of ongericht is en geen uitvoergrafiek produceert: + +`acyclic -v -n {{pad/naar/invoer.gv}}` + +- Hulp weergeven voor `acyclic`: + +`acyclic -?` diff --git a/pages.nl/common/adb-install.md b/pages.nl/common/adb-install.md new file mode 100644 index 0000000000..20cb1b20ef --- /dev/null +++ b/pages.nl/common/adb-install.md @@ -0,0 +1,28 @@ +# adb install + +> Android Debug Bridge-installatie: push pakketten naar een Android-emulatorinstantie of aangesloten Android-apparaten. +> Meer informatie: . + +- Push een Android-applicatie naar een emulator/apparaat: + +`adb install {{pad/naar/bestand.apk}}` + +- Een Android-applicatie naar een specifieke emulator/apparaat pushen (heeft voorrang op `$ANDROID_SERIAL`): + +`adb -s {{serienummer}} install {{pad/naar/bestand.apk}}` + +- Installeer een bestaande app opnieuw, waarbij de gegevens behouden blijven: + +`adb install -r {{pad/naar/bestand.apk}}` + +- Een Android-applicatie pushen die downgrade van versiecode mogelijk maakt (alleen foutopsporingspakketten): + +`adb install -d {{pad/naar/bestand.apk}}` + +- Verleen alle machtigingen die worden vermeld in het app-manifest: + +`adb install -g {{pad/naar/bestand.apk}}` + +- Werk snel een geïnstalleerd pakket bij door alleen de delen van de APK bij te werken die zijn gewijzigd: + +`adb install --fastdeploy {{pad/naar/bestand.apk}}` diff --git a/pages.nl/common/adb-logcat.md b/pages.nl/common/adb-logcat.md new file mode 100644 index 0000000000..1ee20432dd --- /dev/null +++ b/pages.nl/common/adb-logcat.md @@ -0,0 +1,36 @@ +# adb logcat + +> Dump een logboek met systeemberichten. +> Meer informatie: . + +- Geef systeemlogboeken weer: + +`adb logcat` + +- Geef regels weer die overeenkomen met een reguliere expressie: + +`adb logcat -e {{reguliere_expressie}}` + +- Toon logs voor een tag in een specifieke modus ([V]erbose, [D]ebug, [I]nfo, [W]arning, [E]rror, [F]atal, [S]ilent), andere tags filteren: + +`adb logcat {{label}}:{{modus}} *:S` + +- Geef logs weer voor React Native-applicaties in [V]erbose mode [S]ilencing andere tags: + +`adb logcat ReactNative:V ReactNativeJS:V *:S` + +- Toon logboeken voor alle tags met prioriteitsniveau [W]arning en hoger: + +`adb logcat *:W` + +- Geef logboeken weer voor een specifiek proces: + +`adb logcat --pid={{pid}}` + +- Logboeken weergeven voor het proces van een specifiek pakket: + +`adb logcat --pid=$(adb shell pidof -s {{pakket}})` + +- Kleur de log in (gebruik meestal met filters): + +`adb logcat -v color` diff --git a/pages.nl/common/adb-reverse.md b/pages.nl/common/adb-reverse.md new file mode 100644 index 0000000000..71f2e0e387 --- /dev/null +++ b/pages.nl/common/adb-reverse.md @@ -0,0 +1,20 @@ +# adb reverse + +> Android Debug Bridge Reverse: omgekeerde socketverbindingen van een Android-emulatorinstantie of verbonden Android-apparaten. +> Meer informatie: . + +- Maak een lijst van alle omgekeerde socketverbindingen van emulators en apparaten: + +`adb reverse --list` + +- Keer een TCP-poort om van een emulator of apparaat naar localhost: + +`adb reverse tcp:{{externe_poort}} tcp:{{lokale_poort}}` + +- Verwijder omgekeerde socketverbindingen van een emulator of apparaat: + +`adb reverse --remove tcp:{{externe_poort}}` + +- Verwijder alle omgekeerde socketverbindingen van alle emulators en apparaten: + +`adb reverse --remove-all` diff --git a/pages.nl/common/adb-shell.md b/pages.nl/common/adb-shell.md new file mode 100644 index 0000000000..600b249833 --- /dev/null +++ b/pages.nl/common/adb-shell.md @@ -0,0 +1,36 @@ +# adb shell + +> Android Debug Bridge Shell: Voer externe shell-opdrachten uit op een Android-emulatorinstantie of aangesloten Android-apparaten. +> Meer informatie: . + +- Start een externe interactieve shell op de emulator of het apparaat: + +`adb shell` + +- Haal alle eigenschappen op van de emulator of het apparaat: + +`adb shell getprop` + +- Zet alle runtime-machtigingen terug naar hun standaard: + +`adb shell pm reset-permissions` + +- Een gevaarlijke machtiging voor een toepassing intrekken: + +`adb shell pm revoke {{pakket}} {{toestemming}}` + +- Activeer een sleutelgebeurtenis: + +`adb shell input keyevent {{sleutelcode}}` + +- Wis de gegevens van een applicatie op een emulator of apparaat: + +`adb shell pm clear {{pakket}}` + +- Start een activiteit op emulator of apparaat: + +`adb shell am start -n {{pakket}}/{{activiteit}}` + +- Start de thuisactiviteit op een emulator of apparaat: + +`adb shell am start -W -c android.intent.category.HOME -a android.intent.action.MAIN` diff --git a/pages.nl/common/adguardhome.md b/pages.nl/common/adguardhome.md new file mode 100644 index 0000000000..c0f9a295ca --- /dev/null +++ b/pages.nl/common/adguardhome.md @@ -0,0 +1,32 @@ +# AdGuardHome + +> Netwerkbrede software voor het blokkeren van advertenties en tracking. +> Meer informatie: . + +- Voer AdGuard Home uit: + +`AdGuardHome` + +- Voer AdGuard Home uit met een specifieke configuratie: + +`AdGuardHome --config {{pad/naar/AdGuardHome.yaml}}` + +- Stel de werkmap in waarin gegevens moeten worden opgeslagen: + +`AdGuardHome --work-dir {{pad/naar/map}}` + +- Installeer of verwijder AdGuard Home als een service: + +`AdGuardHome --service {{install|uninstall}}` + +- Start de AdGuard Home-service: + +`AdGuardHome --service start` + +- Laad de configuratie voor de AdGuard Home-service opnieuw: + +`AdGuardHome --service reload` + +- Stop of herstart de AdGuard Home-service: + +`AdGuardHome --service {{stop|restart}}` diff --git a/pages.nl/common/adscript.md b/pages.nl/common/adscript.md new file mode 100644 index 0000000000..218f3a9c93 --- /dev/null +++ b/pages.nl/common/adscript.md @@ -0,0 +1,20 @@ +# adscript + +> Compiler voor Adscript-bestanden. +> Meer informatie: . + +- Compileer een bestand naar een objectbestand: + +`adscript --output {{pad/naar/bestand.o}} {{pad/naar/input_file.adscript}}` + +- Compileer en koppel een bestand aan een zelfstandig uitvoerbaar bestand: + +`adscript --executable --output {{pad/naar/bestand}} {{pad/naar/invoer_bestand.adscript}}` + +- Compileer een bestand naar LLVM IR in plaats van native machinecode: + +`adscript --llvm-ir --output {{pad/naar/bestand.ll}} {{pad/naar/invoer_bestand.adscript}}` + +- Cross-compileer een bestand naar een objectbestand voor een buitenlandse CPU-architectuur of besturingssysteem: + +`adscript --target-triple {{i386-linux-elf}} --output {{pad/naar/bestand.o}} {{pad/naar/invoer_bestand.adscript}}` diff --git a/pages.nl/common/afconvert.md b/pages.nl/common/afconvert.md new file mode 100644 index 0000000000..37e9fe14a1 --- /dev/null +++ b/pages.nl/common/afconvert.md @@ -0,0 +1,12 @@ +# afconvert + +> Converteren tussen AFF en onbewerkte bestandsindelingen. +> More information: . + +- Gebruik een specifieke extensie (standaard: `aff`): + +`afconvert -a {{verlenging}} {{pad/naar/invoer_bestand}} {{pad/naar/uitvoer_bestand1 pad/naar/uitvoer_bestand2 ...}}` + +- Gebruik een specifiek compressieniveau (standaard: `7`): + +`afconvert -X{{0..7}} {{pad/naar/invoer_bestand}} {{pad/naar/uitvoer_bestand1 pad/naar/uitvoer_bestand2 ...}}` diff --git a/pages.nl/common/ag.md b/pages.nl/common/ag.md new file mode 100644 index 0000000000..e6d4260047 --- /dev/null +++ b/pages.nl/common/ag.md @@ -0,0 +1,32 @@ +# ag + +> The Silver Searcher. Zoals ack, maar wil sneller zijn. +> Meer informatie: . + +- Zoek bestanden die "foo" bevatten en druk de regelovereenkomsten in context af: + +`ag {{foo}}` + +- Vind bestanden die "foo" bevatten in een specifieke map: + +`ag {{foo}} {{pad/naar/map}}` + +- Vind bestanden die "foo" bevatten, maar vermeld alleen de bestandsnamen: + +`ag -l {{foo}}` + +- Vind bestanden die "FOO" niet hoofdlettergevoelig bevatten en druk alleen de overeenkomst af in plaats van de hele regel: + +`ag -i -o {{FOO}}` + +- Zoek "foo" in bestanden met een naam die overeenkomt met "bar": + +`ag {{foo}} -G {{bar}}` + +- Vind bestanden waarvan de inhoud overeenkomt met een reguliere expressie: + +`ag '{{^ba(r|z)$}}'` + +- Zoek bestanden met een naam die overeenkomt met "foo": + +`ag -g {{foo}}` diff --git a/pages.nl/common/agate.md b/pages.nl/common/agate.md new file mode 100644 index 0000000000..6a3f06e126 --- /dev/null +++ b/pages.nl/common/agate.md @@ -0,0 +1,16 @@ +# agate + +> Een eenvoudige server voor het Gemini-netwerkprotocol. +> Meer informatie: . + +- Voer een persoonlijke sleutel en certificaat uit en genereer deze: + +`agate --content {{pad/naar/inhoud/}} --addr {{[::]:1965}} --addr {{0.0.0.0:1965}} --hostname {{voorbeeld.com}} --lang {{nl-NL}}` + +- Server starten: + +`agate {{pad/naar/bestand}}` + +- Help weergeven: + +`agate -h` diff --git a/pages.nl/common/age-keygen.md b/pages.nl/common/age-keygen.md new file mode 100644 index 0000000000..0f7f46bed1 --- /dev/null +++ b/pages.nl/common/age-keygen.md @@ -0,0 +1,13 @@ +# age-keygen + +> Genereer `age` sleutelparen. +> Bekijk `age` hoe je bestanden kan versleutelen/decoderen. +> Meer informatie: . + +- Genereer een sleutelpaar, sla de privésleutel op in een niet-versleuteld bestand en druk de openbare sleutel af naar `stdout`: + +`age-keygen --output {{pad/naar/bestand}}` + +- Converteer een identity naar een recipient een print de publieke sleutel naar `stdout`: + +`age-keygen -y {{pad/naar/bestand}}` diff --git a/pages.nl/common/age.md b/pages.nl/common/age.md new file mode 100644 index 0000000000..dbdd0f80e0 --- /dev/null +++ b/pages.nl/common/age.md @@ -0,0 +1,25 @@ +# age + +> Een eenvoudige, moderne en veilige tool voor het versleutelen van bestanden. +> Bekijk `age-keygen` hoe je sleutelparen kan genereren. +> Meer informatie: . + +- Genereer een versleuteld bestand dat kan worden ontsleuteld met een wachtwoordzin: + +`age --passphrase --output {{pad/naar/versleuteld_bestand}} {{pad/naar/niet-versleuteld_bestand}}` + +- Versleutel een bestand met een of meer openbare sleutels die als letterlijke waarden worden ingevoerd (herhaal de `--recipient` flag om meerdere openbare sleutels op te geven): + +`age --recipient {{openbare_sleutel}} --output {{pad/naar/versleuteld_bestand}} {{pad/naar/niet-versleuteld_bestand}}` + +- Versleutel een bestand met een of meer openbare sleutels die zijn opgegeven in het bestand van een ontvanger: + +`age --recipients-file {{pad/naar/ontvangers_bestand}} {{pad/naar/niet-versleuteld_bestand}} --output {{pad/naar/versleuteld_bestand}}` + +- Decodeer een bestand met een wachtwoordzin: + +`age --decrypt --output {{pad/naar/gedecodeerd_bestand}} {{pad/naar/versleuteld_bestand}}` + +- Ontsleutel een bestand met een privésleutelbestand: + +`age --decrypt --identity {{pad/naar/privé_sleutel_bestand}} --output {{pad/naar/gedecodeerd_bestand}} {{pad/naar/versleuteld_bestand}}` diff --git a/pages.nl/common/aircrack-ng.md b/pages.nl/common/aircrack-ng.md new file mode 100644 index 0000000000..65aa6fb9eb --- /dev/null +++ b/pages.nl/common/aircrack-ng.md @@ -0,0 +1,17 @@ +# aircrack-ng + +> Kraak WEP- en WPA/WPA2-sleutels van handshake in vastgelegde pakketten. +> Onderdeel van Aircrack-ng netwerksoftwaresuite. +> Meer Informatie: . + +- Kraak-sleutel uit opnamebestand met behulp van woordenlijst: + +`aircrack-ng -w {{pad/naar/woordenlijst.txt}} {{pad/naar/pakketbestand.cap}}` + +- Kraak de sleutel uit het opnamebestand met behulp van de woordenlijst en de essid van het toegangspunt: + +`aircrack-ng -w {{pad/naar/woordenlijst.txt}} -e {{essid}} {{pad/naar/pakketbestand.cap}}` + +- Kraak de sleutel uit het opnamebestand met behulp van de woordenlijst en het MAC-adres van het toegangspunt: + +`aircrack-ng -w {{pad/naar/woordenlijst.txt}} --bssid {{mac}} {{pad/naar/pakketbestand.cap}}` diff --git a/pages.nl/common/airdecap-ng.md b/pages.nl/common/airdecap-ng.md new file mode 100644 index 0000000000..eef6ac814e --- /dev/null +++ b/pages.nl/common/airdecap-ng.md @@ -0,0 +1,25 @@ +# airdecap-ng + +> Decodeer een WEP-, WPA- of WPA2-gecodeerd opnamebestand. +> Onderdeel van Aircrack-ng netwerksoftwaresuite. +> Meer Informatie: . + +- Verwijder draadloze headers uit een open netwerkopnamebestand en gebruik het MAC-adres van het toegangspunt om te filteren: + +`airdecap-ng -b {{ap_mac}} {{pad/naar/pakketbestand.cap}}` + +- Decodeer een met WEP gecodeerd opnamebestand met de sleutel in hex-indeling: + +`airdecap-ng -w {{hex_key}} {{pad/naar/pakketbestand.cap}}` + +- Decodeer een met WPA/WPA2 gecodeerd opnamebestand met behulp van de essid en het wachtwoord van het toegangspunt: + +`airdecap-ng -e {{essid}} -p {{wachtwoord}} {{pad/naar/pakketbestand.cap}}` + +- Decodeer een met WPA/WPA2 gecodeerd opnamebestand met behoud van de headers met behulp van de essid en het wachtwoord van het toegangspunt: + +`airdecap-ng -l -e {{essid}} -p {{wachtwoord}} {{pad/naar/pakketbestand.cap}}` + +- Decodeer een met WPA/WPA2 gecodeerd opnamebestand met behulp van de essid en het wachtwoord van het toegangspunt en gebruik het MAC-adres om te filteren: + +`airdecap-ng -b {{ap_mac}} -e {{essid}} -p {{wachtwoord}} {{pad/naar/pakketbestand.cap}}` diff --git a/pages.nl/common/aireplay-ng.md b/pages.nl/common/aireplay-ng.md new file mode 100644 index 0000000000..8789dfc5b6 --- /dev/null +++ b/pages.nl/common/aireplay-ng.md @@ -0,0 +1,9 @@ +# aireplay-ng + +> Injecteer pakketten in een draadloos netwerk. +> Deel van `aircrack-ng`. +> Meer Informatie: . + +- Stuur een specifiek aantal losgekoppelde pakketten op basis van het MAC-adres van een toegangspunt, het MAC-adres van een cliënt en een interface: + +`sudo aireplay-ng --deauth {{nummer}} --bssid {{ap_mac}} --dmac {{cliënt_mac}} {{interface}}` diff --git a/pages.nl/common/airmon-ng.md b/pages.nl/common/airmon-ng.md new file mode 100644 index 0000000000..07be341e90 --- /dev/null +++ b/pages.nl/common/airmon-ng.md @@ -0,0 +1,21 @@ +# airmon-ng + +> Activeer de monitormodus op draadloze netwerkapparaten. +> Deel van `aircrack-ng`. +> Meer informatie: . + +- Maak een lijst van draadloze apparaten en hun statussen: + +`sudo airmon-ng` + +- Schakel de monitormodus in voor een specifiek apparaat: + +`sudo airmon-ng start {{wlan0}}` + +- Dood storende processen die draadloze apparaten gebruiken: + +`sudo airmon-ng check kill` + +- Schakel de monitormodus uit voor een specifieke netwerkinterface: + +`sudo airmon-ng stop {{wlan0mon}}` diff --git a/pages.nl/common/airodump-ng.md b/pages.nl/common/airodump-ng.md new file mode 100644 index 0000000000..469b81b97b --- /dev/null +++ b/pages.nl/common/airodump-ng.md @@ -0,0 +1,13 @@ +# airodump-ng + +> Leg pakketten vast en geef informatie over draadloze netwerken weer. +> Deel van `aircrack-ng`. +> Meer informatie: . + +- Leg pakketten vast en geef informatie weer over een draadloos netwerk: + +`sudo airodump-ng {{interface}}` + +- Leg pakketten vast en geef informatie weer over een draadloos netwerk met het MAC-adres en kanaal, en sla de uitvoer op in een bestand: + +`sudo airodump-ng --channel {{kanaal}} --write {{pad/naar/bestand}} --bssid {{mac}} {{interface}}` diff --git a/pages.nl/common/airpaste.md b/pages.nl/common/airpaste.md new file mode 100644 index 0000000000..ded98d5ae6 --- /dev/null +++ b/pages.nl/common/airpaste.md @@ -0,0 +1,24 @@ +# airpaste + +> Deel berichten en bestanden op hetzelfde netwerk met behulp van mDNS. +> Meer informatie: . + +- Wacht op een bericht en geef het weer wanneer het wordt ontvangen: + +`airpaste` + +- Stuur tekst: + +`echo {{tekst}} | airpaste` + +- Stuur een bestand: + +`airpaste < {{pad/naar/bestand}}` + +- Ontvang een bestand: + +`airpaste > {{pad/naar/bestand}}` + +- Maak of word lid van een kanaal: + +`airpaste {{kanaal_naam}}` diff --git a/pages.nl/common/airshare.md b/pages.nl/common/airshare.md new file mode 100644 index 0000000000..c142be6141 --- /dev/null +++ b/pages.nl/common/airshare.md @@ -0,0 +1,28 @@ +# airshare + +> Gegevens overdragen tussen twee machines in een lokaal netwerk. +> Meer informatie: . + +- Bestanden of mappen delen: + +`airshare {{code}} {{pad/naar/bestand_of_map1 pad/naar/bestand_of_map2 ...}}` + +- Ontvang een bestand: + +`airshare {{code}}` + +- Host een ontvangende server (gebruik deze om bestanden te kunnen uploaden via de webinterface): + +`airshare --upload {{code}}` + +- Stuur bestanden of mappen naar een ontvangende server: + +`airshare --upload {{code}} {{pad/naar/bestand_of_map1 pad/naar/bestand_of_map2 ...}}` + +- Bestanden verzenden waarvan de paden naar het klembord zijn gekopieerd: + +`airshare --file-path {{code}}` + +- Ontvang een bestand en kopieer het naar het klembord: + +`airshare --clip-receive {{code}}` diff --git a/pages.nl/common/ajson.md b/pages.nl/common/ajson.md new file mode 100644 index 0000000000..2d41aa26f0 --- /dev/null +++ b/pages.nl/common/ajson.md @@ -0,0 +1,20 @@ +# ajson + +> Voert JSONPath uit op JSON-objecten. +> Meer informatie: . + +- Lees JSON uit een bestand en voer een opgegeven JSONPath-expressie uit: + +`ajson '{{$..json[?(@.path)]}}' {{pad/naar/bestand.json}}` + +- Lees JSON van `stdin` en voer een gespecificeerde JSONPath-expressie uit: + +`cat {{pad/naar/bestand.json}} | ajson '{{$..json[?(@.path)]}}'` + +- Lees JSON van een URL en evalueer een opgegeven JSONPath-expressie: + +`ajson '{{avg($..price)}}' '{{https://voorbeeld.com/api/}}'` + +- Lees wat eenvoudige JSON en bereken een waarde: + +`echo '{{3}}' | ajson '{{2 * pi * $}}'` diff --git a/pages.nl/common/alacritty.md b/pages.nl/common/alacritty.md new file mode 100644 index 0000000000..f043e2ec03 --- /dev/null +++ b/pages.nl/common/alacritty.md @@ -0,0 +1,24 @@ +# alacritty + +> Cross-platform, GPU-versnelde terminalemulator. +> Meer informatie: . + +- Open een nieuw Alacritty-venster: + +`alacritty` + +- Uitvoeren in een specifieke map: + +`alacritty --working-directory {{pad/naar/map}}` + +- Voer een opdracht uit in een nieuw Alacritty-venster: + +`alacritty -e {{bevel}}` + +- Geef een alternatief configuratiebestand op (standaard ingesteld op `$XDG_CONFIG_HOME/alacritty/alacritty.yml`): + +`alacritty --config-file {{pad/naar/config.yml}}` + +- Uitvoeren met live config reload ingeschakeld (kan ook standaard worden ingeschakeld in `alacritty.yml`): + +`alacritty --live-config-reload --config-file {{pad/naar/config.yml}}` diff --git a/pages.nl/common/alex.md b/pages.nl/common/alex.md new file mode 100644 index 0000000000..82f00c83a1 --- /dev/null +++ b/pages.nl/common/alex.md @@ -0,0 +1,21 @@ +# alex + +> Een tool die ongevoelig, onattent schrijven opvangt. +> Het helpt je bij het vinden van genderbegunstigende, polariserende, rasgerelateerde, onachtzame religie of andere ongelijke bewoordingen in de tekst. +> Meer informatie: . + +- Analyseer tekst van `stdin`: + +`echo {{Zijn netwerk ziet er goed uit}} | alex --stdin` + +- Analyseer alle bestanden in de huidige map: + +`alex` + +- Analyseer een specifiek bestand: + +`alex {{tekstbestand.md}}` + +- Analyseer alle Markdown-bestanden behalve `voorbeeld.md`: + +`alex *.md !{{voorbeeld.md}}` diff --git a/pages.nl/common/alias.md b/pages.nl/common/alias.md index b69bb50c28..ead718eb41 100644 --- a/pages.nl/common/alias.md +++ b/pages.nl/common/alias.md @@ -1,6 +1,6 @@ # alias -> Maakt een alias aan -- Woorden die vervangen woorden door commando's. +> Maakt een alias aan -- Woorden die vervangen worden door commando's. > Een alias blijft bestaan in de huidige shell sessie, tenzij gedefinieerd in de configuratie van de shell, bijvoorbeeld in `~/.bashrc`. > Meer informatie: . diff --git a/pages.nl/common/asciinema.md b/pages.nl/common/asciinema.md index 83a9291f08..22ff025435 100644 --- a/pages.nl/common/asciinema.md +++ b/pages.nl/common/asciinema.md @@ -1,7 +1,7 @@ # asciinema > Neemt en speelt terminal sessies af, en deelt hem optioneel op asciinema.org. -> Meer informatie: . +> Meer informatie: . - Associeer de lokale installatie van `asciinema` met het asciinema.org account: diff --git a/pages.nl/common/autopep8.md b/pages.nl/common/autopep8.md index edc550c0b4..c5315f97fb 100644 --- a/pages.nl/common/autopep8.md +++ b/pages.nl/common/autopep8.md @@ -3,7 +3,7 @@ > Formatteer Python-code conform de PEP 8-stijlgids. > Meer informatie: . -- Formateer een bestand naar stdout, met een ingestelde maximale toegestane regellengte: +- Formateer een bestand naar `stdout`, met een ingestelde maximale toegestane regellengte: `autopep8 {{pad/naar/bestand.py}} --max-line-length {{lengte}}` diff --git a/pages.nl/common/base64.md b/pages.nl/common/base64.md index 605bafe6bd..c52d13dacd 100644 --- a/pages.nl/common/base64.md +++ b/pages.nl/common/base64.md @@ -11,10 +11,10 @@ `base64 --decode {{bestandsnaam}}` -- Codeer stdin: +- Codeer `stdin`: `{{eencommando}} | base64` -- Decodeer stdin: +- Decodeer `stdin`: `{{eencommando}} | base64 --decode` diff --git a/pages.nl/common/bash.md b/pages.nl/common/bash.md index 48a535c2a6..edc100b170 100644 --- a/pages.nl/common/bash.md +++ b/pages.nl/common/bash.md @@ -1,33 +1,37 @@ # bash -> Bourne-Again SHell. -> `sh`-ondersteunende commandoregel-interpreteerder. +> Bourne-Again SHell, `sh`-ondersteunende commandoregel-interpreteerder. +> Bekijk ook: `zsh`, `histexpand` (history expansion). > Meer informatie: . -- Start interactieve shell: +- Start een interactieve shell sessie: `bash` -- Voer een commando uit: +- Start een interactieve shell sessie zonder het laden van startup configuratie: -`bash -c "{{commando}}"` +`bash --norc` + +- Voer een [c]ommando uit: + +`bash -c "{{echo 'bash is executed'}}"` - Voer commando's van bestand uit: -`bash {{bestand.sh}}` +`bash {{pad/naar/script.sh}}` - Voer commando's van bestand uit, en print alle uitgevoerde commando's naar de terminal: -`bash -x {{bestand.sh}}` +`bash -x {{pad/naar/script.sh}}` - Voer commando's van bestand uit, en stop bij de eerste fout: -`bash -e {{bestand.sh}}` +`bash -e {{pad/naar/script.sh}}` -- Voer commando's van stdin uit: +- Voer commando's van `stdin` uit: -`bash -s` +`{{echo "echo 'bash is executed'"}} | bash` -- Print de versieinformatie van bash (gebruik `echo $BASH_VERSION` om alleen de versie te krijgen zonder licentie): +- Start een beperkte shell sessie: -`bash --version` +`bash -r` diff --git a/pages.nl/common/bundler.md b/pages.nl/common/bundler.md new file mode 100644 index 0000000000..9d3cc02479 --- /dev/null +++ b/pages.nl/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> Dit commando is een alias van `bundle`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr bundle` diff --git a/pages.nl/common/cargo.md b/pages.nl/common/cargo.md index 37b7c0d323..ccfdd88eaf 100644 --- a/pages.nl/common/cargo.md +++ b/pages.nl/common/cargo.md @@ -1,8 +1,8 @@ # cargo -> Rust pakketbeheerder. > Beheer Rust projecten en hun afhankelijkheden (crates). -> Meer informatie: . +> Sommige subcommando's zoals `build` hebben hun eigen documentatie. +> Meer informatie: . - Zoek naar crates: @@ -16,17 +16,21 @@ `cargo install --list` -- Maak een nieuwe Rust-binary (bin) of -bibliotheek (lib) in de huidige map: +- Maak een nieuwe Rust-binary (bin) of -bibliotheek (lib) in de gegeven map. (Standaard is de huidige map): -`cargo init --{{bin|lib}}` +`cargo init --{{bin|lib}} {{pad/naar/map}}` -- Maak een nieuwe Rust-binary (bin) of -bibliotheek (lib) in de gegeven map: +- Voeg een afhankelijkheid toe aan `Cargo.toml` in de huidge map: -`cargo new {{pad/naar/map}} --{{bin|lib}}` +`cargo add {{afhankelijkheid}}` -- Bouw het Rust-project in de huidige map: +- Bouw het Rust-project in de huidige map door gebruik te maken van het release-profiel: -`cargo build` +`cargo build --release` + +- Bouw het Rust-project in de huidige map door gebruik te maken van de nachtelijkse compiler (vereist `rustup`): + +`cargo +nightly build` - Bouw met een gegeven aantal taken. (Standaard is het aantal CPU-kernen): diff --git a/pages.nl/common/cd.md b/pages.nl/common/cd.md index b21ba2aef0..d0c563f05b 100644 --- a/pages.nl/common/cd.md +++ b/pages.nl/common/cd.md @@ -7,14 +7,22 @@ `cd {{pad/naar/map}}` +- Ga naar de ouder van de huidge map: + +`cd ..` + - Ga naar de thuismap van de huidige gebruiker: `cd` -- Ga naar de ouder van de huidige map: +- Ga naar de thuismap van de opgegeven gebruiker: -`cd ..` +`cd ~{{gebruikersnaam}}` - Ga naar de vorige map: `cd -` + +- Ga naar de hoofdmap: + +`cd /` diff --git a/pages.nl/common/chmod.md b/pages.nl/common/chmod.md index a524f67986..dfef65bd8c 100644 --- a/pages.nl/common/chmod.md +++ b/pages.nl/common/chmod.md @@ -5,28 +5,32 @@ - Geef een gebruiker ([u]ser) die het bestand beheert het recht om deze uit te voeren (e[x]ecute): -`chmod u+x {{bestand}}` +`chmod u+x {{pad/naar/bestand}}` - Geef de gebruiker ([u]ser) het recht om een bestand of map te lezen ([r]ead) en schrijven ([w]rite): -`chmod u+rw {{bestand_of_map}}` +`chmod u+rw {{pad/naar/bestand_of_map}}` - Haal uitvoertoestemming (e[x]ecute) voor een bestand weg van de [g]roep: -`chmod g-x {{bestand}}` +`chmod g-x {{pad/naar/bestand}}` - Geef [a]lle gebruikers toegang om een bestand te lezen ([r]ead) en schrijven ([w]rite): -`chmod a+rx {{bestand}}` +`chmod a+rx {{pad/naar/bestand}}` - Geef anderen ([o]thers) die niet in de groep van de beheerder zitten, dezelfde rechten als de [g]roep: -`chmod o=g {{bestand}}` +`chmod o=g {{pad/naar/bestand}}` - Haal alle rechten van de anderen ([o]thers) weg: -`chmod o= {{bestand}}` +`chmod o= {{pad/naar/bestand}}` - Verander de toestemmingen recursief, waarbij de [g]roep en anderen ([o]thers) de mogelijkheid tot schrijven ([w]rite) krijgen: `chmod -R g+w,o+w {{map}}` + +- Geef recursief alle gebruikers ([a]ll users) toegang om bestanden te lezen ([r]ead) en uitvoertoestemming (e[X]ecute) voor alle onderliggende mappen in een map: + +`chmod -R a+rX {{pad/naar/map}}` diff --git a/pages.nl/common/chsh.md b/pages.nl/common/chsh.md index 928c1a31f9..65579c5b8b 100644 --- a/pages.nl/common/chsh.md +++ b/pages.nl/common/chsh.md @@ -3,6 +3,18 @@ > Wijzig de login-shell van de gebruiker. > Meer informatie: . -- Wijzig shell: +- Stel interactief een specifieke login-shell in voor de huidige gebruiker: -`chsh -s {{pad/naar/shell_binary}} {{gebruikersnaam}}` +`chsh` + +- Stel een specifieke login-[s]hell in voor de huidige gebruiker: + +`chsh -s {{pad/naar/shell}}` + +- Stel een login-[s]hell in voor een specifieke gebruiker: + +`chsh -s {{pad/naar/shell}} {{gebruikersnaam}}` + +- Toon [l]ist met beschikbare shells: + +`chsh -l` diff --git a/pages.nl/common/clamav.md b/pages.nl/common/clamav.md new file mode 100644 index 0000000000..2134c75d9d --- /dev/null +++ b/pages.nl/common/clamav.md @@ -0,0 +1,17 @@ +# ClamAV + +> Open-source anti-virus programma. +> ClamAV is geen commando, maar een set van commandos. +> Meer informatie: . + +- Toon de tldr pagina om bestanden te scannen door gebruik te maken van de `clamd` daemon: + +`tldr clamdscan` + +- Toon de tldr pagina om bestanden te scannen zonder gebruik te maken van de `clamd` daemon: + +`tldr clamscan` + +- Toon de tldr pagina om de virus definities te updaten: + +`tldr freshclam` diff --git a/pages.nl/common/cron.md b/pages.nl/common/cron.md new file mode 100644 index 0000000000..5c1541ff3a --- /dev/null +++ b/pages.nl/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> Dit commando is een alias van `crontab`. + +- Bekijk de documentatie van het originele commando: + +`tldr crontab` diff --git a/pages.nl/common/du.md b/pages.nl/common/du.md index 1c1a8cfb99..c3281e5298 100644 --- a/pages.nl/common/du.md +++ b/pages.nl/common/du.md @@ -1,28 +1,28 @@ # du -> Disk gebruik: schat en groepeer bestand en directory ruimte gebruik. +> Disk gebruik: schat en groepeer bestand en map ruimte gebruik. > Meer informatie: . -- Toont de grootte van een directory en mogelijke sub-directories, met een gegeven eenheid (B/KiB/MiB): +- Toont de grootte van een map en mogelijke sub-mappen, met een gegeven eenheid (B/KiB/MiB): -`du -{{b|k|m}} {{pad/naar/directory}}` +`du -{{b|k|m}} {{pad/naar/map}}` -- Toont de grootte van een directory en mogelijke sub-directories, met een leesbaar unit formaat (bijvoorbeeld door het automatisch kiezen van een eenheid gebaseerd op grootte)): +- Toont de grootte van een map en mogelijke sub-mappen, met een leesbaar unit formaat (bijvoorbeeld door het automatisch kiezen van een eenheid gebaseerd op grootte)): -`du -h {{pad/naar/directory}}` +`du -h {{pad/naar/map}}` -- Toont de grootte van een enkele directory met een leesbaar eenheid formaat: +- Toont de grootte van een enkele map met een leesbaar eenheid formaat: -`du -sh {{pad/naar/directory}}` +`du -sh {{pad/naar/map}}` -- Toont de grootte in leesbare vorm van een directory met alle bestanden en directories: +- Toont de grootte in leesbare vorm van een map met alle bestanden en mappen: -`du -ah {{pad/naar/directory}}` +`du -ah {{pad/naar/map}}` -- Toont de grootte in leesbare vorm van een directory en alle sub-directories tot N niveaus diep: +- Toont de grootte in leesbare vorm van een map en alle sub-mappen tot N niveaus diep: -`du -h --max-depth=N {{pad/naar/directory}}` +`du -h --max-depth=N {{pad/naar/map}}` -- Toont de grootte in leesbare vorm van alle `.jpg` bestanden in sub-directories van de huidige directory en laat een cumulatief totaal zien op het eind: +- Toont de grootte in leesbare vorm van alle `.jpg` bestanden in sub-mappen van de huidige map en laat een cumulatief totaal zien op het eind: `du -ch {{*/*.jpg}}` diff --git a/pages.nl/common/echo.md b/pages.nl/common/echo.md index ec5d9bf755..bd30688da5 100644 --- a/pages.nl/common/echo.md +++ b/pages.nl/common/echo.md @@ -19,6 +19,10 @@ `echo "{{Hallo Wereld}}" >> {{bestand.txt}}` -- Schakel interpretatie van backslash ontkoming in (speciale karakters): +- Interpretatie van backslash-escapes (speciale tekens) inschakelen: `echo -e "{{kolom 1\kolom 2}}"` + +- Druk de afsluitstatus van de laatst uitgevoerde opdracht af (Opmerking: in Windows Command Prompt en PowerShell zijn de equivalente opdrachten respectievelijk `echo %errorlevel%` en `$lastexitcode`): + +`echo $?` diff --git a/pages.nl/common/fossil-ci.md b/pages.nl/common/fossil-ci.md new file mode 100644 index 0000000000..5a2a6dc719 --- /dev/null +++ b/pages.nl/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> Dit commando is een alias van `fossil-commit`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr fossil-commit` diff --git a/pages.nl/common/fossil-delete.md b/pages.nl/common/fossil-delete.md new file mode 100644 index 0000000000..c6324d599b --- /dev/null +++ b/pages.nl/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> Dit commando is een alias van `fossil rm`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr fossil rm` diff --git a/pages.nl/common/fossil-forget.md b/pages.nl/common/fossil-forget.md new file mode 100644 index 0000000000..1f50db65ae --- /dev/null +++ b/pages.nl/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> Dit commando is een alias van `fossil rm`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr fossil rm` diff --git a/pages.nl/common/fossil-new.md b/pages.nl/common/fossil-new.md new file mode 100644 index 0000000000..d257d8ef6a --- /dev/null +++ b/pages.nl/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> Dit commando is een alias van `fossil-init`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr fossil-init` diff --git a/pages.nl/common/gh-cs.md b/pages.nl/common/gh-cs.md new file mode 100644 index 0000000000..cb1ed361e2 --- /dev/null +++ b/pages.nl/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> Dit commando is een alias van `gh-codespace`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr gh-codespace` diff --git a/pages.nl/common/gnmic-sub.md b/pages.nl/common/gnmic-sub.md new file mode 100644 index 0000000000..cfb551b285 --- /dev/null +++ b/pages.nl/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> Dit commando is een alias van `gnmic subscribe`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr gnmic subscribe` diff --git a/pages.nl/common/google-chrome.md b/pages.nl/common/google-chrome.md new file mode 100644 index 0000000000..2c28ca7343 --- /dev/null +++ b/pages.nl/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> Dit commando is een alias van `chromium`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr chromium` diff --git a/pages.nl/common/hx.md b/pages.nl/common/hx.md new file mode 100644 index 0000000000..4c23eb37ce --- /dev/null +++ b/pages.nl/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> Dit commando is een alias van `helix`. + +- Bekijk de documentatie van het originele commando: + +`tldr helix` diff --git a/pages.nl/common/kafkacat.md b/pages.nl/common/kafkacat.md new file mode 100644 index 0000000000..86cdeffef9 --- /dev/null +++ b/pages.nl/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> Dit commando is een alias van `kcat`. + +- Bekijk de documentatie van het originele commando: + +`tldr kcat` diff --git a/pages.nl/common/lzcat.md b/pages.nl/common/lzcat.md new file mode 100644 index 0000000000..37e0beb23b --- /dev/null +++ b/pages.nl/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> Dit commando is een alias van `xz`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr xz` diff --git a/pages.nl/common/lzma.md b/pages.nl/common/lzma.md new file mode 100644 index 0000000000..4717c4e68c --- /dev/null +++ b/pages.nl/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> Dit commando is een alias van `xz`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr xz` diff --git a/pages.nl/common/nano.md b/pages.nl/common/nano.md index 9cb979c74b..140bb43cf8 100644 --- a/pages.nl/common/nano.md +++ b/pages.nl/common/nano.md @@ -1,28 +1,32 @@ # nano -> Simpele, makkelijk te gebruiken command-line tekst bewerker. Een verbeterde, gratis Pico kloon. +> Command-line tekst bewerker. Een verbeterde `Pico` kloon. > Meer informatie: . -- Open een nieuw bestand in nano: +- Start de tekst bewerker: `nano` -- Open een specifiek bestand: +- Start de tekst bewerker zonder gebruik te maken van configuratiebestanden: -`nano {{pad/naar/bestand}}` +`nano --ignorercfiles` -- Open een bepaald bestand, met de cursor gezet in een gegeven regel en kolom: +- Open specifieke bestanden, ga naar het volgende bestand bij het sluiten van de vorige: + +`nano {{pad/naar/bestand1}} {{pad/naar/bestand2}}` + +- Open een bestand en positioneer de cursor op een specifieke regel en kolom: `nano +{{regel}},{{kolom}} {{pad/naar/bestand}}` -- Open een bepaald bestand en zet 'soft wrapping' aan: +- Open een bestand en zet 'soft wrapping' aan: `nano --softwrap {{pad/naar/bestand}}` -- Open een bepaald bestand en spring nieuwe regels in volgens de inspringing van de vorige regel: +- Open een bestand en spring nieuwe regels in volgens de inspringing van de vorige regel: `nano --autoindent {{pad/naar/bestand}}` -- Open nano en maak een reservekopie (`bestand~`) bij het opslaan van veranderingen: +- Open een bestand en maak een reservekopie (`pad/naar/bestand~`) bij het opslaan: `nano --backup {{pad/naar/bestand}}` diff --git a/pages.nl/common/nm-classic.md b/pages.nl/common/nm-classic.md new file mode 100644 index 0000000000..414271c361 --- /dev/null +++ b/pages.nl/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> Dit commando is een alias van `nm`. + +- Bekijk de documentatie van het originele commando: + +`tldr nm` diff --git a/pages.nl/common/ntl.md b/pages.nl/common/ntl.md new file mode 100644 index 0000000000..a73db66ebf --- /dev/null +++ b/pages.nl/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> Dit commando is een alias van `netlify`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr netlify` diff --git a/pages.nl/common/ptpython3.md b/pages.nl/common/ptpython3.md new file mode 100644 index 0000000000..1db6deeef2 --- /dev/null +++ b/pages.nl/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> Dit commando is een alias van `ptpython`. + +- Bekijk de documentatie van het originele commando: + +`tldr ptpython` diff --git a/pages.nl/common/python3.md b/pages.nl/common/python3.md new file mode 100644 index 0000000000..a9347eaeae --- /dev/null +++ b/pages.nl/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> Dit commando is een alias van `python`. + +- Bekijk de documentatie van het originele commando: + +`tldr python` diff --git a/pages.nl/common/rcat.md b/pages.nl/common/rcat.md new file mode 100644 index 0000000000..138762d954 --- /dev/null +++ b/pages.nl/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> Dit commando is een alias van `rc`. + +- Bekijk de documentatie van het originele commando: + +`tldr rc` diff --git a/pages.nl/common/ripgrep.md b/pages.nl/common/ripgrep.md new file mode 100644 index 0000000000..23f9b31c0a --- /dev/null +++ b/pages.nl/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> Dit commando is een alias van `rg`. + +- Bekijk de documentatie van het originele commando: + +`tldr rg` diff --git a/pages.nl/common/source.md b/pages.nl/common/source.md index 57b81a3158..e0a55d721c 100644 --- a/pages.nl/common/source.md +++ b/pages.nl/common/source.md @@ -6,3 +6,7 @@ - Evalueer de inhoud van een bepaald bestand: `source {{pad/naar/bestand}}` + +- Evalueer de inhoud van een bepaald bestand (als alternatief ter vervanging van `source` door` .`): + +`. {{pad/naar/bestand}}` diff --git a/pages.nl/common/todoman.md b/pages.nl/common/todoman.md new file mode 100644 index 0000000000..5cbfe1e7c8 --- /dev/null +++ b/pages.nl/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> Dit commando is een alias van `todo`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr todo` diff --git a/pages.nl/common/transmission.md b/pages.nl/common/transmission.md new file mode 100644 index 0000000000..57059c8bcb --- /dev/null +++ b/pages.nl/common/transmission.md @@ -0,0 +1,29 @@ +# transmission + +> Transmission is een eenvoudige torrent-client. +> Transmission is geen commando, maar een set commando's. Zie de onderstaande pagina's. +> Meer informatie: . + +- Toon de tdlr pagina voor het uitvoeren van de daemon van Transmission: + +`tldr transmission-daemon` + +- Toon de tldr pagina voor interactie met de daemon: + +`tldr transmission-remote` + +- Toon de tldr pagina voor het maken van torrent-bestanden: + +`tldr transmission-create` + +- Toon de tldr pagina voor het wijzigen van torrent-bestanden: + +`tldr transmission-edit` + +- Toon de tldr pagina voor het verkrijgen van informatie over torrent-bestanden: + +`tldr transmission-show` + +- Toon de tldr pagina voor de verouderde methode voor interactie met de daemon: + +`tldr transmission-cli` diff --git a/pages.nl/common/ugrep.md b/pages.nl/common/ugrep.md index 364d31b2fc..5ddf678a36 100644 --- a/pages.nl/common/ugrep.md +++ b/pages.nl/common/ugrep.md @@ -7,15 +7,15 @@ `ugrep --query` -- Zoek recursief met een regex zoekpatroon in de huidige directory naar passende bestanden: +- Zoek recursief met een regex zoekpatroon in de huidige map naar passende bestanden: `ugrep "{{zoekpatroon}}"` -- Zoek een gegeven bestand of bestanden in een gegeven directory en laat de passende regelnummers zien: +- Zoek een gegeven bestand of bestanden in een gegeven map en laat de passende regelnummers zien: -`ugrep --line-number "{{zoekpatroon}}" {{pad/naar/bestand_of_directory}}` +`ugrep --line-number "{{zoekpatroon}}" {{pad/naar/bestand_of_map}}` -- Zoek recursief in de huidige directory en geef een lijst met passende bestanden: +- Zoek recursief in de huidige map en geef een lijst met passende bestanden: `ugrep --files-with-matches "{{zoekpatroon}}"` @@ -23,7 +23,7 @@ `ugrep --fuzzy=3 "{{zoekpatroon}}"` -- Zoek passende gecomprimeerde bestanden, zip en tar archieven recursief in de huidige directory: +- Zoek passende gecomprimeerde bestanden, zip en tar archieven recursief in de huidige map: `ugrep --decompress "{{zoekpatroon}}"` diff --git a/pages.nl/common/unlzma.md b/pages.nl/common/unlzma.md new file mode 100644 index 0000000000..1b1e5e8684 --- /dev/null +++ b/pages.nl/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> Dit commando is een alias van `xz`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr xz` diff --git a/pages.nl/common/unxz.md b/pages.nl/common/unxz.md new file mode 100644 index 0000000000..2bd5d07ebe --- /dev/null +++ b/pages.nl/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> Dit commando is een alias van `xz`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr xz` diff --git a/pages.nl/common/visudo.md b/pages.nl/common/visudo.md index 4b5b24daa8..f62fc33a9e 100644 --- a/pages.nl/common/visudo.md +++ b/pages.nl/common/visudo.md @@ -10,3 +10,11 @@ - Controleer sudoers-bestand op fouten: `sudo visudo -c` + +- Bewerk het sudoers-bestand met een specifieke editor: + +`sudo EDITOR={{editor}} visudo` + +- Toon versie informatie: + +`visudo --version` diff --git a/pages.nl/common/xzcat.md b/pages.nl/common/xzcat.md new file mode 100644 index 0000000000..7651bab540 --- /dev/null +++ b/pages.nl/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> Dit commando is een alias van `xz`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr xz` diff --git a/pages.nl/common/yes.md b/pages.nl/common/yes.md index 09f9b8acef..1d234b7eb4 100644 --- a/pages.nl/common/yes.md +++ b/pages.nl/common/yes.md @@ -1,6 +1,7 @@ # yes -> Print herhaaldelijk iets op het scherm. +> Iets herhaaldelijk uitvoeren. +> Deze opdracht wordt vaak gebruikt om ja te beantwoorden op elke prompt door installatieopdrachten (zoals apt-get). > Meer informatie: . - Print herhaaldelijk "bericht": @@ -10,3 +11,7 @@ - Print herhaaldelijk "y": `yes` + +- Accepteer alles wat wordt gevraagd door het commando `apt-get`: + +`yes | sudo apt-get install {{programma}}` diff --git a/pages.nl/linux/alternatives.md b/pages.nl/linux/alternatives.md new file mode 100644 index 0000000000..afa32baceb --- /dev/null +++ b/pages.nl/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> Dit commando is een alias van `update-alternatives`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr update-alternatives` diff --git a/pages.nl/linux/apt-get.md b/pages.nl/linux/apt-get.md new file mode 100644 index 0000000000..025b320896 --- /dev/null +++ b/pages.nl/linux/apt-get.md @@ -0,0 +1,37 @@ +# apt-get + +> Hulpprogramma voor pakketbeheer van Debian en Ubuntu. +> Zoek naar pakketten met `apt-cache`. +> Meer informatie: . + +- Werk de lijst van beschikbare pakketten en versies bij (het wordt aanbevolen dit uit te voeren voor elk ander `apt-get` commando): + +`apt-get update` + +- Installeer specifieke pakketten of werk ze bij naar de nieuwste beschikbare versies: + +`apt-get install {{pakket1 pakket2 ...}}` + +- Verwijder specifieke pakketten: + +`apt-get remove {{pakket1 pakket2 ...}}` + +- Verwijder specifieke pakketten en hun configuratiebestanden: + +`apt-get purge {{pakket1 pakket2 ...}}` + +- Upgrade alle geïnstalleerde pakketten naar hun nieuwste beschikbare versies: + +`apt-get upgrade` + +- Schoon de lokale repository op - verwijder pakketbestanden (`.deb`) van onderbroken downloads die niet langer kunnen worden gedownload: + +`apt-get autoclean` + +- Verwijder alle pakketten die niet meer nodig zijn: + +`apt-get autoremove` + +- Upgrade geïnstalleerde pakketten (zoals `upgrade`), maar verwijder verouderde pakketten en installeer aanvullende pakketten om aan nieuwe dependencies te voldoen: + +`apt-get dist-upgrade` diff --git a/pages.nl/linux/apt.md b/pages.nl/linux/apt.md new file mode 100644 index 0000000000..46fa735b46 --- /dev/null +++ b/pages.nl/linux/apt.md @@ -0,0 +1,38 @@ +# apt + +> Hulpprogramma voor pakketbeheer voor op Debian gebaseerde distributies. +> Aanbevolen vervanging voor `apt-get` bij interactief gebruik in Ubuntu versie 16.04 en later. +> Voor gelijkwaardige commando's in andere pakket managers, zie . +> Meer informatie: . + +- Werk de lijst van beschikbare pakketten en versies bij (het wordt aanbevolen dit uit te voeren voor elk ander `apt` commando): + +`sudo apt update` + +- Zoek naar een specifiek pakket: + +`apt search {{pakket}}` + +- Toon informatie voor een specifiek pakket: + +`apt show {{pakket1 pakket2 ...}}` + +- Installeer specifieke pakketten of werk ze bij naar de nieuwste beschikbare versies: + +`sudo apt install {{pakket1 pakket2 ...}}` + +- Verwijder specifieke pakketten (gebruik in plaats daarvan purge om ook hun configuratiebestanden te verwijderen): + +`sudo apt remove {{pakket1 pakket2 ...}}` + +- Upgrade alle geïnstalleerde pakketten naar hun nieuwste beschikbare versies: + +`sudo apt upgrade` + +- Maak een lijst van alle pakketten: + +`apt list` + +- Maak een lijst van alle geïnstalleerde pakketten: + +`apt list --installed` diff --git a/pages.nl/linux/batcat.md b/pages.nl/linux/batcat.md new file mode 100644 index 0000000000..c6dcffe39f --- /dev/null +++ b/pages.nl/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> Dit commando is een alias van `bat`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr bat` diff --git a/pages.nl/linux/bspc.md b/pages.nl/linux/bspc.md new file mode 100644 index 0000000000..e32cf4d48f --- /dev/null +++ b/pages.nl/linux/bspc.md @@ -0,0 +1,24 @@ +# bspc + +> Een tool om `bspwm` te besturen. +> Meer informatie: . + +- Definieer twee virtuele bureaubladen: + +`bspc monitor --reset-desktops {{1}} {{2}}` + +- Focus op het gegeven bureaublad: + +`bspc desktop --focus {{number}}` + +- Sluit de vensters die afgetakt zijn van het geselecteerde knooppunt: + +`bspc node --close` + +- Stuur het geselecteerde knooppunt naar het opgegeven bureaublad: + +`bspc node --to-desktop {{number}}` + +- Schakel de modus volledig scherm in voor het geselecteerde knooppunt: + +`bspc node --state ~fullscreen` diff --git a/pages.nl/linux/bspwm.md b/pages.nl/linux/bspwm.md new file mode 100644 index 0000000000..d48ccb0f5d --- /dev/null +++ b/pages.nl/linux/bspwm.md @@ -0,0 +1,12 @@ +# bspwm + +> Een tegelvensterbeheerder gebaseerd op binaire ruimtepartitionering. +> Meer informatie: . + +- Start `bspwm` (houd er rekening mee dat een reeds bestaande vensterbeheerder niet geopend mag zijn wanneer dit commando wordt uitgevoerd): + +`bspwm -c {{pad/naar/config}}` + +- Bekijk de documentatie van `bspc`: + +`tldr bspc` diff --git a/pages.nl/linux/cc.md b/pages.nl/linux/cc.md new file mode 100644 index 0000000000..bce7adec34 --- /dev/null +++ b/pages.nl/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> Dit commando is een alias van `gcc`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr gcc` diff --git a/pages.nl/linux/cgroups.md b/pages.nl/linux/cgroups.md new file mode 100644 index 0000000000..aa454b178c --- /dev/null +++ b/pages.nl/linux/cgroups.md @@ -0,0 +1,17 @@ +# cgroups + +> Cgroups aka Control Groups is een Linux-kernelfunctie voor het beperken, meten en beheersen van het gebruik van hulpbronnen door processen. +> Cgroups is echter geen commando, maar eerder een verzameling van commando's, zie de relevante pagina's hieronder. +> Meer informatie: . + +- Toon de tldr pagina voor `cgclassify`: + +`tldr cgclassify` + +- Toon de tldr pagina voor `cgcreate`: + +`tldr cgcreate` + +- Toon de tldr pagina voor `cgexec`: + +`tldr cgexec` diff --git a/pages.nl/linux/cp.md b/pages.nl/linux/cp.md index 9b80b1e1d7..fc8dbaf3ca 100644 --- a/pages.nl/linux/cp.md +++ b/pages.nl/linux/cp.md @@ -19,7 +19,11 @@ `cp -vr {{pad/naar/bron_map}} {{pad/naar/doel_map}}` -- Kopieer tekst bestanden naar een andere locatie, in interactieve modus (vraagt de gebruiker voordat er iets overschreden wordt): +- Kopieer meerdere bestanden tegelijk naar een map: + +`cp -t {{pad/naar/doel_map}} {{pad/naar/bestand1 pad/naar/bestand2 ...}}` + +- Kopieer tekst bestanden naar een andere locatie, in interactieve modus (vraagt de gebruiker voordat er iets overschreven wordt): `cp -i {{*.txt}} {{pad/naar/doel_map}}` @@ -29,4 +33,4 @@ - Gebruik het volledige pad van de bron bestanden, creëer missende tussenliggende mappen tijdens het kopieëren: -`cp --parents {{bron/pad/naar/bestand}} {{pad/naar/doel_bestand}}` +`cp --parents {{pad/naar/bron_bestand}} {{pad/naar/doel_bestand}}` diff --git a/pages.nl/linux/dnf.md b/pages.nl/linux/dnf.md new file mode 100644 index 0000000000..1ca73312eb --- /dev/null +++ b/pages.nl/linux/dnf.md @@ -0,0 +1,37 @@ +# dnf + +> Hulpprogramma voor pakketbeheer van RHEL, Fedora en CentOS (vervangt Yum). +> Voor gelijkwaardige commando's binnen andere pakketbeheerders, zie . +> Meer informatie: . + +- Upgrade geïnstalleerde pakketten naar de nieuwste beschikbare versies: + +`sudo dnf upgrade` + +- Zoek naar pakketten via sleutelwoorden: + +`dnf search {{sleutelwoord1 sleutelwoord2 ...}}` + +- Toon gedetailleerde informatie over een pakket: + +`dnf info {{pakket}}` + +- Installeer nieuwe pakketten (gebruik `-y` om alle prompts automatisch te bevestigen): + +`sudo dnf install {{pakket1 pakket2 ...}}` + +- Verwijder een pakket: + +`sudo dnf remove {{pakket1 pakket2 ...}}` + +- Toon alle geïnstalleerde pakketten: + +`dnf list --installed` + +- Vind welk pakket voorziet van een bepaald commando: + +`dnf provides {{commando}}` + +- Toon alle historische operaties: + +`dnf history` diff --git a/pages.nl/linux/ip-route-list.md b/pages.nl/linux/ip-route-list.md new file mode 100644 index 0000000000..b7fb6dc220 --- /dev/null +++ b/pages.nl/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> Dit commando is een alias van `ip-route-show`. + +- Bekijk de documentatie van het originele commando: + +`tldr ip-route-show` diff --git a/pages.nl/linux/megadl.md b/pages.nl/linux/megadl.md new file mode 100644 index 0000000000..a8a2ca9d9e --- /dev/null +++ b/pages.nl/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> Dit commando is een alias van `megatools-dl`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr megatools-dl` diff --git a/pages.nl/linux/ubuntu-bug.md b/pages.nl/linux/ubuntu-bug.md new file mode 100644 index 0000000000..957153390c --- /dev/null +++ b/pages.nl/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> Dit commando is een alias van `apport-bug`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr apport-bug` diff --git a/pages.nl/osx/aa.md b/pages.nl/osx/aa.md new file mode 100644 index 0000000000..07bd3d2b57 --- /dev/null +++ b/pages.nl/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> Dit commando is een alias van `yaa`. + +- Bekijk de documentatie van het originele commando: + +`tldr yaa` diff --git a/pages.nl/osx/du.md b/pages.nl/osx/du.md index 2045c4a063..a9f9267fb9 100644 --- a/pages.nl/osx/du.md +++ b/pages.nl/osx/du.md @@ -1,28 +1,28 @@ # du -> Disk gebruik: schat en groepeer bestand en directory ruimte gebruik. +> Disk gebruik: schat en groepeer bestand en map ruimte gebruik. > Meer informatie: . -- Toont de grootte van een directory en mogelijke sub-directories, met een gegeven eenheid (KiB/MiB/GiB): +- Toont de grootte van een map en mogelijke sub-mappen, met een gegeven eenheid (KiB/MiB/GiB): -`du -{{k|m|g}} {{pad/naar/directory}}` +`du -{{k|m|g}} {{pad/naar/map}}` -- Toont de grootte van een directory en mogelijke sub-directories, met een leesbaar unit formaat (bijvoorbeeld door het automatisch kiezen van een eenheid gebaseerd op grootte)): +- Toont de grootte van een map en mogelijke sub-mappen, met een leesbaar unit formaat (bijvoorbeeld door het automatisch kiezen van een eenheid gebaseerd op grootte)): -`du -h {{pad/naar/directory}}` +`du -h {{pad/naar/map}}` -- Toont de grootte van een enkele directory met een leesbaar eenheid formaat: +- Toont de grootte van een enkele map met een leesbaar eenheid formaat: -`du -sh {{pad/naar/directory}}` +`du -sh {{pad/naar/map}}` -- Toont de grootte in leesbare vorm van een directory met alle bestanden en directories: +- Toont de grootte in leesbare vorm van een map met alle bestanden en mappen: -`du -ah {{pad/naar/directory}}` +`du -ah {{pad/naar/map}}` -- Toont de grootte in leesbare vorm van een directory en alle sub-directories tot N niveaus diep: +- Toont de grootte in leesbare vorm van een map en alle sub-mappen tot N niveaus diep: -`du -h -d {{N}} {{pad/naar/directory}}` +`du -h -d {{N}} {{pad/naar/map}}` -- Toont de grootte in leesbare vorm van alle `.jpg` bestanden in sub-directories van de huidige directory en laat een cumulatief totaal zien op het eind: +- Toont de grootte in leesbare vorm van alle `.jpg` bestanden in sub-mappen van de huidige map en laat een cumulatief totaal zien op het eind: `du -ch {{*/*.jpg}}` diff --git a/pages.nl/osx/g[.md b/pages.nl/osx/g[.md new file mode 100644 index 0000000000..27e72af7a0 --- /dev/null +++ b/pages.nl/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> Dit commando is een alias van `-p linux [`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux [` diff --git a/pages.nl/osx/gawk.md b/pages.nl/osx/gawk.md new file mode 100644 index 0000000000..9b7f0bc6ac --- /dev/null +++ b/pages.nl/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> Dit commando is een alias van `-p linux awk`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux awk` diff --git a/pages.nl/osx/gb2sum.md b/pages.nl/osx/gb2sum.md new file mode 100644 index 0000000000..2ecd049272 --- /dev/null +++ b/pages.nl/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> Dit commando is een alias van `-p linux b2sum`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux b2sum` diff --git a/pages.nl/osx/gbase32.md b/pages.nl/osx/gbase32.md new file mode 100644 index 0000000000..91abd5796f --- /dev/null +++ b/pages.nl/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> Dit commando is een alias van `-p linux base32`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux base32` diff --git a/pages.nl/osx/gbase64.md b/pages.nl/osx/gbase64.md new file mode 100644 index 0000000000..506c5b2872 --- /dev/null +++ b/pages.nl/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> Dit commando is een alias van `-p linux base64`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux base64` diff --git a/pages.nl/osx/gbasename.md b/pages.nl/osx/gbasename.md new file mode 100644 index 0000000000..634edb59e4 --- /dev/null +++ b/pages.nl/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> Dit commando is een alias van `-p linux basename`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux basename` diff --git a/pages.nl/osx/gbasenc.md b/pages.nl/osx/gbasenc.md new file mode 100644 index 0000000000..8f13f31474 --- /dev/null +++ b/pages.nl/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> Dit commando is een alias van `-p linux basenc`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux basenc` diff --git a/pages.nl/osx/gcat.md b/pages.nl/osx/gcat.md new file mode 100644 index 0000000000..e39961a9aa --- /dev/null +++ b/pages.nl/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> Dit commando is een alias van `-p linux cat`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux cat` diff --git a/pages.nl/osx/gchcon.md b/pages.nl/osx/gchcon.md new file mode 100644 index 0000000000..6855459a45 --- /dev/null +++ b/pages.nl/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> Dit commando is een alias van `-p linux chcon`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux chcon` diff --git a/pages.nl/osx/gchgrp.md b/pages.nl/osx/gchgrp.md new file mode 100644 index 0000000000..92abef9ff9 --- /dev/null +++ b/pages.nl/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> Dit commando is een alias van `-p linux chgrp`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux chgrp` diff --git a/pages.nl/osx/gchmod.md b/pages.nl/osx/gchmod.md new file mode 100644 index 0000000000..ea08651870 --- /dev/null +++ b/pages.nl/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> Dit commando is een alias van `-p linux chmod`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux chmod` diff --git a/pages.nl/osx/gchown.md b/pages.nl/osx/gchown.md new file mode 100644 index 0000000000..50ae518afb --- /dev/null +++ b/pages.nl/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> Dit commando is een alias van `-p linux chown`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux chown` diff --git a/pages.nl/osx/gchroot.md b/pages.nl/osx/gchroot.md new file mode 100644 index 0000000000..3ad3eab163 --- /dev/null +++ b/pages.nl/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> Dit commando is een alias van `-p linux chroot`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux chroot` diff --git a/pages.nl/osx/gcksum.md b/pages.nl/osx/gcksum.md new file mode 100644 index 0000000000..e282698bb4 --- /dev/null +++ b/pages.nl/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> Dit commando is een alias van `-p linux cksum`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux cksum` diff --git a/pages.nl/osx/gcomm.md b/pages.nl/osx/gcomm.md new file mode 100644 index 0000000000..94b57e3253 --- /dev/null +++ b/pages.nl/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> Dit commando is een alias van `-p linux comm`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux comm` diff --git a/pages.nl/osx/gcp.md b/pages.nl/osx/gcp.md new file mode 100644 index 0000000000..c5b6d30b8d --- /dev/null +++ b/pages.nl/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> Dit commando is een alias van `-p linux cp`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux cp` diff --git a/pages.nl/osx/gcsplit.md b/pages.nl/osx/gcsplit.md new file mode 100644 index 0000000000..b9ce4bc233 --- /dev/null +++ b/pages.nl/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> Dit commando is een alias van `-p linux csplit`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux csplit` diff --git a/pages.nl/osx/gcut.md b/pages.nl/osx/gcut.md new file mode 100644 index 0000000000..7f7ec768a6 --- /dev/null +++ b/pages.nl/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> Dit commando is een alias van `-p linux cut`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux cut` diff --git a/pages.nl/osx/gdate.md b/pages.nl/osx/gdate.md new file mode 100644 index 0000000000..ee3cf05b3f --- /dev/null +++ b/pages.nl/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> Dit commando is een alias van `-p linux date`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux date` diff --git a/pages.nl/osx/gdd.md b/pages.nl/osx/gdd.md new file mode 100644 index 0000000000..6ab8d129fd --- /dev/null +++ b/pages.nl/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> Dit commando is een alias van `-p linux dd`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux dd` diff --git a/pages.nl/osx/gdf.md b/pages.nl/osx/gdf.md new file mode 100644 index 0000000000..b1c423aab8 --- /dev/null +++ b/pages.nl/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> Dit commando is een alias van `-p linux df`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux df` diff --git a/pages.nl/osx/gdir.md b/pages.nl/osx/gdir.md new file mode 100644 index 0000000000..80c0fd8a67 --- /dev/null +++ b/pages.nl/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> Dit commando is een alias van `-p linux dir`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux dir` diff --git a/pages.nl/osx/gdircolors.md b/pages.nl/osx/gdircolors.md new file mode 100644 index 0000000000..1fc8b7d058 --- /dev/null +++ b/pages.nl/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> Dit commando is een alias van `-p linux dircolors`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux dircolors` diff --git a/pages.nl/osx/gdirname.md b/pages.nl/osx/gdirname.md new file mode 100644 index 0000000000..54df92dd0a --- /dev/null +++ b/pages.nl/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> Dit commando is een alias van `-p linux dirname`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux dirname` diff --git a/pages.nl/osx/gdnsdomainname.md b/pages.nl/osx/gdnsdomainname.md new file mode 100644 index 0000000000..8ace7f0c68 --- /dev/null +++ b/pages.nl/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> Dit commando is een alias van `-p linux dnsdomainname`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux dnsdomainname` diff --git a/pages.nl/osx/gecho.md b/pages.nl/osx/gecho.md new file mode 100644 index 0000000000..2fd76c6c44 --- /dev/null +++ b/pages.nl/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> Dit commando is een alias van `-p linux echo`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux echo` diff --git a/pages.nl/osx/ged.md b/pages.nl/osx/ged.md new file mode 100644 index 0000000000..a6e7b22991 --- /dev/null +++ b/pages.nl/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> Dit commando is een alias van `-p linux ed`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux ed` diff --git a/pages.nl/osx/gegrep.md b/pages.nl/osx/gegrep.md new file mode 100644 index 0000000000..e16edf36fa --- /dev/null +++ b/pages.nl/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> Dit commando is een alias van `-p linux egrep`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux egrep` diff --git a/pages.nl/osx/genv.md b/pages.nl/osx/genv.md new file mode 100644 index 0000000000..cff272795c --- /dev/null +++ b/pages.nl/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> Dit commando is een alias van `-p linux env`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux env` diff --git a/pages.nl/osx/gexpand.md b/pages.nl/osx/gexpand.md new file mode 100644 index 0000000000..b1d6ed621b --- /dev/null +++ b/pages.nl/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> Dit commando is een alias van `-p linux expand`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux expand` diff --git a/pages.nl/osx/gexpr.md b/pages.nl/osx/gexpr.md new file mode 100644 index 0000000000..dbf91e0369 --- /dev/null +++ b/pages.nl/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> Dit commando is een alias van `-p linux expr`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux expr` diff --git a/pages.nl/osx/gfactor.md b/pages.nl/osx/gfactor.md new file mode 100644 index 0000000000..5c0599636f --- /dev/null +++ b/pages.nl/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> Dit commando is een alias van `-p linux factor`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux factor` diff --git a/pages.nl/osx/gfalse.md b/pages.nl/osx/gfalse.md new file mode 100644 index 0000000000..175a64a677 --- /dev/null +++ b/pages.nl/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> Dit commando is een alias van `-p linux false`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux false` diff --git a/pages.nl/osx/gfgrep.md b/pages.nl/osx/gfgrep.md new file mode 100644 index 0000000000..3d37950ae5 --- /dev/null +++ b/pages.nl/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> Dit commando is een alias van `-p linux fgrep`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux fgrep` diff --git a/pages.nl/osx/gfind.md b/pages.nl/osx/gfind.md new file mode 100644 index 0000000000..937aa70c19 --- /dev/null +++ b/pages.nl/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> Dit commando is een alias van `-p linux find`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux find` diff --git a/pages.nl/osx/gfmt.md b/pages.nl/osx/gfmt.md new file mode 100644 index 0000000000..3368d5ae74 --- /dev/null +++ b/pages.nl/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> Dit commando is een alias van `-p linux fmt`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux fmt` diff --git a/pages.nl/osx/gfold.md b/pages.nl/osx/gfold.md new file mode 100644 index 0000000000..491806c0ca --- /dev/null +++ b/pages.nl/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> Dit commando is een alias van `-p linux fold`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux fold` diff --git a/pages.nl/osx/gftp.md b/pages.nl/osx/gftp.md new file mode 100644 index 0000000000..f43ed028b0 --- /dev/null +++ b/pages.nl/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> Dit commando is een alias van `-p linux ftp`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux ftp` diff --git a/pages.nl/osx/ggrep.md b/pages.nl/osx/ggrep.md new file mode 100644 index 0000000000..bf995ff1ee --- /dev/null +++ b/pages.nl/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> Dit commando is een alias van `-p linux grep`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux grep` diff --git a/pages.nl/osx/ggroups.md b/pages.nl/osx/ggroups.md new file mode 100644 index 0000000000..0f4c995cb8 --- /dev/null +++ b/pages.nl/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> Dit commando is een alias van `-p linux groups`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux groups` diff --git a/pages.nl/osx/ghead.md b/pages.nl/osx/ghead.md new file mode 100644 index 0000000000..2a2dff5a51 --- /dev/null +++ b/pages.nl/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> Dit commando is een alias van `-p linux head`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux head` diff --git a/pages.nl/osx/ghostid.md b/pages.nl/osx/ghostid.md new file mode 100644 index 0000000000..3f2bfc08f9 --- /dev/null +++ b/pages.nl/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> Dit commando is een alias van `-p linux hostid`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux hostid` diff --git a/pages.nl/osx/ghostname.md b/pages.nl/osx/ghostname.md new file mode 100644 index 0000000000..acecef030a --- /dev/null +++ b/pages.nl/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> Dit commando is een alias van `-p linux hostname`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux hostname` diff --git a/pages.nl/osx/gid.md b/pages.nl/osx/gid.md new file mode 100644 index 0000000000..0a973ccd5b --- /dev/null +++ b/pages.nl/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> Dit commando is een alias van `-p linux id`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux id` diff --git a/pages.nl/osx/gifconfig.md b/pages.nl/osx/gifconfig.md new file mode 100644 index 0000000000..6915efdcc0 --- /dev/null +++ b/pages.nl/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> Dit commando is een alias van `-p linux ifconfig`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux ifconfig` diff --git a/pages.nl/osx/gindent.md b/pages.nl/osx/gindent.md new file mode 100644 index 0000000000..dfc6842c9b --- /dev/null +++ b/pages.nl/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> Dit commando is een alias van `-p linux indent`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux indent` diff --git a/pages.nl/osx/ginstall.md b/pages.nl/osx/ginstall.md new file mode 100644 index 0000000000..27a817a0a2 --- /dev/null +++ b/pages.nl/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> Dit commando is een alias van `-p linux install`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux install` diff --git a/pages.nl/osx/gjoin.md b/pages.nl/osx/gjoin.md new file mode 100644 index 0000000000..b4218cbdc3 --- /dev/null +++ b/pages.nl/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> Dit commando is een alias van `-p linux join`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux join` diff --git a/pages.nl/osx/gkill.md b/pages.nl/osx/gkill.md new file mode 100644 index 0000000000..dd31553756 --- /dev/null +++ b/pages.nl/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> Dit commando is een alias van `-p linux kill`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux kill` diff --git a/pages.nl/osx/glibtool.md b/pages.nl/osx/glibtool.md new file mode 100644 index 0000000000..bc13155547 --- /dev/null +++ b/pages.nl/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> Dit commando is een alias van `-p linux libtool`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux libtool` diff --git a/pages.nl/osx/glibtoolize.md b/pages.nl/osx/glibtoolize.md new file mode 100644 index 0000000000..cd975741a4 --- /dev/null +++ b/pages.nl/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> Dit commando is een alias van `-p linux libtoolize`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux libtoolize` diff --git a/pages.nl/osx/glink.md b/pages.nl/osx/glink.md new file mode 100644 index 0000000000..54bd260b51 --- /dev/null +++ b/pages.nl/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> Dit commando is een alias van `-p linux link`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux link` diff --git a/pages.nl/osx/gln.md b/pages.nl/osx/gln.md new file mode 100644 index 0000000000..82d92fdfa8 --- /dev/null +++ b/pages.nl/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> Dit commando is een alias van `-p linux ln`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux ln` diff --git a/pages.nl/osx/glocate.md b/pages.nl/osx/glocate.md new file mode 100644 index 0000000000..dd0349527c --- /dev/null +++ b/pages.nl/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> Dit commando is een alias van `-p linux locate`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux locate` diff --git a/pages.nl/osx/glogger.md b/pages.nl/osx/glogger.md new file mode 100644 index 0000000000..f328f5f8c4 --- /dev/null +++ b/pages.nl/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> Dit commando is een alias van `-p linux logger`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux logger` diff --git a/pages.nl/osx/glogname.md b/pages.nl/osx/glogname.md new file mode 100644 index 0000000000..ea1f2f8868 --- /dev/null +++ b/pages.nl/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> Dit commando is een alias van `-p linux logname`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux logname` diff --git a/pages.nl/osx/gls.md b/pages.nl/osx/gls.md new file mode 100644 index 0000000000..0868d401e9 --- /dev/null +++ b/pages.nl/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> Dit commando is een alias van `-p linux ls`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux ls` diff --git a/pages.nl/osx/gmake.md b/pages.nl/osx/gmake.md new file mode 100644 index 0000000000..65e8b35fd9 --- /dev/null +++ b/pages.nl/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> Dit commando is een alias van `-p linux make`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux make` diff --git a/pages.nl/osx/gmd5sum.md b/pages.nl/osx/gmd5sum.md new file mode 100644 index 0000000000..3f4272d849 --- /dev/null +++ b/pages.nl/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> Dit commando is een alias van `-p linux md5sum`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux md5sum` diff --git a/pages.nl/osx/gmkdir.md b/pages.nl/osx/gmkdir.md new file mode 100644 index 0000000000..d73177bcb2 --- /dev/null +++ b/pages.nl/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> Dit commando is een alias van `-p linux mkdir`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux mkdir` diff --git a/pages.nl/osx/gmkfifo.md b/pages.nl/osx/gmkfifo.md new file mode 100644 index 0000000000..297d07a784 --- /dev/null +++ b/pages.nl/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> Dit commando is een alias van `-p linux mkfifo`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux mkfifo` diff --git a/pages.nl/osx/gmknod.md b/pages.nl/osx/gmknod.md new file mode 100644 index 0000000000..9c428e4f79 --- /dev/null +++ b/pages.nl/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> Dit commando is een alias van `-p linux mknod`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux mknod` diff --git a/pages.nl/osx/gmktemp.md b/pages.nl/osx/gmktemp.md new file mode 100644 index 0000000000..784ad1ff7d --- /dev/null +++ b/pages.nl/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> Dit commando is een alias van `-p linux mktemp`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux mktemp` diff --git a/pages.nl/osx/gmv.md b/pages.nl/osx/gmv.md new file mode 100644 index 0000000000..68ab883c16 --- /dev/null +++ b/pages.nl/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> Dit commando is een alias van `-p linux mv`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux mv` diff --git a/pages.nl/osx/gnice.md b/pages.nl/osx/gnice.md new file mode 100644 index 0000000000..1abbf0d1fb --- /dev/null +++ b/pages.nl/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> Dit commando is een alias van `-p linux nice`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux nice` diff --git a/pages.nl/osx/gnl.md b/pages.nl/osx/gnl.md new file mode 100644 index 0000000000..36519bb6bf --- /dev/null +++ b/pages.nl/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> Dit commando is een alias van `-p linux nl`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux nl` diff --git a/pages.nl/osx/gnohup.md b/pages.nl/osx/gnohup.md new file mode 100644 index 0000000000..5682d82ad7 --- /dev/null +++ b/pages.nl/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> Dit commando is een alias van `-p linux nohup`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux nohup` diff --git a/pages.nl/osx/gnproc.md b/pages.nl/osx/gnproc.md new file mode 100644 index 0000000000..00b01dd18e --- /dev/null +++ b/pages.nl/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> Dit commando is een alias van `-p linux nproc`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux nproc` diff --git a/pages.nl/osx/gnumfmt.md b/pages.nl/osx/gnumfmt.md new file mode 100644 index 0000000000..4fbffd62f6 --- /dev/null +++ b/pages.nl/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> Dit commando is een alias van `-p linux numfmt`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux numfmt` diff --git a/pages.nl/osx/god.md b/pages.nl/osx/god.md new file mode 100644 index 0000000000..2b5ac5aef1 --- /dev/null +++ b/pages.nl/osx/god.md @@ -0,0 +1,7 @@ +# god + +> Dit commando is een alias van `-p linux od`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux od` diff --git a/pages.nl/osx/gpaste.md b/pages.nl/osx/gpaste.md new file mode 100644 index 0000000000..0241c4b325 --- /dev/null +++ b/pages.nl/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> Dit commando is een alias van `-p linux paste`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux paste` diff --git a/pages.nl/osx/gpathchk.md b/pages.nl/osx/gpathchk.md new file mode 100644 index 0000000000..688dc7a663 --- /dev/null +++ b/pages.nl/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> Dit commando is een alias van `-p linux pathchk`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux pathchk` diff --git a/pages.nl/osx/gping.md b/pages.nl/osx/gping.md new file mode 100644 index 0000000000..dbf6ee0408 --- /dev/null +++ b/pages.nl/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> Dit commando is een alias van `-p linux ping`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux ping` diff --git a/pages.nl/osx/gping6.md b/pages.nl/osx/gping6.md new file mode 100644 index 0000000000..c381978ec2 --- /dev/null +++ b/pages.nl/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> Dit commando is een alias van `-p linux ping6`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux ping6` diff --git a/pages.nl/osx/gpinky.md b/pages.nl/osx/gpinky.md new file mode 100644 index 0000000000..d7f184bf03 --- /dev/null +++ b/pages.nl/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> Dit commando is een alias van `-p linux pinky`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux pinky` diff --git a/pages.nl/osx/gpr.md b/pages.nl/osx/gpr.md new file mode 100644 index 0000000000..b4d46adad6 --- /dev/null +++ b/pages.nl/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> Dit commando is een alias van `-p linux pr`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux pr` diff --git a/pages.nl/osx/gprintenv.md b/pages.nl/osx/gprintenv.md new file mode 100644 index 0000000000..db026266ce --- /dev/null +++ b/pages.nl/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> Dit commando is een alias van `-p linux printenv`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux printenv` diff --git a/pages.nl/osx/gprintf.md b/pages.nl/osx/gprintf.md new file mode 100644 index 0000000000..cdc3e3d6d5 --- /dev/null +++ b/pages.nl/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> Dit commando is een alias van `-p linux printf`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux printf` diff --git a/pages.nl/osx/gptx.md b/pages.nl/osx/gptx.md new file mode 100644 index 0000000000..8c5b62e89b --- /dev/null +++ b/pages.nl/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> Dit commando is een alias van `-p linux ptx`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux ptx` diff --git a/pages.nl/osx/gpwd.md b/pages.nl/osx/gpwd.md new file mode 100644 index 0000000000..5ce42d612e --- /dev/null +++ b/pages.nl/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> Dit commando is een alias van `-p linux pwd`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux pwd` diff --git a/pages.nl/osx/grcp.md b/pages.nl/osx/grcp.md new file mode 100644 index 0000000000..e11f0a48ca --- /dev/null +++ b/pages.nl/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> Dit commando is een alias van `-p linux rcp`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux rcp` diff --git a/pages.nl/osx/greadlink.md b/pages.nl/osx/greadlink.md new file mode 100644 index 0000000000..7fd34eefed --- /dev/null +++ b/pages.nl/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> Dit commando is een alias van `-p linux readlink`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux readlink` diff --git a/pages.nl/osx/grealpath.md b/pages.nl/osx/grealpath.md new file mode 100644 index 0000000000..c6c7e5a9a6 --- /dev/null +++ b/pages.nl/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> Dit commando is een alias van `-p linux realpath`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux realpath` diff --git a/pages.nl/osx/grexec.md b/pages.nl/osx/grexec.md new file mode 100644 index 0000000000..c49910b199 --- /dev/null +++ b/pages.nl/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> Dit commando is een alias van `-p linux rexec`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux rexec` diff --git a/pages.nl/osx/grlogin.md b/pages.nl/osx/grlogin.md new file mode 100644 index 0000000000..a5f4cf61ed --- /dev/null +++ b/pages.nl/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> Dit commando is een alias van `-p linux rlogin`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux rlogin` diff --git a/pages.nl/osx/grm.md b/pages.nl/osx/grm.md new file mode 100644 index 0000000000..7f8572de1c --- /dev/null +++ b/pages.nl/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> Dit commando is een alias van `-p linux rm`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux rm` diff --git a/pages.nl/osx/grmdir.md b/pages.nl/osx/grmdir.md new file mode 100644 index 0000000000..e6b2c7dcde --- /dev/null +++ b/pages.nl/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> Dit commando is een alias van `-p linux rmdir`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux rmdir` diff --git a/pages.nl/osx/grsh.md b/pages.nl/osx/grsh.md new file mode 100644 index 0000000000..8c8f0d91b2 --- /dev/null +++ b/pages.nl/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> Dit commando is een alias van `-p linux rsh`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux rsh` diff --git a/pages.nl/osx/gruncon.md b/pages.nl/osx/gruncon.md new file mode 100644 index 0000000000..ba5865f870 --- /dev/null +++ b/pages.nl/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> Dit commando is een alias van `-p linux runcon`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux runcon` diff --git a/pages.nl/osx/gsed.md b/pages.nl/osx/gsed.md new file mode 100644 index 0000000000..090a2fe26a --- /dev/null +++ b/pages.nl/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> Dit commando is een alias van `-p linux sed`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux sed` diff --git a/pages.nl/osx/gseq.md b/pages.nl/osx/gseq.md new file mode 100644 index 0000000000..a95522bbc6 --- /dev/null +++ b/pages.nl/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> Dit commando is een alias van `-p linux seq`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux seq` diff --git a/pages.nl/osx/gsha1sum.md b/pages.nl/osx/gsha1sum.md new file mode 100644 index 0000000000..a4a2cd7fa8 --- /dev/null +++ b/pages.nl/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> Dit commando is een alias van `-p linux sha1sum`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux sha1sum` diff --git a/pages.nl/osx/gsha224sum.md b/pages.nl/osx/gsha224sum.md new file mode 100644 index 0000000000..4f4a1f34d8 --- /dev/null +++ b/pages.nl/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> Dit commando is een alias van `-p linux sha224sum`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux sha224sum` diff --git a/pages.nl/osx/gsha256sum.md b/pages.nl/osx/gsha256sum.md new file mode 100644 index 0000000000..10c70d2ceb --- /dev/null +++ b/pages.nl/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> Dit commando is een alias van `-p linux sha256sum`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux sha256sum` diff --git a/pages.nl/osx/gsha384sum.md b/pages.nl/osx/gsha384sum.md new file mode 100644 index 0000000000..4fe4f30c13 --- /dev/null +++ b/pages.nl/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> Dit commando is een alias van `-p linux sha384sum`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux sha384sum` diff --git a/pages.nl/osx/gsha512sum.md b/pages.nl/osx/gsha512sum.md new file mode 100644 index 0000000000..2e77c0cb5f --- /dev/null +++ b/pages.nl/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> Dit commando is een alias van `-p linux sha512sum`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux sha512sum` diff --git a/pages.nl/osx/gshred.md b/pages.nl/osx/gshred.md new file mode 100644 index 0000000000..16ca605471 --- /dev/null +++ b/pages.nl/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> Dit commando is een alias van `-p linux shred`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux shred` diff --git a/pages.nl/osx/gshuf.md b/pages.nl/osx/gshuf.md new file mode 100644 index 0000000000..a724f02724 --- /dev/null +++ b/pages.nl/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> Dit commando is een alias van `-p linux shuf`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux shuf` diff --git a/pages.nl/osx/gsleep.md b/pages.nl/osx/gsleep.md new file mode 100644 index 0000000000..009f650f6b --- /dev/null +++ b/pages.nl/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> Dit commando is een alias van `-p linux sleep`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux sleep` diff --git a/pages.nl/osx/gsort.md b/pages.nl/osx/gsort.md new file mode 100644 index 0000000000..f0f77dfedc --- /dev/null +++ b/pages.nl/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> Dit commando is een alias van `-p linux sort`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux sort` diff --git a/pages.nl/osx/gsplit.md b/pages.nl/osx/gsplit.md new file mode 100644 index 0000000000..00e6cf018d --- /dev/null +++ b/pages.nl/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> Dit commando is een alias van `-p linux split`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux split` diff --git a/pages.nl/osx/gstat.md b/pages.nl/osx/gstat.md new file mode 100644 index 0000000000..019469e0a2 --- /dev/null +++ b/pages.nl/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> Dit commando is een alias van `-p linux stat`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux stat` diff --git a/pages.nl/osx/gstdbuf.md b/pages.nl/osx/gstdbuf.md new file mode 100644 index 0000000000..972b5420ae --- /dev/null +++ b/pages.nl/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> Dit commando is een alias van `-p linux stdbuf`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux stdbuf` diff --git a/pages.nl/osx/gstty.md b/pages.nl/osx/gstty.md new file mode 100644 index 0000000000..c7f74559a0 --- /dev/null +++ b/pages.nl/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> Dit commando is een alias van `-p linux stty`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux stty` diff --git a/pages.nl/osx/gsum.md b/pages.nl/osx/gsum.md new file mode 100644 index 0000000000..77ff703356 --- /dev/null +++ b/pages.nl/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> Dit commando is een alias van `-p linux sum`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux sum` diff --git a/pages.nl/osx/gsync.md b/pages.nl/osx/gsync.md new file mode 100644 index 0000000000..9df5cd3c08 --- /dev/null +++ b/pages.nl/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> Dit commando is een alias van `-p linux sync`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux sync` diff --git a/pages.nl/osx/gtac.md b/pages.nl/osx/gtac.md new file mode 100644 index 0000000000..d2ca760448 --- /dev/null +++ b/pages.nl/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> Dit commando is een alias van `-p linux tac`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux tac` diff --git a/pages.nl/osx/gtail.md b/pages.nl/osx/gtail.md new file mode 100644 index 0000000000..43bc5abd2f --- /dev/null +++ b/pages.nl/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> Dit commando is een alias van `-p linux tail`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux tail` diff --git a/pages.nl/osx/gtalk.md b/pages.nl/osx/gtalk.md new file mode 100644 index 0000000000..83f8a7b658 --- /dev/null +++ b/pages.nl/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> Dit commando is een alias van `-p linux talk`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux talk` diff --git a/pages.nl/osx/gtar.md b/pages.nl/osx/gtar.md new file mode 100644 index 0000000000..780f927cf2 --- /dev/null +++ b/pages.nl/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> Dit commando is een alias van `-p linux tar`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux tar` diff --git a/pages.nl/osx/gtee.md b/pages.nl/osx/gtee.md new file mode 100644 index 0000000000..01c2c94842 --- /dev/null +++ b/pages.nl/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> Dit commando is een alias van `-p linux tee`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux tee` diff --git a/pages.nl/osx/gtelnet.md b/pages.nl/osx/gtelnet.md new file mode 100644 index 0000000000..8fd92ea016 --- /dev/null +++ b/pages.nl/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> Dit commando is een alias van `-p linux telnet`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux telnet` diff --git a/pages.nl/osx/gtest.md b/pages.nl/osx/gtest.md new file mode 100644 index 0000000000..aa4c307e18 --- /dev/null +++ b/pages.nl/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> Dit commando is een alias van `-p linux test`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux test` diff --git a/pages.nl/osx/gtftp.md b/pages.nl/osx/gtftp.md new file mode 100644 index 0000000000..d44fbb4a55 --- /dev/null +++ b/pages.nl/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> Dit commando is een alias van `-p linux tftp`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux tftp` diff --git a/pages.nl/osx/gtime.md b/pages.nl/osx/gtime.md new file mode 100644 index 0000000000..3c7ea0d13a --- /dev/null +++ b/pages.nl/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> Dit commando is een alias van `-p linux time`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux time` diff --git a/pages.nl/osx/gtimeout.md b/pages.nl/osx/gtimeout.md new file mode 100644 index 0000000000..69d895db9e --- /dev/null +++ b/pages.nl/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> Dit commando is een alias van `-p linux timeout`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux timeout` diff --git a/pages.nl/osx/gtouch.md b/pages.nl/osx/gtouch.md new file mode 100644 index 0000000000..b0f09b4c1b --- /dev/null +++ b/pages.nl/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> Dit commando is een alias van `-p linux touch`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux touch` diff --git a/pages.nl/osx/gtr.md b/pages.nl/osx/gtr.md new file mode 100644 index 0000000000..b1c808460b --- /dev/null +++ b/pages.nl/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> Dit commando is een alias van `-p linux tr`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux tr` diff --git a/pages.nl/osx/gtraceroute.md b/pages.nl/osx/gtraceroute.md new file mode 100644 index 0000000000..5443bddcd0 --- /dev/null +++ b/pages.nl/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> Dit commando is een alias van `-p linux traceroute`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux traceroute` diff --git a/pages.nl/osx/gtrue.md b/pages.nl/osx/gtrue.md new file mode 100644 index 0000000000..59ad2a93ca --- /dev/null +++ b/pages.nl/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> Dit commando is een alias van `-p linux true`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux true` diff --git a/pages.nl/osx/gtruncate.md b/pages.nl/osx/gtruncate.md new file mode 100644 index 0000000000..8e09f2d3e2 --- /dev/null +++ b/pages.nl/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> Dit commando is een alias van `-p linux truncate`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux truncate` diff --git a/pages.nl/osx/gtsort.md b/pages.nl/osx/gtsort.md new file mode 100644 index 0000000000..24a72e89b9 --- /dev/null +++ b/pages.nl/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> Dit commando is een alias van `-p linux tsort`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux tsort` diff --git a/pages.nl/osx/gtty.md b/pages.nl/osx/gtty.md new file mode 100644 index 0000000000..ef217049bf --- /dev/null +++ b/pages.nl/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> Dit commando is een alias van `-p linux tty`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux tty` diff --git a/pages.nl/osx/guname.md b/pages.nl/osx/guname.md new file mode 100644 index 0000000000..ff29c64c83 --- /dev/null +++ b/pages.nl/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> Dit commando is een alias van `-p linux uname`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux uname` diff --git a/pages.nl/osx/gunexpand.md b/pages.nl/osx/gunexpand.md new file mode 100644 index 0000000000..1c2511e931 --- /dev/null +++ b/pages.nl/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> Dit commando is een alias van `-p linux unexpand`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux unexpand` diff --git a/pages.nl/osx/guniq.md b/pages.nl/osx/guniq.md new file mode 100644 index 0000000000..83d823b09e --- /dev/null +++ b/pages.nl/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> Dit commando is een alias van `-p linux uniq`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux uniq` diff --git a/pages.nl/osx/gunits.md b/pages.nl/osx/gunits.md new file mode 100644 index 0000000000..daa41f290f --- /dev/null +++ b/pages.nl/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> Dit commando is een alias van `-p linux units`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux units` diff --git a/pages.nl/osx/gunlink.md b/pages.nl/osx/gunlink.md new file mode 100644 index 0000000000..5a90c4dda5 --- /dev/null +++ b/pages.nl/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> Dit commando is een alias van `-p linux unlink`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux unlink` diff --git a/pages.nl/osx/gupdatedb.md b/pages.nl/osx/gupdatedb.md new file mode 100644 index 0000000000..6695f61ac0 --- /dev/null +++ b/pages.nl/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> Dit commando is een alias van `-p linux updatedb`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux updatedb` diff --git a/pages.nl/osx/guptime.md b/pages.nl/osx/guptime.md new file mode 100644 index 0000000000..7f3d34a4e9 --- /dev/null +++ b/pages.nl/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> Dit commando is een alias van `-p linux uptime`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux uptime` diff --git a/pages.nl/osx/gusers.md b/pages.nl/osx/gusers.md new file mode 100644 index 0000000000..95ee20cd71 --- /dev/null +++ b/pages.nl/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> Dit commando is een alias van `-p linux users`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux users` diff --git a/pages.nl/osx/gvdir.md b/pages.nl/osx/gvdir.md new file mode 100644 index 0000000000..5e71180a51 --- /dev/null +++ b/pages.nl/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> Dit commando is een alias van `-p linux vdir`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux vdir` diff --git a/pages.nl/osx/gwc.md b/pages.nl/osx/gwc.md new file mode 100644 index 0000000000..47611f5308 --- /dev/null +++ b/pages.nl/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> Dit commando is een alias van `-p linux wc`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux wc` diff --git a/pages.nl/osx/gwhich.md b/pages.nl/osx/gwhich.md new file mode 100644 index 0000000000..0352258e3c --- /dev/null +++ b/pages.nl/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> Dit commando is een alias van `-p linux which`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux which` diff --git a/pages.nl/osx/gwho.md b/pages.nl/osx/gwho.md new file mode 100644 index 0000000000..c2f0b752c5 --- /dev/null +++ b/pages.nl/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> Dit commando is een alias van `-p linux who`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux who` diff --git a/pages.nl/osx/gwhoami.md b/pages.nl/osx/gwhoami.md new file mode 100644 index 0000000000..fb432ef52c --- /dev/null +++ b/pages.nl/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> Dit commando is een alias van `-p linux whoami`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux whoami` diff --git a/pages.nl/osx/gwhois.md b/pages.nl/osx/gwhois.md new file mode 100644 index 0000000000..31de405f7c --- /dev/null +++ b/pages.nl/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> Dit commando is een alias van `-p linux whois`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux whois` diff --git a/pages.nl/osx/gxargs.md b/pages.nl/osx/gxargs.md new file mode 100644 index 0000000000..ea80e50bb0 --- /dev/null +++ b/pages.nl/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> Dit commando is een alias van `-p linux xargs`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux xargs` diff --git a/pages.nl/osx/gyes.md b/pages.nl/osx/gyes.md new file mode 100644 index 0000000000..4a135c3558 --- /dev/null +++ b/pages.nl/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> Dit commando is een alias van `-p linux yes`. + +- Bekijk de documentatie van het originele commando: + +`tldr -p linux yes` diff --git a/pages.nl/osx/launchctl.md b/pages.nl/osx/launchctl.md new file mode 100644 index 0000000000..f026075150 --- /dev/null +++ b/pages.nl/osx/launchctl.md @@ -0,0 +1,33 @@ +# launchctl + +> Beheer Apple's `launchd` manager voor launch daemons (systeembrede diensten) en launch agents (programma's per gebruiker). +> `launchd` laadt op XML gebaseerde `*.plist`-bestanden die op de juiste locaties zijn geplaatst, en voert de corresponderende commando's uit volgens hun gedefinieerde schema. +> Meer informatie: . + +- Activeer een gebruikersspecifieke agent die in `launchd` moet worden geladen wanneer de gebruiker inlogt: + +`launchctl load ~/Library/LaunchAgents/{{my_script}}.plist` + +- Activeer een agent die root-rechten vereist om te kunnen werken en/of moet worden geladen wanneer een gebruiker inlogt (let op de afwezigheid van `~` in het pad): + +`sudo launchctl load /Library/LaunchAgents/{{root_script}}.plist` + +- Activeer een systeembrede daemon die moet worden geladen wanneer het systeem opstart (zelfs als er geen gebruiker inlogt): + +`sudo launchctl load /Library/LaunchDaemons/{{system_daemon}}.plist` + +- Toon alle geladen agenten/daemons, met de PID als het proces dat ze specificeren momenteel actief is, en de afsluitcode de laatste keer dat ze werden uitgevoerd terugstuurde: + +`launchctl list` + +- Een momenteel geladen agent ontladen, b.v. om wijzigingen aan te brengen (let op: het plist-bestand wordt automatisch in `launchd` geladen na een herstart en/of inloggen): + +`launchctl unload ~/Library/LaunchAgents/{{my_script}}.plist` + +- Voer handmatig een bekende (geladen) agent/daemon uit, zelfs als dit niet het juiste moment is (opmerking: deze opdracht gebruikt het label van de agent, in plaats van de bestandsnaam): + +`launchctl start {{script_bestand}}` + +- Beëindig handmatig het proces dat is gekoppeld aan een bekende agent/daemon, als deze actief is: + +`launchctl stop {{script_bestand}}` diff --git a/pages.nl/osx/launchd.md b/pages.nl/osx/launchd.md new file mode 100644 index 0000000000..485ea3ad5e --- /dev/null +++ b/pages.nl/osx/launchd.md @@ -0,0 +1,13 @@ +# launchd + +> Dit beheert processen, zowel voor het systeem als voor de gebruiker. +> `launchd` kan niet manueel gestart worden, gebruik `launchctl` om ermee te interacteren. +> Meer informatie: . + +- Draai initialisatie: + +`/sbin/launchd` + +- Bekijk de documentatie van het originele commando: + +`tldr launchctl` diff --git a/pages.nl/windows/cd.md b/pages.nl/windows/cd.md index 378eabcf18..83dca0c1d8 100644 --- a/pages.nl/windows/cd.md +++ b/pages.nl/windows/cd.md @@ -3,18 +3,22 @@ > Geeft de naam van de huidige werkmap weer of wijzigt deze. > Meer informatie: . -- Ga naar een directory in dezelfde drive: - -`cd {{pad/naar/directory}}` - -- Geef de naam van de huidige directory weer: +- Geef de naam van de huidige map weer: `cd` -- Ga naar de ouder van de huidige directory: +- Ga naar de hoofdmap: + +`cd \` + +- Ga naar de ouder van de huidige map: `cd ..` -- Ga naar een directory in een andere drive: +- Ga naar een map in dezelfde drive: -`cd {{pad/naar/directory}} /d` +`cd {{pad\naar\map}}` + +- Ga naar een map in een andere drive: + +`cd /d {{C}:{{pad\naar\map}}` diff --git a/pages.nl/windows/chrome.md b/pages.nl/windows/chrome.md new file mode 100644 index 0000000000..8cbebd82b3 --- /dev/null +++ b/pages.nl/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> Dit commando is een alias van `chromium`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr chromium` diff --git a/pages.nl/windows/cpush.md b/pages.nl/windows/cpush.md new file mode 100644 index 0000000000..7fb5822f45 --- /dev/null +++ b/pages.nl/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> Dit commando is een alias van `choco-push`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr choco-push` diff --git a/pages.nl/windows/curl.md b/pages.nl/windows/curl.md new file mode 100644 index 0000000000..48938e3d85 --- /dev/null +++ b/pages.nl/windows/curl.md @@ -0,0 +1,19 @@ +# curl + +> In PowerShell kan dit commando een alias zijn van `Invoke-WebRequest` als het originele `curl` programma () niet correct is geïnstalleerd. + +- Controleer of `curl` correct is geïnstalleerd door het versienummer te printen. Als dit commando resulteert in een error, heeft PowerShell dit commando mogelijk vervangen met `Invoke-WebRequest`: + +`curl --version` + +- Bekijk de documentatie van het originele `curl` commando: + +`tldr curl -p common` + +- Bekijk de documentatie van het originele `curl` commando in een oudere versie van de `tldr` command-line client: + +`tldr curl -o common` + +- Bekijk de documentatie van het PowerShell's `Invoke-WebRequest` commando: + +`tldr invoke-webrequest` diff --git a/pages.nl/windows/dir.md b/pages.nl/windows/dir.md index 9ca4416c50..b0fb5c3e3c 100644 --- a/pages.nl/windows/dir.md +++ b/pages.nl/windows/dir.md @@ -1,20 +1,24 @@ # dir -> Geeft de inhoud weer van een directory. +> Geeft de inhoud weer van een map. > Meer informatie: . - Geef de inhoud weer van de huidige map: `dir` -- Geef de inhoud weer van een gegeven directory: +- Geef de inhoud weer van een gegeven map: -`dir {{pad/naar/directory}}` +`dir {{pad\naar\map}}` -- Geef de inhoud weer van de huidige directory, inclusief verborgen bestanden: +- Geef de inhoud weer van de huidige map, inclusief verborgen bestanden: -`dir /A` +`dir /a` -- Geef de inhoud weer van een gegeven directory, inclusief verborgen bestanden: +- Geef de inhoud weer van een gegeven map, inclusief verborgen bestanden: -`dir {{pad/naar/directory}} /A` +`dir {{pad\naar\map}} /A` + +- Toon een lijst met mappen en bestanden, zonder extra informatie: + +`dir /b` diff --git a/pages.nl/windows/find.md b/pages.nl/windows/find.md index 578c36a710..9bf5c414ee 100644 --- a/pages.nl/windows/find.md +++ b/pages.nl/windows/find.md @@ -5,16 +5,16 @@ - Vind de lijnen dat een specifieke string bevatten: -`find {{string}} {{pad/naar/bestand_of_directory}}` +`find {{string}} {{pad/naar/bestand_of_map}}` - Laat lijnen zie die de string niet bevatten: -`find {{string}} {{pad/naar/bestand_of_directory}} /v` +`find {{string}} {{pad/naar/bestand_of_map}} /v` - Toon het aantal lijnen dat de string bevat: -`find {{string}} {{pad/naar/bestand_of_directory}} /c` +`find {{string}} {{pad/naar/bestand_of_map}} /c` - Laat het aantal lijnen zien samen met de lijnen: -`find {{string}} {{pad/naar/bestand_of_directory}} /n` +`find {{string}} {{pad/naar/bestand_of_map}} /n` diff --git a/pages.nl/windows/iwr.md b/pages.nl/windows/iwr.md new file mode 100644 index 0000000000..4a21189619 --- /dev/null +++ b/pages.nl/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> Dit commando is een alias van `invoke-webrequest`. + +- Bekijk de documentatie van het originele commando: + +`tldr invoke-webrequest` diff --git a/pages.nl/windows/pwsh-where.md b/pages.nl/windows/pwsh-where.md new file mode 100644 index 0000000000..66d0c8ac57 --- /dev/null +++ b/pages.nl/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> Dit commando is een alias van `Where-Object`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr Where-Object` diff --git a/pages.nl/windows/rd.md b/pages.nl/windows/rd.md new file mode 100644 index 0000000000..ec9c074330 --- /dev/null +++ b/pages.nl/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> Dit commando is een alias van `rmdir`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr rmdir` diff --git a/pages.nl/windows/rmdir.md b/pages.nl/windows/rmdir.md index 1b3844ecfc..0ea13017fe 100644 --- a/pages.nl/windows/rmdir.md +++ b/pages.nl/windows/rmdir.md @@ -1,16 +1,16 @@ # rmdir -> Verwijdert een directory en zijn inhoud. +> Verwijdert een map en zijn inhoud. > Meer informatie: . -- Verwijder een lege directory: +- Verwijder een lege map: -`rmdir {{pad/naar/directory}}` +`rmdir {{pad/naar/map}}` -- Verwijder een directory en zen inhoud recursief: +- Verwijder een map en zen inhoud recursief: -`rmdir {{pad/naar/directory}} /s` +`rmdir {{pad/naar/map}} /s` -- Verwijder een directory en zen inhoud recursief zonder te vragen: +- Verwijder een map en zen inhoud recursief zonder te vragen: -`rmdir {{pad/naar/directory}} /s /q` +`rmdir {{pad/naar/map}} /s /q` diff --git a/pages.nl/windows/sls.md b/pages.nl/windows/sls.md new file mode 100644 index 0000000000..6e3d8955b5 --- /dev/null +++ b/pages.nl/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> Dit commando is een alias van `where-object`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr where-object` diff --git a/pages.nl/windows/wget.md b/pages.nl/windows/wget.md new file mode 100644 index 0000000000..1f33074d11 --- /dev/null +++ b/pages.nl/windows/wget.md @@ -0,0 +1,19 @@ +# wget + +> In PowerShell kan dit commando een alias zijn van `Invoke-WebRequest` als het originele `wget` programma () niet correct is geïnstalleerd. + +- Controleer of `wget` correct is geïnstalleerd door het versienummer te printen. Als dit commando resulteert in een error, heeft PowerShell dit commando mogelijk vervangen met `Invoke-WebRequest`: + +`wget --version` + +- Bekijk de documentatie van het originele `wget` commando: + +`tldr wget -p common` + +- Bekijk de documentatie van het originele `wget` commando in een oudere versie van de `tldr` command-line client: + +`tldr wget -o common` + +- Bekijk de documentatie van het PowerShell's `Invoke-WebRequest` commando: + +`tldr invoke-webrequest` diff --git a/pages.no/common/bundler.md b/pages.no/common/bundler.md new file mode 100644 index 0000000000..b4cf578838 --- /dev/null +++ b/pages.no/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> Denne kommandoen er et alias for `bundle`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr bundle` diff --git a/pages.no/common/clamav.md b/pages.no/common/clamav.md new file mode 100644 index 0000000000..e3723947bd --- /dev/null +++ b/pages.no/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> Denne kommandoen er et alias for `clamdscan`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr clamdscan` diff --git a/pages.no/common/cron.md b/pages.no/common/cron.md new file mode 100644 index 0000000000..70f568c436 --- /dev/null +++ b/pages.no/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> Denne kommandoen er et alias for `crontab`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr crontab` diff --git a/pages.no/common/fossil-ci.md b/pages.no/common/fossil-ci.md new file mode 100644 index 0000000000..ab5de66cd7 --- /dev/null +++ b/pages.no/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> Denne kommandoen er et alias for `fossil-commit`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr fossil-commit` diff --git a/pages.no/common/fossil-delete.md b/pages.no/common/fossil-delete.md new file mode 100644 index 0000000000..6a4da12454 --- /dev/null +++ b/pages.no/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> Denne kommandoen er et alias for `fossil rm`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr fossil rm` diff --git a/pages.no/common/fossil-forget.md b/pages.no/common/fossil-forget.md new file mode 100644 index 0000000000..4f94bd836c --- /dev/null +++ b/pages.no/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> Denne kommandoen er et alias for `fossil rm`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr fossil rm` diff --git a/pages.no/common/fossil-new.md b/pages.no/common/fossil-new.md new file mode 100644 index 0000000000..495e437f96 --- /dev/null +++ b/pages.no/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> Denne kommandoen er et alias for `fossil-init`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr fossil-init` diff --git a/pages.no/common/gh-cs.md b/pages.no/common/gh-cs.md new file mode 100644 index 0000000000..e5fd2a6202 --- /dev/null +++ b/pages.no/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> Denne kommandoen er et alias for `gh-codespace`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr gh-codespace` diff --git a/pages.no/common/gnmic-sub.md b/pages.no/common/gnmic-sub.md new file mode 100644 index 0000000000..6794a414de --- /dev/null +++ b/pages.no/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> Denne kommandoen er et alias for `gnmic subscribe`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr gnmic subscribe` diff --git a/pages.no/common/google-chrome.md b/pages.no/common/google-chrome.md new file mode 100644 index 0000000000..91c177110c --- /dev/null +++ b/pages.no/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> Denne kommandoen er et alias for `chromium`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr chromium` diff --git a/pages.no/common/hx.md b/pages.no/common/hx.md new file mode 100644 index 0000000000..f02b1c7c80 --- /dev/null +++ b/pages.no/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> Denne kommandoen er et alias for `helix`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr helix` diff --git a/pages.no/common/kafkacat.md b/pages.no/common/kafkacat.md new file mode 100644 index 0000000000..a840460af9 --- /dev/null +++ b/pages.no/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> Denne kommandoen er et alias for `kcat`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr kcat` diff --git a/pages.no/common/lzcat.md b/pages.no/common/lzcat.md new file mode 100644 index 0000000000..7056f5dc3b --- /dev/null +++ b/pages.no/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> Denne kommandoen er et alias for `xz`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr xz` diff --git a/pages.no/common/lzma.md b/pages.no/common/lzma.md new file mode 100644 index 0000000000..3357295c8f --- /dev/null +++ b/pages.no/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> Denne kommandoen er et alias for `xz`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr xz` diff --git a/pages.no/common/nm-classic.md b/pages.no/common/nm-classic.md new file mode 100644 index 0000000000..54933c65b0 --- /dev/null +++ b/pages.no/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> Denne kommandoen er et alias for `nm`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr nm` diff --git a/pages.no/common/ntl.md b/pages.no/common/ntl.md new file mode 100644 index 0000000000..b5f57accdc --- /dev/null +++ b/pages.no/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> Denne kommandoen er et alias for `netlify`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr netlify` diff --git a/pages.no/common/ptpython3.md b/pages.no/common/ptpython3.md new file mode 100644 index 0000000000..7f266c2a31 --- /dev/null +++ b/pages.no/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> Denne kommandoen er et alias for `ptpython`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr ptpython` diff --git a/pages.no/common/python3.md b/pages.no/common/python3.md new file mode 100644 index 0000000000..abc9963c16 --- /dev/null +++ b/pages.no/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> Denne kommandoen er et alias for `python`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr python` diff --git a/pages.no/common/rcat.md b/pages.no/common/rcat.md new file mode 100644 index 0000000000..1ba1a54386 --- /dev/null +++ b/pages.no/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> Denne kommandoen er et alias for `rc`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr rc` diff --git a/pages.no/common/ripgrep.md b/pages.no/common/ripgrep.md new file mode 100644 index 0000000000..520aef0143 --- /dev/null +++ b/pages.no/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> Denne kommandoen er et alias for `rg`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr rg` diff --git a/pages.no/common/todoman.md b/pages.no/common/todoman.md new file mode 100644 index 0000000000..112d96b06b --- /dev/null +++ b/pages.no/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> Denne kommandoen er et alias for `todo`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr todo` diff --git a/pages.no/common/transmission.md b/pages.no/common/transmission.md new file mode 100644 index 0000000000..5419a53428 --- /dev/null +++ b/pages.no/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> Denne kommandoen er et alias for `transmission-daemon`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr transmission-daemon` diff --git a/pages.no/common/unlzma.md b/pages.no/common/unlzma.md new file mode 100644 index 0000000000..0ec6cd473f --- /dev/null +++ b/pages.no/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> Denne kommandoen er et alias for `xz`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr xz` diff --git a/pages.no/common/unxz.md b/pages.no/common/unxz.md new file mode 100644 index 0000000000..5e02c0194e --- /dev/null +++ b/pages.no/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> Denne kommandoen er et alias for `xz`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr xz` diff --git a/pages.no/common/xzcat.md b/pages.no/common/xzcat.md new file mode 100644 index 0000000000..e1b06d9de0 --- /dev/null +++ b/pages.no/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> Denne kommandoen er et alias for `xz`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr xz` diff --git a/pages.no/linux/alternatives.md b/pages.no/linux/alternatives.md new file mode 100644 index 0000000000..6c63ff2216 --- /dev/null +++ b/pages.no/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> Denne kommandoen er et alias for `update-alternatives`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr update-alternatives` diff --git a/pages.no/linux/batcat.md b/pages.no/linux/batcat.md new file mode 100644 index 0000000000..054f96e17f --- /dev/null +++ b/pages.no/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> Denne kommandoen er et alias for `bat`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr bat` diff --git a/pages.no/linux/bspwm.md b/pages.no/linux/bspwm.md new file mode 100644 index 0000000000..cae496ccef --- /dev/null +++ b/pages.no/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> Denne kommandoen er et alias for `bspc`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr bspc` diff --git a/pages.no/linux/cc.md b/pages.no/linux/cc.md new file mode 100644 index 0000000000..d0f7287231 --- /dev/null +++ b/pages.no/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> Denne kommandoen er et alias for `gcc`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr gcc` diff --git a/pages.no/linux/cgroups.md b/pages.no/linux/cgroups.md new file mode 100644 index 0000000000..916471c84f --- /dev/null +++ b/pages.no/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> Denne kommandoen er et alias for `cgclassify`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr cgclassify` diff --git a/pages.no/linux/ip-route-list.md b/pages.no/linux/ip-route-list.md new file mode 100644 index 0000000000..3a7b5ccd54 --- /dev/null +++ b/pages.no/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> Denne kommandoen er et alias for `ip-route-show`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr ip-route-show` diff --git a/pages.no/linux/megadl.md b/pages.no/linux/megadl.md new file mode 100644 index 0000000000..e851aa0159 --- /dev/null +++ b/pages.no/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> Denne kommandoen er et alias for `megatools-dl`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr megatools-dl` diff --git a/pages.no/linux/ubuntu-bug.md b/pages.no/linux/ubuntu-bug.md new file mode 100644 index 0000000000..9e0ff006ac --- /dev/null +++ b/pages.no/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> Denne kommandoen er et alias for `apport-bug`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr apport-bug` diff --git a/pages.no/osx/aa.md b/pages.no/osx/aa.md new file mode 100644 index 0000000000..444ec5017f --- /dev/null +++ b/pages.no/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> Denne kommandoen er et alias for `yaa`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr yaa` diff --git a/pages.no/osx/g[.md b/pages.no/osx/g[.md new file mode 100644 index 0000000000..e7abd90aff --- /dev/null +++ b/pages.no/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> Denne kommandoen er et alias for `-p linux [`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux [` diff --git a/pages.no/osx/gawk.md b/pages.no/osx/gawk.md new file mode 100644 index 0000000000..03ded8847c --- /dev/null +++ b/pages.no/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> Denne kommandoen er et alias for `-p linux awk`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux awk` diff --git a/pages.no/osx/gb2sum.md b/pages.no/osx/gb2sum.md new file mode 100644 index 0000000000..492a84a6c6 --- /dev/null +++ b/pages.no/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> Denne kommandoen er et alias for `-p linux b2sum`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux b2sum` diff --git a/pages.no/osx/gbase32.md b/pages.no/osx/gbase32.md new file mode 100644 index 0000000000..f784f2005b --- /dev/null +++ b/pages.no/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> Denne kommandoen er et alias for `-p linux base32`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux base32` diff --git a/pages.no/osx/gbase64.md b/pages.no/osx/gbase64.md new file mode 100644 index 0000000000..d53385f4ef --- /dev/null +++ b/pages.no/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> Denne kommandoen er et alias for `-p linux base64`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux base64` diff --git a/pages.no/osx/gbasename.md b/pages.no/osx/gbasename.md new file mode 100644 index 0000000000..b2ea9c11ca --- /dev/null +++ b/pages.no/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> Denne kommandoen er et alias for `-p linux basename`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux basename` diff --git a/pages.no/osx/gbasenc.md b/pages.no/osx/gbasenc.md new file mode 100644 index 0000000000..29d8ed24cd --- /dev/null +++ b/pages.no/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> Denne kommandoen er et alias for `-p linux basenc`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux basenc` diff --git a/pages.no/osx/gcat.md b/pages.no/osx/gcat.md new file mode 100644 index 0000000000..01552792e0 --- /dev/null +++ b/pages.no/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> Denne kommandoen er et alias for `-p linux cat`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux cat` diff --git a/pages.no/osx/gchcon.md b/pages.no/osx/gchcon.md new file mode 100644 index 0000000000..5430bd7b18 --- /dev/null +++ b/pages.no/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> Denne kommandoen er et alias for `-p linux chcon`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux chcon` diff --git a/pages.no/osx/gchgrp.md b/pages.no/osx/gchgrp.md new file mode 100644 index 0000000000..6b6685f182 --- /dev/null +++ b/pages.no/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> Denne kommandoen er et alias for `-p linux chgrp`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux chgrp` diff --git a/pages.no/osx/gchmod.md b/pages.no/osx/gchmod.md new file mode 100644 index 0000000000..b3924a2448 --- /dev/null +++ b/pages.no/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> Denne kommandoen er et alias for `-p linux chmod`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux chmod` diff --git a/pages.no/osx/gchown.md b/pages.no/osx/gchown.md new file mode 100644 index 0000000000..038a51c048 --- /dev/null +++ b/pages.no/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> Denne kommandoen er et alias for `-p linux chown`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux chown` diff --git a/pages.no/osx/gchroot.md b/pages.no/osx/gchroot.md new file mode 100644 index 0000000000..a9750cc8ca --- /dev/null +++ b/pages.no/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> Denne kommandoen er et alias for `-p linux chroot`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux chroot` diff --git a/pages.no/osx/gcksum.md b/pages.no/osx/gcksum.md new file mode 100644 index 0000000000..460c9cc331 --- /dev/null +++ b/pages.no/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> Denne kommandoen er et alias for `-p linux cksum`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux cksum` diff --git a/pages.no/osx/gcomm.md b/pages.no/osx/gcomm.md new file mode 100644 index 0000000000..bfe7f823ba --- /dev/null +++ b/pages.no/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> Denne kommandoen er et alias for `-p linux comm`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux comm` diff --git a/pages.no/osx/gcp.md b/pages.no/osx/gcp.md new file mode 100644 index 0000000000..f5bfb2f140 --- /dev/null +++ b/pages.no/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> Denne kommandoen er et alias for `-p linux cp`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux cp` diff --git a/pages.no/osx/gcsplit.md b/pages.no/osx/gcsplit.md new file mode 100644 index 0000000000..b84ab237bc --- /dev/null +++ b/pages.no/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> Denne kommandoen er et alias for `-p linux csplit`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux csplit` diff --git a/pages.no/osx/gcut.md b/pages.no/osx/gcut.md new file mode 100644 index 0000000000..c1ce15dbf2 --- /dev/null +++ b/pages.no/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> Denne kommandoen er et alias for `-p linux cut`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux cut` diff --git a/pages.no/osx/gdate.md b/pages.no/osx/gdate.md new file mode 100644 index 0000000000..59d5f41a3f --- /dev/null +++ b/pages.no/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> Denne kommandoen er et alias for `-p linux date`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux date` diff --git a/pages.no/osx/gdd.md b/pages.no/osx/gdd.md new file mode 100644 index 0000000000..29cbc79709 --- /dev/null +++ b/pages.no/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> Denne kommandoen er et alias for `-p linux dd`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux dd` diff --git a/pages.no/osx/gdf.md b/pages.no/osx/gdf.md new file mode 100644 index 0000000000..7ac24dc377 --- /dev/null +++ b/pages.no/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> Denne kommandoen er et alias for `-p linux df`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux df` diff --git a/pages.no/osx/gdir.md b/pages.no/osx/gdir.md new file mode 100644 index 0000000000..a19afff986 --- /dev/null +++ b/pages.no/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> Denne kommandoen er et alias for `-p linux dir`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux dir` diff --git a/pages.no/osx/gdircolors.md b/pages.no/osx/gdircolors.md new file mode 100644 index 0000000000..e85029f814 --- /dev/null +++ b/pages.no/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> Denne kommandoen er et alias for `-p linux dircolors`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux dircolors` diff --git a/pages.no/osx/gdirname.md b/pages.no/osx/gdirname.md new file mode 100644 index 0000000000..0fbc3db769 --- /dev/null +++ b/pages.no/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> Denne kommandoen er et alias for `-p linux dirname`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux dirname` diff --git a/pages.no/osx/gdnsdomainname.md b/pages.no/osx/gdnsdomainname.md new file mode 100644 index 0000000000..01e555f49e --- /dev/null +++ b/pages.no/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> Denne kommandoen er et alias for `-p linux dnsdomainname`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux dnsdomainname` diff --git a/pages.no/osx/gecho.md b/pages.no/osx/gecho.md new file mode 100644 index 0000000000..14019aee12 --- /dev/null +++ b/pages.no/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> Denne kommandoen er et alias for `-p linux echo`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux echo` diff --git a/pages.no/osx/ged.md b/pages.no/osx/ged.md new file mode 100644 index 0000000000..e93b517467 --- /dev/null +++ b/pages.no/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> Denne kommandoen er et alias for `-p linux ed`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux ed` diff --git a/pages.no/osx/gegrep.md b/pages.no/osx/gegrep.md new file mode 100644 index 0000000000..0901b69704 --- /dev/null +++ b/pages.no/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> Denne kommandoen er et alias for `-p linux egrep`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux egrep` diff --git a/pages.no/osx/genv.md b/pages.no/osx/genv.md new file mode 100644 index 0000000000..9792fa6491 --- /dev/null +++ b/pages.no/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> Denne kommandoen er et alias for `-p linux env`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux env` diff --git a/pages.no/osx/gexpand.md b/pages.no/osx/gexpand.md new file mode 100644 index 0000000000..e366a470e1 --- /dev/null +++ b/pages.no/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> Denne kommandoen er et alias for `-p linux expand`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux expand` diff --git a/pages.no/osx/gexpr.md b/pages.no/osx/gexpr.md new file mode 100644 index 0000000000..3b257c3f84 --- /dev/null +++ b/pages.no/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> Denne kommandoen er et alias for `-p linux expr`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux expr` diff --git a/pages.no/osx/gfactor.md b/pages.no/osx/gfactor.md new file mode 100644 index 0000000000..441a6ea5c4 --- /dev/null +++ b/pages.no/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> Denne kommandoen er et alias for `-p linux factor`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux factor` diff --git a/pages.no/osx/gfalse.md b/pages.no/osx/gfalse.md new file mode 100644 index 0000000000..aba04fdf14 --- /dev/null +++ b/pages.no/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> Denne kommandoen er et alias for `-p linux false`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux false` diff --git a/pages.no/osx/gfgrep.md b/pages.no/osx/gfgrep.md new file mode 100644 index 0000000000..c8a690dcd4 --- /dev/null +++ b/pages.no/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> Denne kommandoen er et alias for `-p linux fgrep`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux fgrep` diff --git a/pages.no/osx/gfind.md b/pages.no/osx/gfind.md new file mode 100644 index 0000000000..1483a37697 --- /dev/null +++ b/pages.no/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> Denne kommandoen er et alias for `-p linux find`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux find` diff --git a/pages.no/osx/gfmt.md b/pages.no/osx/gfmt.md new file mode 100644 index 0000000000..ac4d808bf6 --- /dev/null +++ b/pages.no/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> Denne kommandoen er et alias for `-p linux fmt`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux fmt` diff --git a/pages.no/osx/gfold.md b/pages.no/osx/gfold.md new file mode 100644 index 0000000000..aad6aa7939 --- /dev/null +++ b/pages.no/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> Denne kommandoen er et alias for `-p linux fold`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux fold` diff --git a/pages.no/osx/gftp.md b/pages.no/osx/gftp.md new file mode 100644 index 0000000000..1695438176 --- /dev/null +++ b/pages.no/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> Denne kommandoen er et alias for `-p linux ftp`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux ftp` diff --git a/pages.no/osx/ggrep.md b/pages.no/osx/ggrep.md new file mode 100644 index 0000000000..496b50fc0f --- /dev/null +++ b/pages.no/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> Denne kommandoen er et alias for `-p linux grep`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux grep` diff --git a/pages.no/osx/ggroups.md b/pages.no/osx/ggroups.md new file mode 100644 index 0000000000..cc6a5fec49 --- /dev/null +++ b/pages.no/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> Denne kommandoen er et alias for `-p linux groups`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux groups` diff --git a/pages.no/osx/ghead.md b/pages.no/osx/ghead.md new file mode 100644 index 0000000000..c58d6ca772 --- /dev/null +++ b/pages.no/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> Denne kommandoen er et alias for `-p linux head`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux head` diff --git a/pages.no/osx/ghostid.md b/pages.no/osx/ghostid.md new file mode 100644 index 0000000000..e9ce132d3a --- /dev/null +++ b/pages.no/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> Denne kommandoen er et alias for `-p linux hostid`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux hostid` diff --git a/pages.no/osx/ghostname.md b/pages.no/osx/ghostname.md new file mode 100644 index 0000000000..da5c9d4271 --- /dev/null +++ b/pages.no/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> Denne kommandoen er et alias for `-p linux hostname`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux hostname` diff --git a/pages.no/osx/gid.md b/pages.no/osx/gid.md new file mode 100644 index 0000000000..7e2e505c55 --- /dev/null +++ b/pages.no/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> Denne kommandoen er et alias for `-p linux id`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux id` diff --git a/pages.no/osx/gifconfig.md b/pages.no/osx/gifconfig.md new file mode 100644 index 0000000000..37c74bbd28 --- /dev/null +++ b/pages.no/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> Denne kommandoen er et alias for `-p linux ifconfig`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux ifconfig` diff --git a/pages.no/osx/gindent.md b/pages.no/osx/gindent.md new file mode 100644 index 0000000000..f212d3d815 --- /dev/null +++ b/pages.no/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> Denne kommandoen er et alias for `-p linux indent`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux indent` diff --git a/pages.no/osx/ginstall.md b/pages.no/osx/ginstall.md new file mode 100644 index 0000000000..cc0d6f40db --- /dev/null +++ b/pages.no/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> Denne kommandoen er et alias for `-p linux install`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux install` diff --git a/pages.no/osx/gjoin.md b/pages.no/osx/gjoin.md new file mode 100644 index 0000000000..dbfed7d85b --- /dev/null +++ b/pages.no/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> Denne kommandoen er et alias for `-p linux join`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux join` diff --git a/pages.no/osx/gkill.md b/pages.no/osx/gkill.md new file mode 100644 index 0000000000..b21ef20faf --- /dev/null +++ b/pages.no/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> Denne kommandoen er et alias for `-p linux kill`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux kill` diff --git a/pages.no/osx/glibtool.md b/pages.no/osx/glibtool.md new file mode 100644 index 0000000000..912beebdc2 --- /dev/null +++ b/pages.no/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> Denne kommandoen er et alias for `-p linux libtool`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux libtool` diff --git a/pages.no/osx/glibtoolize.md b/pages.no/osx/glibtoolize.md new file mode 100644 index 0000000000..42d3eb0802 --- /dev/null +++ b/pages.no/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> Denne kommandoen er et alias for `-p linux libtoolize`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux libtoolize` diff --git a/pages.no/osx/glink.md b/pages.no/osx/glink.md new file mode 100644 index 0000000000..89bc3195fb --- /dev/null +++ b/pages.no/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> Denne kommandoen er et alias for `-p linux link`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux link` diff --git a/pages.no/osx/gln.md b/pages.no/osx/gln.md new file mode 100644 index 0000000000..a5039466a6 --- /dev/null +++ b/pages.no/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> Denne kommandoen er et alias for `-p linux ln`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux ln` diff --git a/pages.no/osx/glocate.md b/pages.no/osx/glocate.md new file mode 100644 index 0000000000..321eac073c --- /dev/null +++ b/pages.no/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> Denne kommandoen er et alias for `-p linux locate`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux locate` diff --git a/pages.no/osx/glogger.md b/pages.no/osx/glogger.md new file mode 100644 index 0000000000..de3245fd70 --- /dev/null +++ b/pages.no/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> Denne kommandoen er et alias for `-p linux logger`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux logger` diff --git a/pages.no/osx/glogname.md b/pages.no/osx/glogname.md new file mode 100644 index 0000000000..c25e90a4da --- /dev/null +++ b/pages.no/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> Denne kommandoen er et alias for `-p linux logname`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux logname` diff --git a/pages.no/osx/gls.md b/pages.no/osx/gls.md new file mode 100644 index 0000000000..4353049d19 --- /dev/null +++ b/pages.no/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> Denne kommandoen er et alias for `-p linux ls`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux ls` diff --git a/pages.no/osx/gmake.md b/pages.no/osx/gmake.md new file mode 100644 index 0000000000..7244f8b7da --- /dev/null +++ b/pages.no/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> Denne kommandoen er et alias for `-p linux make`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux make` diff --git a/pages.no/osx/gmd5sum.md b/pages.no/osx/gmd5sum.md new file mode 100644 index 0000000000..a06efbba1f --- /dev/null +++ b/pages.no/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> Denne kommandoen er et alias for `-p linux md5sum`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux md5sum` diff --git a/pages.no/osx/gmkdir.md b/pages.no/osx/gmkdir.md new file mode 100644 index 0000000000..3fdcfa7792 --- /dev/null +++ b/pages.no/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> Denne kommandoen er et alias for `-p linux mkdir`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux mkdir` diff --git a/pages.no/osx/gmkfifo.md b/pages.no/osx/gmkfifo.md new file mode 100644 index 0000000000..3f825c394e --- /dev/null +++ b/pages.no/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> Denne kommandoen er et alias for `-p linux mkfifo`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux mkfifo` diff --git a/pages.no/osx/gmknod.md b/pages.no/osx/gmknod.md new file mode 100644 index 0000000000..c3622ba4cf --- /dev/null +++ b/pages.no/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> Denne kommandoen er et alias for `-p linux mknod`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux mknod` diff --git a/pages.no/osx/gmktemp.md b/pages.no/osx/gmktemp.md new file mode 100644 index 0000000000..d917d4fd4d --- /dev/null +++ b/pages.no/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> Denne kommandoen er et alias for `-p linux mktemp`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux mktemp` diff --git a/pages.no/osx/gmv.md b/pages.no/osx/gmv.md new file mode 100644 index 0000000000..741724ec85 --- /dev/null +++ b/pages.no/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> Denne kommandoen er et alias for `-p linux mv`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux mv` diff --git a/pages.no/osx/gnice.md b/pages.no/osx/gnice.md new file mode 100644 index 0000000000..a893263ce9 --- /dev/null +++ b/pages.no/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> Denne kommandoen er et alias for `-p linux nice`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux nice` diff --git a/pages.no/osx/gnl.md b/pages.no/osx/gnl.md new file mode 100644 index 0000000000..a664b28b90 --- /dev/null +++ b/pages.no/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> Denne kommandoen er et alias for `-p linux nl`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux nl` diff --git a/pages.no/osx/gnohup.md b/pages.no/osx/gnohup.md new file mode 100644 index 0000000000..05796be526 --- /dev/null +++ b/pages.no/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> Denne kommandoen er et alias for `-p linux nohup`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux nohup` diff --git a/pages.no/osx/gnproc.md b/pages.no/osx/gnproc.md new file mode 100644 index 0000000000..9c77445585 --- /dev/null +++ b/pages.no/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> Denne kommandoen er et alias for `-p linux nproc`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux nproc` diff --git a/pages.no/osx/gnumfmt.md b/pages.no/osx/gnumfmt.md new file mode 100644 index 0000000000..7149940b80 --- /dev/null +++ b/pages.no/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> Denne kommandoen er et alias for `-p linux numfmt`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux numfmt` diff --git a/pages.no/osx/god.md b/pages.no/osx/god.md new file mode 100644 index 0000000000..5f9d53dc9e --- /dev/null +++ b/pages.no/osx/god.md @@ -0,0 +1,7 @@ +# god + +> Denne kommandoen er et alias for `-p linux od`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux od` diff --git a/pages.no/osx/gpaste.md b/pages.no/osx/gpaste.md new file mode 100644 index 0000000000..7897c2b35c --- /dev/null +++ b/pages.no/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> Denne kommandoen er et alias for `-p linux paste`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux paste` diff --git a/pages.no/osx/gpathchk.md b/pages.no/osx/gpathchk.md new file mode 100644 index 0000000000..f2f5e12f33 --- /dev/null +++ b/pages.no/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> Denne kommandoen er et alias for `-p linux pathchk`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux pathchk` diff --git a/pages.no/osx/gping.md b/pages.no/osx/gping.md new file mode 100644 index 0000000000..41a8b98bf7 --- /dev/null +++ b/pages.no/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> Denne kommandoen er et alias for `-p linux ping`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux ping` diff --git a/pages.no/osx/gping6.md b/pages.no/osx/gping6.md new file mode 100644 index 0000000000..2ee1e3b382 --- /dev/null +++ b/pages.no/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> Denne kommandoen er et alias for `-p linux ping6`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux ping6` diff --git a/pages.no/osx/gpinky.md b/pages.no/osx/gpinky.md new file mode 100644 index 0000000000..562a7471b2 --- /dev/null +++ b/pages.no/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> Denne kommandoen er et alias for `-p linux pinky`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux pinky` diff --git a/pages.no/osx/gpr.md b/pages.no/osx/gpr.md new file mode 100644 index 0000000000..8400d8f98b --- /dev/null +++ b/pages.no/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> Denne kommandoen er et alias for `-p linux pr`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux pr` diff --git a/pages.no/osx/gprintenv.md b/pages.no/osx/gprintenv.md new file mode 100644 index 0000000000..ae5bb3903a --- /dev/null +++ b/pages.no/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> Denne kommandoen er et alias for `-p linux printenv`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux printenv` diff --git a/pages.no/osx/gprintf.md b/pages.no/osx/gprintf.md new file mode 100644 index 0000000000..09211e0d3e --- /dev/null +++ b/pages.no/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> Denne kommandoen er et alias for `-p linux printf`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux printf` diff --git a/pages.no/osx/gptx.md b/pages.no/osx/gptx.md new file mode 100644 index 0000000000..1eb64d90ce --- /dev/null +++ b/pages.no/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> Denne kommandoen er et alias for `-p linux ptx`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux ptx` diff --git a/pages.no/osx/gpwd.md b/pages.no/osx/gpwd.md new file mode 100644 index 0000000000..e4c4aa1517 --- /dev/null +++ b/pages.no/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> Denne kommandoen er et alias for `-p linux pwd`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux pwd` diff --git a/pages.no/osx/grcp.md b/pages.no/osx/grcp.md new file mode 100644 index 0000000000..a24de55aee --- /dev/null +++ b/pages.no/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> Denne kommandoen er et alias for `-p linux rcp`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux rcp` diff --git a/pages.no/osx/greadlink.md b/pages.no/osx/greadlink.md new file mode 100644 index 0000000000..6cf5e22112 --- /dev/null +++ b/pages.no/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> Denne kommandoen er et alias for `-p linux readlink`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux readlink` diff --git a/pages.no/osx/grealpath.md b/pages.no/osx/grealpath.md new file mode 100644 index 0000000000..5824645419 --- /dev/null +++ b/pages.no/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> Denne kommandoen er et alias for `-p linux realpath`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux realpath` diff --git a/pages.no/osx/grexec.md b/pages.no/osx/grexec.md new file mode 100644 index 0000000000..7b5334be11 --- /dev/null +++ b/pages.no/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> Denne kommandoen er et alias for `-p linux rexec`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux rexec` diff --git a/pages.no/osx/grlogin.md b/pages.no/osx/grlogin.md new file mode 100644 index 0000000000..004a663a0f --- /dev/null +++ b/pages.no/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> Denne kommandoen er et alias for `-p linux rlogin`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux rlogin` diff --git a/pages.no/osx/grm.md b/pages.no/osx/grm.md new file mode 100644 index 0000000000..80975d6cb4 --- /dev/null +++ b/pages.no/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> Denne kommandoen er et alias for `-p linux rm`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux rm` diff --git a/pages.no/osx/grmdir.md b/pages.no/osx/grmdir.md new file mode 100644 index 0000000000..bac1da267f --- /dev/null +++ b/pages.no/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> Denne kommandoen er et alias for `-p linux rmdir`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux rmdir` diff --git a/pages.no/osx/grsh.md b/pages.no/osx/grsh.md new file mode 100644 index 0000000000..d7b19417d4 --- /dev/null +++ b/pages.no/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> Denne kommandoen er et alias for `-p linux rsh`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux rsh` diff --git a/pages.no/osx/gruncon.md b/pages.no/osx/gruncon.md new file mode 100644 index 0000000000..a247481102 --- /dev/null +++ b/pages.no/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> Denne kommandoen er et alias for `-p linux runcon`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux runcon` diff --git a/pages.no/osx/gsed.md b/pages.no/osx/gsed.md new file mode 100644 index 0000000000..270fdbfab2 --- /dev/null +++ b/pages.no/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> Denne kommandoen er et alias for `-p linux sed`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux sed` diff --git a/pages.no/osx/gseq.md b/pages.no/osx/gseq.md new file mode 100644 index 0000000000..48d412aee2 --- /dev/null +++ b/pages.no/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> Denne kommandoen er et alias for `-p linux seq`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux seq` diff --git a/pages.no/osx/gsha1sum.md b/pages.no/osx/gsha1sum.md new file mode 100644 index 0000000000..ab54db9821 --- /dev/null +++ b/pages.no/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> Denne kommandoen er et alias for `-p linux sha1sum`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux sha1sum` diff --git a/pages.no/osx/gsha224sum.md b/pages.no/osx/gsha224sum.md new file mode 100644 index 0000000000..c0f3fe938d --- /dev/null +++ b/pages.no/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> Denne kommandoen er et alias for `-p linux sha224sum`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux sha224sum` diff --git a/pages.no/osx/gsha256sum.md b/pages.no/osx/gsha256sum.md new file mode 100644 index 0000000000..5058ecf0d9 --- /dev/null +++ b/pages.no/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> Denne kommandoen er et alias for `-p linux sha256sum`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux sha256sum` diff --git a/pages.no/osx/gsha384sum.md b/pages.no/osx/gsha384sum.md new file mode 100644 index 0000000000..770d0d7e10 --- /dev/null +++ b/pages.no/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> Denne kommandoen er et alias for `-p linux sha384sum`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux sha384sum` diff --git a/pages.no/osx/gsha512sum.md b/pages.no/osx/gsha512sum.md new file mode 100644 index 0000000000..50e7b48f51 --- /dev/null +++ b/pages.no/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> Denne kommandoen er et alias for `-p linux sha512sum`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux sha512sum` diff --git a/pages.no/osx/gshred.md b/pages.no/osx/gshred.md new file mode 100644 index 0000000000..46440c73ed --- /dev/null +++ b/pages.no/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> Denne kommandoen er et alias for `-p linux shred`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux shred` diff --git a/pages.no/osx/gshuf.md b/pages.no/osx/gshuf.md new file mode 100644 index 0000000000..e9694a00a1 --- /dev/null +++ b/pages.no/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> Denne kommandoen er et alias for `-p linux shuf`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux shuf` diff --git a/pages.no/osx/gsleep.md b/pages.no/osx/gsleep.md new file mode 100644 index 0000000000..d9e6d387e3 --- /dev/null +++ b/pages.no/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> Denne kommandoen er et alias for `-p linux sleep`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux sleep` diff --git a/pages.no/osx/gsort.md b/pages.no/osx/gsort.md new file mode 100644 index 0000000000..68104e4b73 --- /dev/null +++ b/pages.no/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> Denne kommandoen er et alias for `-p linux sort`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux sort` diff --git a/pages.no/osx/gsplit.md b/pages.no/osx/gsplit.md new file mode 100644 index 0000000000..238958a771 --- /dev/null +++ b/pages.no/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> Denne kommandoen er et alias for `-p linux split`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux split` diff --git a/pages.no/osx/gstat.md b/pages.no/osx/gstat.md new file mode 100644 index 0000000000..b09181dd77 --- /dev/null +++ b/pages.no/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> Denne kommandoen er et alias for `-p linux stat`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux stat` diff --git a/pages.no/osx/gstdbuf.md b/pages.no/osx/gstdbuf.md new file mode 100644 index 0000000000..0e703469d4 --- /dev/null +++ b/pages.no/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> Denne kommandoen er et alias for `-p linux stdbuf`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux stdbuf` diff --git a/pages.no/osx/gstty.md b/pages.no/osx/gstty.md new file mode 100644 index 0000000000..39bdb03576 --- /dev/null +++ b/pages.no/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> Denne kommandoen er et alias for `-p linux stty`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux stty` diff --git a/pages.no/osx/gsum.md b/pages.no/osx/gsum.md new file mode 100644 index 0000000000..83a0802f4d --- /dev/null +++ b/pages.no/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> Denne kommandoen er et alias for `-p linux sum`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux sum` diff --git a/pages.no/osx/gsync.md b/pages.no/osx/gsync.md new file mode 100644 index 0000000000..c8712a4cef --- /dev/null +++ b/pages.no/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> Denne kommandoen er et alias for `-p linux sync`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux sync` diff --git a/pages.no/osx/gtac.md b/pages.no/osx/gtac.md new file mode 100644 index 0000000000..04f094de02 --- /dev/null +++ b/pages.no/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> Denne kommandoen er et alias for `-p linux tac`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux tac` diff --git a/pages.no/osx/gtail.md b/pages.no/osx/gtail.md new file mode 100644 index 0000000000..be3fc23f0e --- /dev/null +++ b/pages.no/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> Denne kommandoen er et alias for `-p linux tail`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux tail` diff --git a/pages.no/osx/gtalk.md b/pages.no/osx/gtalk.md new file mode 100644 index 0000000000..f7bce16cb9 --- /dev/null +++ b/pages.no/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> Denne kommandoen er et alias for `-p linux talk`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux talk` diff --git a/pages.no/osx/gtar.md b/pages.no/osx/gtar.md new file mode 100644 index 0000000000..536cc22c3d --- /dev/null +++ b/pages.no/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> Denne kommandoen er et alias for `-p linux tar`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux tar` diff --git a/pages.no/osx/gtee.md b/pages.no/osx/gtee.md new file mode 100644 index 0000000000..e297219652 --- /dev/null +++ b/pages.no/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> Denne kommandoen er et alias for `-p linux tee`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux tee` diff --git a/pages.no/osx/gtelnet.md b/pages.no/osx/gtelnet.md new file mode 100644 index 0000000000..2294d06c89 --- /dev/null +++ b/pages.no/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> Denne kommandoen er et alias for `-p linux telnet`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux telnet` diff --git a/pages.no/osx/gtest.md b/pages.no/osx/gtest.md new file mode 100644 index 0000000000..13dd2b4715 --- /dev/null +++ b/pages.no/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> Denne kommandoen er et alias for `-p linux test`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux test` diff --git a/pages.no/osx/gtftp.md b/pages.no/osx/gtftp.md new file mode 100644 index 0000000000..a822f7d254 --- /dev/null +++ b/pages.no/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> Denne kommandoen er et alias for `-p linux tftp`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux tftp` diff --git a/pages.no/osx/gtime.md b/pages.no/osx/gtime.md new file mode 100644 index 0000000000..96b54b19f4 --- /dev/null +++ b/pages.no/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> Denne kommandoen er et alias for `-p linux time`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux time` diff --git a/pages.no/osx/gtimeout.md b/pages.no/osx/gtimeout.md new file mode 100644 index 0000000000..2f9f5e83cf --- /dev/null +++ b/pages.no/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> Denne kommandoen er et alias for `-p linux timeout`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux timeout` diff --git a/pages.no/osx/gtouch.md b/pages.no/osx/gtouch.md new file mode 100644 index 0000000000..20084d8a53 --- /dev/null +++ b/pages.no/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> Denne kommandoen er et alias for `-p linux touch`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux touch` diff --git a/pages.no/osx/gtr.md b/pages.no/osx/gtr.md new file mode 100644 index 0000000000..d0d47ab523 --- /dev/null +++ b/pages.no/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> Denne kommandoen er et alias for `-p linux tr`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux tr` diff --git a/pages.no/osx/gtraceroute.md b/pages.no/osx/gtraceroute.md new file mode 100644 index 0000000000..11f4986610 --- /dev/null +++ b/pages.no/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> Denne kommandoen er et alias for `-p linux traceroute`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux traceroute` diff --git a/pages.no/osx/gtrue.md b/pages.no/osx/gtrue.md new file mode 100644 index 0000000000..446e1a7440 --- /dev/null +++ b/pages.no/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> Denne kommandoen er et alias for `-p linux true`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux true` diff --git a/pages.no/osx/gtruncate.md b/pages.no/osx/gtruncate.md new file mode 100644 index 0000000000..3574b1b894 --- /dev/null +++ b/pages.no/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> Denne kommandoen er et alias for `-p linux truncate`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux truncate` diff --git a/pages.no/osx/gtsort.md b/pages.no/osx/gtsort.md new file mode 100644 index 0000000000..6d3f3f0269 --- /dev/null +++ b/pages.no/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> Denne kommandoen er et alias for `-p linux tsort`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux tsort` diff --git a/pages.no/osx/gtty.md b/pages.no/osx/gtty.md new file mode 100644 index 0000000000..2173277a56 --- /dev/null +++ b/pages.no/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> Denne kommandoen er et alias for `-p linux tty`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux tty` diff --git a/pages.no/osx/guname.md b/pages.no/osx/guname.md new file mode 100644 index 0000000000..965a0b8d8f --- /dev/null +++ b/pages.no/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> Denne kommandoen er et alias for `-p linux uname`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux uname` diff --git a/pages.no/osx/gunexpand.md b/pages.no/osx/gunexpand.md new file mode 100644 index 0000000000..e06b463343 --- /dev/null +++ b/pages.no/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> Denne kommandoen er et alias for `-p linux unexpand`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux unexpand` diff --git a/pages.no/osx/guniq.md b/pages.no/osx/guniq.md new file mode 100644 index 0000000000..5a0fc41dbb --- /dev/null +++ b/pages.no/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> Denne kommandoen er et alias for `-p linux uniq`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux uniq` diff --git a/pages.no/osx/gunits.md b/pages.no/osx/gunits.md new file mode 100644 index 0000000000..2b63e20c29 --- /dev/null +++ b/pages.no/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> Denne kommandoen er et alias for `-p linux units`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux units` diff --git a/pages.no/osx/gunlink.md b/pages.no/osx/gunlink.md new file mode 100644 index 0000000000..a7513b73a9 --- /dev/null +++ b/pages.no/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> Denne kommandoen er et alias for `-p linux unlink`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux unlink` diff --git a/pages.no/osx/gupdatedb.md b/pages.no/osx/gupdatedb.md new file mode 100644 index 0000000000..222cfbc2b0 --- /dev/null +++ b/pages.no/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> Denne kommandoen er et alias for `-p linux updatedb`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux updatedb` diff --git a/pages.no/osx/guptime.md b/pages.no/osx/guptime.md new file mode 100644 index 0000000000..88a451c577 --- /dev/null +++ b/pages.no/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> Denne kommandoen er et alias for `-p linux uptime`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux uptime` diff --git a/pages.no/osx/gusers.md b/pages.no/osx/gusers.md new file mode 100644 index 0000000000..09d52aaf90 --- /dev/null +++ b/pages.no/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> Denne kommandoen er et alias for `-p linux users`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux users` diff --git a/pages.no/osx/gvdir.md b/pages.no/osx/gvdir.md new file mode 100644 index 0000000000..48860a2807 --- /dev/null +++ b/pages.no/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> Denne kommandoen er et alias for `-p linux vdir`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux vdir` diff --git a/pages.no/osx/gwc.md b/pages.no/osx/gwc.md new file mode 100644 index 0000000000..c23172446e --- /dev/null +++ b/pages.no/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> Denne kommandoen er et alias for `-p linux wc`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux wc` diff --git a/pages.no/osx/gwhich.md b/pages.no/osx/gwhich.md new file mode 100644 index 0000000000..fa4ebc59ca --- /dev/null +++ b/pages.no/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> Denne kommandoen er et alias for `-p linux which`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux which` diff --git a/pages.no/osx/gwho.md b/pages.no/osx/gwho.md new file mode 100644 index 0000000000..27fd5bcd97 --- /dev/null +++ b/pages.no/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> Denne kommandoen er et alias for `-p linux who`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux who` diff --git a/pages.no/osx/gwhoami.md b/pages.no/osx/gwhoami.md new file mode 100644 index 0000000000..34498bff1f --- /dev/null +++ b/pages.no/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> Denne kommandoen er et alias for `-p linux whoami`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux whoami` diff --git a/pages.no/osx/gwhois.md b/pages.no/osx/gwhois.md new file mode 100644 index 0000000000..95f34c279b --- /dev/null +++ b/pages.no/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> Denne kommandoen er et alias for `-p linux whois`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux whois` diff --git a/pages.no/osx/gxargs.md b/pages.no/osx/gxargs.md new file mode 100644 index 0000000000..d9c19d30d3 --- /dev/null +++ b/pages.no/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> Denne kommandoen er et alias for `-p linux xargs`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux xargs` diff --git a/pages.no/osx/gyes.md b/pages.no/osx/gyes.md new file mode 100644 index 0000000000..3926dc8e13 --- /dev/null +++ b/pages.no/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> Denne kommandoen er et alias for `-p linux yes`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr -p linux yes` diff --git a/pages.no/osx/launchd.md b/pages.no/osx/launchd.md new file mode 100644 index 0000000000..534b308cf6 --- /dev/null +++ b/pages.no/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> Denne kommandoen er et alias for `launchctl`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr launchctl` diff --git a/pages.no/windows/chrome.md b/pages.no/windows/chrome.md new file mode 100644 index 0000000000..8d35c25f40 --- /dev/null +++ b/pages.no/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> Denne kommandoen er et alias for `chromium`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr chromium` diff --git a/pages.no/windows/cpush.md b/pages.no/windows/cpush.md new file mode 100644 index 0000000000..c29129c3b0 --- /dev/null +++ b/pages.no/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> Denne kommandoen er et alias for `choco-push`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr choco-push` diff --git a/pages.no/windows/curl.md b/pages.no/windows/curl.md new file mode 100644 index 0000000000..525dca8245 --- /dev/null +++ b/pages.no/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> Denne kommandoen er et alias for `curl -p common`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr curl -p common` diff --git a/pages.no/windows/iwr.md b/pages.no/windows/iwr.md new file mode 100644 index 0000000000..c183a13d6b --- /dev/null +++ b/pages.no/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> Denne kommandoen er et alias for `invoke-webrequest`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr invoke-webrequest` diff --git a/pages.no/windows/pwsh-where.md b/pages.no/windows/pwsh-where.md new file mode 100644 index 0000000000..d91738ee79 --- /dev/null +++ b/pages.no/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> Denne kommandoen er et alias for `Where-Object`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr Where-Object` diff --git a/pages.no/windows/rd.md b/pages.no/windows/rd.md new file mode 100644 index 0000000000..3d6b4216d0 --- /dev/null +++ b/pages.no/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> Denne kommandoen er et alias for `rmdir`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr rmdir` diff --git a/pages.no/windows/sls.md b/pages.no/windows/sls.md new file mode 100644 index 0000000000..42e12aac62 --- /dev/null +++ b/pages.no/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> Denne kommandoen er et alias for `where-object`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr where-object` diff --git a/pages.no/windows/title.md b/pages.no/windows/title.md new file mode 100644 index 0000000000..0e5c0098b3 --- /dev/null +++ b/pages.no/windows/title.md @@ -0,0 +1,8 @@ +# title + +> Setter tittelen på Ledetekst vindu. +> Mer informasjon: . + +- Setter tittelen på Ledetekst vindu: + +`title {{ny_tittel}}` diff --git a/pages.no/windows/wget.md b/pages.no/windows/wget.md new file mode 100644 index 0000000000..1092e9a171 --- /dev/null +++ b/pages.no/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> Denne kommandoen er et alias for `wget -p common`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr wget -p common` diff --git a/pages.pl/android/bugreport.md b/pages.pl/android/bugreport.md index 89e9d1ca57..cbd915715a 100644 --- a/pages.pl/android/bugreport.md +++ b/pages.pl/android/bugreport.md @@ -2,7 +2,7 @@ > Wyświetl raport o błędach Android. > Ta komenda może być używana tylko poprzez `adb shell`. -> Więcej informacji: . +> Więcej informacji: . - Wyświetl pełny raport błędów dla urządzenia Android: diff --git a/pages.pl/android/bugreportz.md b/pages.pl/android/bugreportz.md index 007390d824..9d0d1265c9 100644 --- a/pages.pl/android/bugreportz.md +++ b/pages.pl/android/bugreportz.md @@ -2,7 +2,7 @@ > Wygeneruj skompresowany raport błędów Android. > Ta komenda może być używana tylko poprzez `adb shell`. -> Więcej informacji: . +> Więcej informacji: . - Wygeneruj pełny i skompresowany raport błędów dla urządzenia Android: diff --git a/pages.pl/android/cmd.md b/pages.pl/android/cmd.md index 1c565e6fa4..f4d295706c 100644 --- a/pages.pl/android/cmd.md +++ b/pages.pl/android/cmd.md @@ -1,7 +1,7 @@ # cmd > Menedżer usług Android. -> Więcej informacji: . +> Więcej informacji: . - Pokaż wszystkie działające usługi: diff --git a/pages.pl/common/7z.md b/pages.pl/common/7z.md index 5842b0e454..803d714edc 100644 --- a/pages.pl/common/7z.md +++ b/pages.pl/common/7z.md @@ -1,7 +1,7 @@ # 7z > Archiwizator plików o wysokim stopniu kompresji. -> Więcej informacji: . +> Więcej informacji: . - Zarchiwizuj plik lub katalog: @@ -19,7 +19,7 @@ `7z x {{zarchiwizowane.7z}} -o{{sciezka/do/wyjscia}}` -- Wypakuj archiwum do stdout: +- Wypakuj archiwum do `stdout`: `7z x {{zarchiwizowane.7z}} -so` diff --git a/pages.pl/common/7za.md b/pages.pl/common/7za.md index 55af201e02..748b2abc93 100644 --- a/pages.pl/common/7za.md +++ b/pages.pl/common/7za.md @@ -2,7 +2,7 @@ > Archiwizator plików o wysokim współczynniku kompresji. > Samodzielna wersja `7z` z obsługą mniejszej liczby typów archiwów. -> Więcej informacji: . +> Więcej informacji: . - Zarchiwizuj plik lub katalog: diff --git a/pages.pl/common/7zr.md b/pages.pl/common/7zr.md index 439cb5bbb7..00045af6ab 100644 --- a/pages.pl/common/7zr.md +++ b/pages.pl/common/7zr.md @@ -2,7 +2,7 @@ > Archiwizator plików o wysokim współczynniku kompresji. > Samodzielna wersja `7z` obsługująca tylko pliki typu .7z. -> Więcej informacji: . +> Więcej informacji: . - Zarchiwizuj plik lub katalog: diff --git a/pages.pl/common/arp.md b/pages.pl/common/arp.md index 81e3208950..52d1822026 100644 --- a/pages.pl/common/arp.md +++ b/pages.pl/common/arp.md @@ -7,10 +7,6 @@ `arp -a` -- Wyczyść całość cache: - -`sudo arp -a -d` - - Usuń konkretny wpis: `arp -d {{adres}}` diff --git a/pages.pl/common/autoflake.md b/pages.pl/common/autoflake.md index d5ed507f08..ac2971b0a0 100644 --- a/pages.pl/common/autoflake.md +++ b/pages.pl/common/autoflake.md @@ -5,15 +5,15 @@ - Usuń nieużywane zmienne z jednego pliku i wyświetl różnicę: -`autoflake --remove-unused-variables {{file.py}}` +`autoflake --remove-unused-variables {{ścieżka/do/pliku.py}}` - Usuń nieużywane importy z wielu plików i wyświetl różnice: -`autoflake --remove-all-unused-imports {{file1.py}} {{file2.py}} {{file3.py}}` +`autoflake --remove-all-unused-imports {{ścieżka/do/pliku1.py ścieżka/do/pliku2.py ...}}` - Usuń nieużywane zmienne z pliku, zastępując plik: -`autoflake --remove-unused-variables --in-place {{file.py}}` +`autoflake --remove-unused-variables --in-place {{ścieżka/do/pliku.py}}` - Usuń nieużywane zmienne rekurencyjnie ze wszystkich plików w katalogu, nadpisując każdy plik: diff --git a/pages.pl/common/babel.md b/pages.pl/common/babel.md index 17e8ce204d..0d541952e0 100644 --- a/pages.pl/common/babel.md +++ b/pages.pl/common/babel.md @@ -3,7 +3,7 @@ > Transpiler, który konwertuje kod ze składni JavaScript ES6 / ES7 na składnię ES5. > Więcej informacji: . -- Transpiluj określony plik wejściowy i dane wyjściowe do stdout: +- Transpiluj określony plik wejściowy i dane wyjściowe do `stdout`: `babel {{siezka/do/pliku}}` diff --git a/pages.pl/common/base32.md b/pages.pl/common/base32.md index d8f916d859..14e9b44b72 100644 --- a/pages.pl/common/base32.md +++ b/pages.pl/common/base32.md @@ -11,10 +11,10 @@ `base32 --decode {{nazwapliku}}` -- Enkoduj z stdin: +- Enkoduj z `stdin`: `{{jakiespolecenie}} | base32` -- Dekoduj z stdin: +- Dekoduj z `stdin`: `{{jakiespolecenie}} | base32 --decode` diff --git a/pages.pl/common/base64.md b/pages.pl/common/base64.md index ab3298f48c..4a0e8cc489 100644 --- a/pages.pl/common/base64.md +++ b/pages.pl/common/base64.md @@ -11,10 +11,10 @@ `base64 --decode {{nazwapliku}}` -- Enkoduj z stdin: +- Enkoduj z `stdin`: `{{jakiespolecenie}} | base64` -- Dekoduj z stdin: +- Dekoduj z `stdin`: `{{jakiespolecenie}} | base64 --decode` diff --git a/pages.pl/common/bat.md b/pages.pl/common/bat.md new file mode 100644 index 0000000000..9050a1d96c --- /dev/null +++ b/pages.pl/common/bat.md @@ -0,0 +1,29 @@ +# bat + +> Wypisz i łącz pliki. +> Klon `cat` z podświetlaniem składni i integracją z Gitem. +> Więcej informacji: . + +- Wypisz zawartość pliku na standardowe wyjście: + +`bat {{ścieżka/do/pliku}}` + +- Połącz kilka plików w plik docelowy: + +`bat {{plik1}} {{plik2}} > {{plik_docelowy}}` + +- Dodaj kilka plików do pliku docelowego: + +`bat {{plik1}} {{plik2}} >> {{plik_docelowy}}` + +- Ponumeruj wszystkie linie: + +`bat --number {{ścieżka/do/pliku}}` + +- Podświetl składnię pliku JSON: + +`bat --language json {{plik.json}}` + +- Wyświetl wszystkie obsługiwane języki: + +`bat --list-languages` diff --git a/pages.pl/common/bun.md b/pages.pl/common/bun.md new file mode 100644 index 0000000000..abb4c21344 --- /dev/null +++ b/pages.pl/common/bun.md @@ -0,0 +1,37 @@ +# bun + +> Środowisko uruchomieniowe JavaScript i zestaw narzędzi. +> Zawiera kompilator, narzędzie do uruchamiania testów i menadżera pakietów. +> Więcej informacji: . + +- Uruchom plik JavaScript lub skrypt `package.json`: + +`bun run {{ścieka/do/pliku|nazwa_skryptu}}` + +- Uruchom testy jednostkowe: + +`bun test` + +- Pobierz i zainstaluj wszystkie pakiety wpisane jako zależności w `package.json`: + +`bun install` + +- Dodaj zależność do `package.json`: + +`bun add {{nazwa_biblioteki}}` + +- Usuń zależność z `package.json`: + +`bun remove {{nazwa_biblioteki}}` + +- Stwórz nowy projekt Bun w aktualnym katalogu: + +`bun init` + +- Uruchom REPL (interaktywną powłokę): + +`bun repl` + +- Zaktualizuj Bun do najnowszej wersji: + +`bun upgrade` diff --git a/pages.pl/common/bundler.md b/pages.pl/common/bundler.md new file mode 100644 index 0000000000..5d5f757748 --- /dev/null +++ b/pages.pl/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> To polecenie jest aliasem `bundle`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr bundle` diff --git a/pages.pl/common/clamav.md b/pages.pl/common/clamav.md new file mode 100644 index 0000000000..ca19a9c2ff --- /dev/null +++ b/pages.pl/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> To polecenie jest aliasem `clamdscan`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr clamdscan` diff --git a/pages.pl/common/clang-cpp.md b/pages.pl/common/clang-cpp.md index f2a97b11e3..124a0ad8ed 100644 --- a/pages.pl/common/clang-cpp.md +++ b/pages.pl/common/clang-cpp.md @@ -2,6 +2,6 @@ > To polecenie jest aliasem `clang++`. -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr clang++` diff --git a/pages.pl/common/clojure.md b/pages.pl/common/clojure.md index 3803c2caf6..128bf47c98 100644 --- a/pages.pl/common/clojure.md +++ b/pages.pl/common/clojure.md @@ -2,6 +2,6 @@ > To polecenie jest aliasem `clj`. -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr clj` diff --git a/pages.pl/common/cola.md b/pages.pl/common/cola.md index c34fe7b2ec..21e8c1425c 100644 --- a/pages.pl/common/cola.md +++ b/pages.pl/common/cola.md @@ -2,6 +2,6 @@ > To polecenie jest aliasem `git-cola`. -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr git-cola` diff --git a/pages.pl/common/composer.md b/pages.pl/common/composer.md new file mode 100644 index 0000000000..990117405f --- /dev/null +++ b/pages.pl/common/composer.md @@ -0,0 +1,36 @@ +# composer + +> Menadżer pakietów dla projektów PHP. +> Więcej informacji: . + +- Interaktywnie utwórz plik `composer.json`: + +`composer init` + +- Dodaj pakiet do zależności tego projektu, dodając wpis do `composer.json`: + +`composer require {{użytkownik/pakiet}}` + +- Zainstaluj wszystkie zależności z projektowego `composer.json` i utwórz `composer.lock`: + +`composer install` + +- Odinstaluj pakiet z tego projektu, usuwając go jako zależność z `composer.json` i `composer.lock`: + +`composer remove {{użytkownik/pakiet}}` + +- Zaktualizuj wszystkie pakiety z projektowego `composer.json` i zanotuj nową wersję w `composer.lock`: + +`composer update` + +- Zaktualizuj tylko `composer.lock` po ręcznej aktualizacji `composer.json`: + +`composer update --lock` + +- Dowiedz się więcej o powodach dlaczego zależność nie może zostać zainstalowana: + +`composer why-not {{użytkownik/pakiet}}` + +- Zaktualizuj narzędzie composer do najnowszej wersji: + +`composer self-update` diff --git a/pages.pl/common/cron.md b/pages.pl/common/cron.md new file mode 100644 index 0000000000..d009eef4ae --- /dev/null +++ b/pages.pl/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> To polecenie jest aliasem `crontab`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr crontab` diff --git a/pages.pl/common/eslint.md b/pages.pl/common/eslint.md index 18dac62e05..d4906dc331 100644 --- a/pages.pl/common/eslint.md +++ b/pages.pl/common/eslint.md @@ -1,20 +1,20 @@ # eslint -> Podłączane narzędzie lintowania dla JavaScript i JSX. +> Rozszerzalne narzędzie lintowania dla JavaScript i JSX. > Więcej informacji: . -- Stwórz eslint config: +- Stwórz plik konfiguracyjny ESlint: `eslint --init` -- Lint na danym zestawie plików: +- Lintuj jeden lub więcej plików: -`eslint {{nazwapliku}}.js {{nazwapliku1}}.js` +`eslint {{ścieżka/do/pliku1.js ścieżka/do/pliku2.js ...}}` -- Napraw lint issues: +- Napraw wykryte problemy: `eslint --fix` -- Lint z config: +- Lintuj używając podanego pliku konfiguracyjnego: -`eslint -c {{sciezka/do/pliku_config}} {{app/src}}` +`eslint -c {{ścieżka/do/pliku_konfiguracyjnego}} {{ścieżka/do/pliku1.js ścieżka/do/pliku2.js}}` diff --git a/pages.pl/common/exa.md b/pages.pl/common/exa.md new file mode 100644 index 0000000000..42ffc1b13a --- /dev/null +++ b/pages.pl/common/exa.md @@ -0,0 +1,36 @@ +# exa + +> Nowoczesny odpowiednik `ls` (wyświetla zawartość katalogu). +> Więcej informacji: . + +- Wyświetl listę plików, po jednym w linii: + +`exa --oneline` + +- Wyświetl wszystkie pliki, łącznie z ukrytymi: + +`exa --all` + +- Wyświetl listę wszystkich plików ze szczegółami (uprawnienia, właściciel, wielkość i data zmiany): + +`exa --long --all` + +- Wyświetl listę plików posortowaną względem wielkości pliku, od największego: + +`exa --reverse --sort={{size}}` + +- Wyświetl drzewko plików (trzy poziomy): + +`exa --long --tree --level={{3}}` + +- Wyświetl listę plików posortowaną względem daty zmiany, od najstarszego: + +`exa --long --sort={{modified}}` + +- Wyświetl listę plików wraz z nagłówkiem, ikoną i statusem Git: + +`exa --long --header --icons --git` + +- Wyświetl listę plików, ignorując pliki z `.gitignore`: + +`exa --git-ignore` diff --git a/pages.pl/common/eza.md b/pages.pl/common/eza.md new file mode 100644 index 0000000000..f2076194c6 --- /dev/null +++ b/pages.pl/common/eza.md @@ -0,0 +1,36 @@ +# eza + +> Nowoczesny odpowiednik `ls`, fork `exa`. +> Więcej informacji: . + +- Wyświetl listę plików, po jednym w linii: + +`eza --oneline` + +- Wyświetl wszystkie pliki, łącznie z ukrytymi: + +`eza --all` + +- Wyświetl listę wszystkich plików ze szczegółami (uprawnienia, właściciel, wielkość i data zmiany): + +`eza --long --all` + +- Wyświetl listę plików posortowaną względem wielkości pliku, od największego: + +`eza --reverse --sort={{size}}` + +- Wyświetl drzewko plików (trzy poziomy): + +`eza --long --tree --level={{3}}` + +- Wyświetl listę plików posortowaną względem daty zmiany, od najstarszego: + +`eza --long --sort={{modified}}` + +- Wyświetl listę plików wraz z nagłówkiem, ikoną i statusem Git: + +`eza --long --header --icons --git` + +- Wyświetl listę plików, ignorując pliki z `.gitignore`: + +`eza --git-ignore` diff --git a/pages.pl/common/fossil-ci.md b/pages.pl/common/fossil-ci.md new file mode 100644 index 0000000000..1e23f3083f --- /dev/null +++ b/pages.pl/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> To polecenie jest aliasem `fossil-commit`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr fossil-commit` diff --git a/pages.pl/common/fossil-delete.md b/pages.pl/common/fossil-delete.md new file mode 100644 index 0000000000..10f919f11b --- /dev/null +++ b/pages.pl/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> To polecenie jest aliasem `fossil rm`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr fossil rm` diff --git a/pages.pl/common/fossil-forget.md b/pages.pl/common/fossil-forget.md new file mode 100644 index 0000000000..af6a342ee8 --- /dev/null +++ b/pages.pl/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> To polecenie jest aliasem `fossil rm`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr fossil rm` diff --git a/pages.pl/common/fossil-new.md b/pages.pl/common/fossil-new.md new file mode 100644 index 0000000000..d667abbbc4 --- /dev/null +++ b/pages.pl/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> To polecenie jest aliasem `fossil-init`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr fossil-init` diff --git a/pages.pl/common/gh-cs.md b/pages.pl/common/gh-cs.md new file mode 100644 index 0000000000..44a14ff14c --- /dev/null +++ b/pages.pl/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> To polecenie jest aliasem `gh-codespace`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr gh-codespace` diff --git a/pages.pl/common/gnmic-sub.md b/pages.pl/common/gnmic-sub.md new file mode 100644 index 0000000000..6bfb110435 --- /dev/null +++ b/pages.pl/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> To polecenie jest aliasem `gnmic subscribe`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr gnmic subscribe` diff --git a/pages.pl/common/google-chrome.md b/pages.pl/common/google-chrome.md new file mode 100644 index 0000000000..d65bfbd9fd --- /dev/null +++ b/pages.pl/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> To polecenie jest aliasem `chromium`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr chromium` diff --git a/pages.pl/common/http.md b/pages.pl/common/http.md index 057a7bb7f8..2218939643 100644 --- a/pages.pl/common/http.md +++ b/pages.pl/common/http.md @@ -27,6 +27,6 @@ `http --auth {{nazwauzytkownika:haslo}} {{przyklad.org}}` -- Określ surowe ciało żądania za pośrednictwem stdin: +- Określ surowe ciało żądania za pośrednictwem `stdin`: `cat {{dane.txt}} | http PUT {{przyklad.org}}` diff --git a/pages.pl/common/hx.md b/pages.pl/common/hx.md new file mode 100644 index 0000000000..f9e6903f98 --- /dev/null +++ b/pages.pl/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> To polecenie jest aliasem `helix`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr helix` diff --git a/pages.pl/common/java.md b/pages.pl/common/java.md index c0019c6b77..6d053b22ff 100644 --- a/pages.pl/common/java.md +++ b/pages.pl/common/java.md @@ -1,7 +1,7 @@ # java > Java Application Launcher. -> Więcej informacji: . +> Więcej informacji: . - Uruchom plik .class java, który zawiera główną metodę, używając tylko nazwy klasy: diff --git a/pages.pl/common/kafkacat.md b/pages.pl/common/kafkacat.md new file mode 100644 index 0000000000..e005ceb37d --- /dev/null +++ b/pages.pl/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> To polecenie jest aliasem `kcat`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr kcat` diff --git a/pages.pl/common/llvm-ar.md b/pages.pl/common/llvm-ar.md index c11b398d63..9350d26f50 100644 --- a/pages.pl/common/llvm-ar.md +++ b/pages.pl/common/llvm-ar.md @@ -2,6 +2,6 @@ > To polecenie jest aliasem `ar`. -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr ar` diff --git a/pages.pl/common/llvm-g++.md b/pages.pl/common/llvm-g++.md index 62e49350e7..e77ecf653b 100644 --- a/pages.pl/common/llvm-g++.md +++ b/pages.pl/common/llvm-g++.md @@ -2,6 +2,6 @@ > To polecenie jest aliasem `clang++`. -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr clang++` diff --git a/pages.pl/common/llvm-gcc.md b/pages.pl/common/llvm-gcc.md index 041d138e61..dda8fe3ef5 100644 --- a/pages.pl/common/llvm-gcc.md +++ b/pages.pl/common/llvm-gcc.md @@ -2,6 +2,6 @@ > To polecenie jest aliasem `clang`. -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr clang` diff --git a/pages.pl/common/llvm-nm.md b/pages.pl/common/llvm-nm.md index cdb4f797a8..95ed703a0e 100644 --- a/pages.pl/common/llvm-nm.md +++ b/pages.pl/common/llvm-nm.md @@ -2,6 +2,6 @@ > To polecenie jest aliasem `nm`. -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr nm` diff --git a/pages.pl/common/llvm-objdump.md b/pages.pl/common/llvm-objdump.md index 264f382410..0fedcdf131 100644 --- a/pages.pl/common/llvm-objdump.md +++ b/pages.pl/common/llvm-objdump.md @@ -2,6 +2,6 @@ > To polecenie jest aliasem `objdump`. -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr objdump` diff --git a/pages.pl/common/llvm-strings.md b/pages.pl/common/llvm-strings.md index 62e0c976ff..6a07efe6bb 100644 --- a/pages.pl/common/llvm-strings.md +++ b/pages.pl/common/llvm-strings.md @@ -2,6 +2,6 @@ > To polecenie jest aliasem `strings`. -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr strings` diff --git a/pages.pl/common/lzcat.md b/pages.pl/common/lzcat.md new file mode 100644 index 0000000000..b96f83a499 --- /dev/null +++ b/pages.pl/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> To polecenie jest aliasem `xz`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr xz` diff --git a/pages.pl/common/lzma.md b/pages.pl/common/lzma.md new file mode 100644 index 0000000000..01bda63ced --- /dev/null +++ b/pages.pl/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> To polecenie jest aliasem `xz`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr xz` diff --git a/pages.pl/common/mscore.md b/pages.pl/common/mscore.md index 4f66f76478..b622dc39f4 100644 --- a/pages.pl/common/mscore.md +++ b/pages.pl/common/mscore.md @@ -3,6 +3,6 @@ > To polecenie jest aliasem `musescore`. > Więcej informacji: . -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr musescore` diff --git a/pages.pl/common/nm-classic.md b/pages.pl/common/nm-classic.md new file mode 100644 index 0000000000..84b1e0cd36 --- /dev/null +++ b/pages.pl/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> To polecenie jest aliasem `nm`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr nm` diff --git a/pages.pl/common/ntl.md b/pages.pl/common/ntl.md new file mode 100644 index 0000000000..e866b199d9 --- /dev/null +++ b/pages.pl/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> To polecenie jest aliasem `netlify`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr netlify` diff --git a/pages.pl/common/php.md b/pages.pl/common/php.md index 6418cf6f0d..67ab6f4cc8 100644 --- a/pages.pl/common/php.md +++ b/pages.pl/common/php.md @@ -30,3 +30,7 @@ - Wyświetl informacje o bieżącej konfiguracji PHP: `php -i` + +- Wyświetl informacje o konkretnej funkcji: + +`php --rf {{nazwa_funkcji}}` diff --git a/pages.pl/common/pio-init.md b/pages.pl/common/pio-init.md index b874e0fff6..e974d8032a 100644 --- a/pages.pl/common/pio-init.md +++ b/pages.pl/common/pio-init.md @@ -2,6 +2,6 @@ > To polecenie jest aliasem `pio project`. -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr pio project` diff --git a/pages.pl/common/piodebuggdb.md b/pages.pl/common/piodebuggdb.md index 48033e6894..f73e8a77e2 100644 --- a/pages.pl/common/piodebuggdb.md +++ b/pages.pl/common/piodebuggdb.md @@ -2,6 +2,6 @@ > To polecenie jest aliasem `pio debug`. -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr pio debug` diff --git a/pages.pl/common/platformio.md b/pages.pl/common/platformio.md index 576dbc49a3..c5673cd8cf 100644 --- a/pages.pl/common/platformio.md +++ b/pages.pl/common/platformio.md @@ -3,6 +3,6 @@ > To polecenie jest aliasem `pio`. > Więcej informacji: . -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr pio` diff --git a/pages.pl/common/ptpython3.md b/pages.pl/common/ptpython3.md new file mode 100644 index 0000000000..281dfdb3c8 --- /dev/null +++ b/pages.pl/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> To polecenie jest aliasem `ptpython`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr ptpython` diff --git a/pages.pl/common/python3.md b/pages.pl/common/python3.md new file mode 100644 index 0000000000..167ceb3298 --- /dev/null +++ b/pages.pl/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> To polecenie jest aliasem `python`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr python` diff --git a/pages.pl/common/r2.md b/pages.pl/common/r2.md index b92fb6c6fe..8b64e7f767 100644 --- a/pages.pl/common/r2.md +++ b/pages.pl/common/r2.md @@ -2,6 +2,6 @@ > To polecenie jest aliasem `radare2`. -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr radare2` diff --git a/pages.pl/common/rcat.md b/pages.pl/common/rcat.md new file mode 100644 index 0000000000..4fc4490cfc --- /dev/null +++ b/pages.pl/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> To polecenie jest aliasem `rc`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr rc` diff --git a/pages.pl/common/ripgrep.md b/pages.pl/common/ripgrep.md new file mode 100644 index 0000000000..fc0d4e7d62 --- /dev/null +++ b/pages.pl/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> To polecenie jest aliasem `rg`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr rg` diff --git a/pages.pl/common/rsync.md b/pages.pl/common/rsync.md new file mode 100644 index 0000000000..c0a88c0045 --- /dev/null +++ b/pages.pl/common/rsync.md @@ -0,0 +1,37 @@ +# rsync + +> Przesyłaj pliki do lub ze zdalnego hosta (ale nie pomiędzy dwoma zdalnymi hostami), domyślnie używając SSH. +> Aby wskazać na ścieżkę zdalną, użyj `host:ścieżka/do/pliku_lub_katalogu`. +> Więcej informacji: . + +- Prześlij plik: + +`rsync {{ścieżka/do/źródła}} {{ścieżka/do/miejsca_docelowego}}` + +- Użyj trybu archiwum (rekursywnie kopiuj katalogi, kopiuj dowiązania symboliczne bez rozwiązywania i zachowaj uprawnienia, własność i czasy modyfikacji): + +`rsync --archive {{ścieżka/do/źródła}} {{ścieżka/do/miejsca_docelowego}}` + +- Kompresuj dane podczas gdy są wysyłane do miejsca docelowego, wyświetlaj szczegółowy i czytelny dla człowieka postęp i zachowaj częściowo przesłane pliki w przypadku przerwania: + +`rsync --compress --verbose --human-readable --partial --progress {{ścieżka/do/źródła}} {{ścieżka/do/miejsca_docelowego}}` + +- Rekursywnie kopiuj katalogi: + +`rsync --recursive {{ścieżka/do/źródła}} {{ścieżka/do/miejsca_docelowego}}` + +- Prześlij zawartość katalogu, ale nie sam katalog: + +`rsync --recursive {{ścieżka/do/źródła}}/ {{ścieżka/do/miejsca_docelowego}}` + +- Rekursywnie kopiuj katalogi, użyj trybu archiwum, rozwiąż dowiązania symboliczne i pomiń pliki, które są nowsze w miejscu docelowym: + +`rsync --recursive --archive --update --copy-links {{ścieżka/do/źródła}} {{ścieżka/do/miejsca_docelowego}}` + +- Prześlij katalog do zdalnego hosta, na którym działa `rsyncd` i usuń pliki w miejscu docelowym które nie istnieją w źródle: + +`rsync --recursive --delete rsync://{{host}}:{{ścieżka/do/źródła}} {{ścieżka/do/miejsca_docelowego}}` + +- Prześlij plik poprzez SSH używając innego portu niż domyślny (22) i wyświetlaj globalny postęp: + +`rsync --rsh 'ssh -p {{port}}' --info=progress2 {{host}}:{{ścieżka/do/źródła}} {{ścieżka/do/miejsca_docelowego}}` diff --git a/pages.pl/common/tldrl.md b/pages.pl/common/tldrl.md index f616bfe8c9..d3422b4373 100644 --- a/pages.pl/common/tldrl.md +++ b/pages.pl/common/tldrl.md @@ -3,6 +3,6 @@ > To polecenie jest aliasem `tldr-lint`. > Więcej informacji: . -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr tldr-lint` diff --git a/pages.pl/common/tlmgr-arch.md b/pages.pl/common/tlmgr-arch.md index ce25f1b32e..167e480d66 100644 --- a/pages.pl/common/tlmgr-arch.md +++ b/pages.pl/common/tlmgr-arch.md @@ -3,6 +3,6 @@ > To polecenie jest aliasem `tlmgr platform`. > Więcej informacji: . -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr tlmgr platform` diff --git a/pages.pl/common/todoman.md b/pages.pl/common/todoman.md new file mode 100644 index 0000000000..15f13a06b3 --- /dev/null +++ b/pages.pl/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> To polecenie jest aliasem `todo`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr todo` diff --git a/pages.pl/common/transmission.md b/pages.pl/common/transmission.md new file mode 100644 index 0000000000..cb425dec52 --- /dev/null +++ b/pages.pl/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> To polecenie jest aliasem `transmission-daemon`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr transmission-daemon` diff --git a/pages.pl/common/unlzma.md b/pages.pl/common/unlzma.md new file mode 100644 index 0000000000..2cea5cd876 --- /dev/null +++ b/pages.pl/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> To polecenie jest aliasem `xz`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr xz` diff --git a/pages.pl/common/unxz.md b/pages.pl/common/unxz.md new file mode 100644 index 0000000000..3b6804f227 --- /dev/null +++ b/pages.pl/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> To polecenie jest aliasem `xz`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr xz` diff --git a/pages.pl/common/vi.md b/pages.pl/common/vi.md index 216f6b59f5..01b2f7ff70 100644 --- a/pages.pl/common/vi.md +++ b/pages.pl/common/vi.md @@ -2,6 +2,6 @@ > To polecenie jest aliasem `vim`. -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr vim` diff --git a/pages.pl/common/xzcat.md b/pages.pl/common/xzcat.md new file mode 100644 index 0000000000..69be47cd41 --- /dev/null +++ b/pages.pl/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> To polecenie jest aliasem `xz`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr xz` diff --git a/pages.pl/linux/abbr.md b/pages.pl/linux/abbr.md new file mode 100644 index 0000000000..df54dad949 --- /dev/null +++ b/pages.pl/linux/abbr.md @@ -0,0 +1,21 @@ +# abbr + +> Zarządzaj skrótami dla powłoki fish. +> Zdefiniowane przez użytkownika słowa są zastępowane po wpisaniu dłuższymi zwrotami. +> Więcej informacji: . + +- Dodaj nowy skrót: + +`abbr --add {{nazwa_skrótu}} {{polecenie}} {{argumenty_polecenia}}` + +- Zmień nazwę istniejącego skrótu: + +`abbr --rename {{stara_nazwa}} {{nowa_nazwa}}` + +- Usuń istniejący skrót: + +`abbr --erase {{nazwa_skrótu}}` + +- Zaimportuj skróty zdefiniowane na innym hoście poprzez SSH: + +`ssh {{nazwa_hosta}} abbr --show | source` diff --git a/pages.pl/linux/ac.md b/pages.pl/linux/ac.md new file mode 100644 index 0000000000..1614d6ef8e --- /dev/null +++ b/pages.pl/linux/ac.md @@ -0,0 +1,24 @@ +# ac + +> Wyświetl statystyki dotyczące czasu połączenia użytkowników. +> Więcej informacji: . + +- Wyświetl w godzinach jak długo aktualny użytkownik był połączony: + +`ac` + +- Wyświetl ile godzin użytkownicy byli połączeni: + +`ac --individual-totals` + +- Wyświetl ile godzin konkretny użytkownik był połączony: + +`ac --individual-totals {{użytkownik}}` + +- Wyświetl ile godzin na dzień konkretny użytkownik był podłączony (z podsumowaniem): + +`ac --daily-totals --individual-totals {{użytkownik}}` + +- Wyświetlaj także dodatkowe szczegóły: + +`ac --compatibility` diff --git a/pages.pl/linux/acpi.md b/pages.pl/linux/acpi.md new file mode 100644 index 0000000000..8d72f2f95e --- /dev/null +++ b/pages.pl/linux/acpi.md @@ -0,0 +1,28 @@ +# acpi + +> Wyśwetl status baterii lub informacje dotyczące temperatury. +> Więcej informacji: . + +- Pokaż informacje o baterii: + +`acpi` + +- Pokaż informacje dotyczące temperatury: + +`acpi -t` + +- Pokaż informacje dotyczące urządzeń chłodzących: + +`acpi -c` + +- Pokaż informacje dotyczące temperatury w stopniach Fahrenheita: + +`acpi -tf` + +- Pokaż wszystkie informacje: + +`acpi -V` + +- Pobieraj informacje z `/proc` zamiast `/sys`: + +`acpi -p` diff --git a/pages.pl/linux/adig.md b/pages.pl/linux/adig.md new file mode 100644 index 0000000000..6ecc3ef9eb --- /dev/null +++ b/pages.pl/linux/adig.md @@ -0,0 +1,24 @@ +# adig + +> Wyświetl informacje otrzymane z serwerów DNS (Domain Name System). +> Więcej informacji: . + +- Wyświetl rekord A (domyślny) z DNS dla hosta(-ów): + +`adig {{example.com}}` + +- Wyświetl dodatkowe wyjście [d]ebugowania: + +`adig -d {{example.com}}` + +- Połącz z określonym [s]erwerem DNS: + +`adig -s {{1.2.3.4}} {{example.com}}` + +- Użyj określonego portu TCP łącząc się z serwerem DNS: + +`adig -T {{port}} {{example.com}}` + +- Użyj określonego portu UDP łącząc się z serwerem DNS: + +`adig -U {{port}} {{example.com}}` diff --git a/pages.pl/linux/ahost.md b/pages.pl/linux/ahost.md new file mode 100644 index 0000000000..c66e57b6e6 --- /dev/null +++ b/pages.pl/linux/ahost.md @@ -0,0 +1,16 @@ +# ahost + +> Narzędzie zapytań DNS do wyświetlania rekordów A lub AAAA powiązanych z nazwą hosta lub adresem IP. +> Więcej informacji: . + +- Wyświetl rekord `A` lub `AAAA` powiązany z nazwą hosta lub adresem IP:: + +`ahost {{example.com}}` + +- Wyświetl dodatkowe wyjście debugowe: + +`ahost -d {{example.com}}` + +- Wyświetl rekord wskazanego typu: + +`ahost -t {{a|aaaa|u}} {{example.com}}` diff --git a/pages.pl/linux/alien.md b/pages.pl/linux/alien.md new file mode 100644 index 0000000000..0aa6e87638 --- /dev/null +++ b/pages.pl/linux/alien.md @@ -0,0 +1,20 @@ +# alien + +> Konwertuj różne pakiety instalacyjne na inne formaty. +> Więcej informacji: . + +- Konwertuj wskazany plik instalacyjny do formatu Debiana (rozszerzenie `.deb`): + +`sudo alien --to-deb {{ścieżka/do/pliku}}` + +- Konwertuj wskazany plik instalacyjny do formatu Red Hata (rozszerzenie `.rpm`): + +`sudo alien --to-rpm {{ścieżka/do/pliku}` + +- Konwertuj wskazany plik instalacyjny do formatu plików instalacyjnych Slackware (rozszerzenie `.tgz`): + +`sudo alien --to-tgz {{ścieżka/do/pliku}}` + +- Konwertuj wskazany plik instalacyjny do formatu Debiana i zainstaluj go w systemie: + +`sudo alien --to-deb --install {{ścieżka/do/pliku}}` diff --git a/pages.pl/linux/apk.md b/pages.pl/linux/apk.md new file mode 100644 index 0000000000..650317c1c1 --- /dev/null +++ b/pages.pl/linux/apk.md @@ -0,0 +1,28 @@ +# apk + +> Narzędzie zarządzania pakietami Alpine Linux. +> Więcej informacji: . + +- Zaktualizuj indeksy repozytoriów ze wszystkich zdalnych repozytoriów: + +`apk update` + +- Zainstaluj nowy pakiet: + +`apk add {{pakiet}}` + +- Usuń pakiet: + +`apk del {{pakiet}}` + +- Napraw pakiet lub zaktualizuj go bez modyfikacji głownych zależności: + +`apk fix {{pakiet}}` + +- Szukaj pakietu za pomocą słów kluczowych: + +`apk search {{słowa_kluczowe}}` + +- Wyświetl informacje o określonym pakiecie: + +`apk info {{pakiet}}` diff --git a/pages.pl/linux/aplay.md b/pages.pl/linux/aplay.md new file mode 100644 index 0000000000..b9d763fd6a --- /dev/null +++ b/pages.pl/linux/aplay.md @@ -0,0 +1,16 @@ +# aplay + +> Konsolowy odtwarzacz dźwięku dla sterownika dźwiękowego ALSA. +> Więcej informacji: . + +- Odtwórz określony plik (częstotliwość próbkowania, ilość bitów, itd. będą określane automatycznie na podstawie formatu): + +`aplay {{ścieżka/do/pliku}}` + +- Odtwórz pierwsze 10 sekund określonego pliku z częstotliwością 2500 Hz: + +`aplay --duration={{10}} --rate={{2500}} {{ścieżka/do/pliku}}` + +- Odtwórz surowy plik jako plik Mu-Law `.au`, 22050 Hz, mono, 8-bit: + +`aplay --channels={{1}} --file-type {{raw}} --rate={{22050}} --format={{mu_law}} {{ścieżka/do/pliku}}` diff --git a/pages.pl/linux/apt-cache.md b/pages.pl/linux/apt-cache.md index 6af6991af8..11090fd8bf 100644 --- a/pages.pl/linux/apt-cache.md +++ b/pages.pl/linux/apt-cache.md @@ -3,22 +3,22 @@ > Narzędzie do zapytań o pakiety w Debianie i Ubuntu. > Więcej informacji: . -- Wyszukanie pakietu w aktualnych źródłach: +- Wyszukaj pakiet w aktualnych źródłach: `apt-cache search {{zapytanie}}` -- Pokazanie informacji o pakiecie: +- Wyświetl informacje o pakiecie: `apt-cache show {{pakiet}}` -- Pokazanie, czy pakiet jest zainstalowany i aktualnej wersji: +- Wyświetl, czy pakiet jest zainstalowany w aktualnej wersji: `apt-cache policy {{pakiet}}` -- Pokazanie zależności pakietu: +- Wyświetl zależności pakietu: `apt-cache depends {{pakiet}}` -- Pokazanie pakietów mających zależność od konkretnego pakietu: +- Wyświetl pakiety zależne od konkretnego pakietu: `apt-cache rdepends {{pakiet}}` diff --git a/pages.pl/linux/apt-file.md b/pages.pl/linux/apt-file.md index 35f464ee1a..9276fefa25 100644 --- a/pages.pl/linux/apt-file.md +++ b/pages.pl/linux/apt-file.md @@ -1,20 +1,20 @@ # apt-file -> Wyszukiwanie plików w pakietach apt, łącznie z tymi jeszcze nie zainstalowanymi. +> Wyszukaj pliki w pakietach apt, w tym jeszcze nie zainstalowanych. > Więcej informacji: . -- Aktualizacja bazy metadanych: +- Zaktualizuj bazę metadanych: `sudo apt update` -- Wyszukanie pakietu, który zawiera określony plik lub ścieżkę: +- Wyszukaj pakiet, który zawiera określony plik lub ścieżkę: `apt-file {{search|find}} {{część/ścieżki/do/pliku}}` -- Wyświetlenie zawartości określonego pakietu: +- Wyświetl zawartośċ określonego pakietu: `apt-file {{show|list}} {{pakiet}}` -- Wyszukanie pakietów, które pasują do podanego `wyrażenia_regularnego`: +- Wyszukaj pakiety, które pasują do podanego `wyrażenia_regularnego`: `apt-file {{search|find}} --regexp {{wyrażenie_regularne}}` diff --git a/pages.pl/linux/apt-key.md b/pages.pl/linux/apt-key.md index 1254e66869..7fa41a2589 100644 --- a/pages.pl/linux/apt-key.md +++ b/pages.pl/linux/apt-key.md @@ -1,6 +1,6 @@ # apt-key -> Narzędzie do zarządzania kluczami APT Package Manager dla Debiana i Ubuntu. +> Narzędzie do zarządzania kluczami menedżera pakietów APT dla Debiana i Ubuntu. > Notatka: `apt-key` jest aktualnie przestarzały (za wyjątkiem użycia `apt-key del` w skryptach opiekunów). > Więcej informacji: . @@ -8,18 +8,18 @@ `apt-key list` -- Dodanie klucza do magazynu zaufanych kluczy: +- Dodaj klucz do magazynu zaufanych kluczy: `apt-key add {{plik_z_kluczem_publicznym.asc}}` -- Usunięcie klucza z magazynu zaufanych kluczy: +- Usuń klucz z magazynu zaufanych kluczy: `apt-key del {{id_klucza}}` -- Dodanie zdalnego klucza do magazynu zaufanych kluczy: +- Dodaj zdalny klucz do magazynu zaufanych kluczy: `wget -qO - {{https://host.tld/nazwa_pliku.key}} | apt-key add -` -- Dodanie klucza z serwera kluczy na podstawie id klucza: +- Dodaj klucz z serwera kluczy na podstawie id klucza: `apt-key adv --keyserver {{pgp.mit.edu}} --recv {{id_klucza}}` diff --git a/pages.pl/linux/apt.md b/pages.pl/linux/apt.md index 13a994ed00..ffa7017087 100644 --- a/pages.pl/linux/apt.md +++ b/pages.pl/linux/apt.md @@ -1,37 +1,38 @@ # apt > Narzędzie do zarządzania pakietami dla dystrybucji bazujących na Debianie. -> Zalecany zamiennik `apt-get` przy uyciu interaktywnym w Ubuntu w wersji 16.04 i wyższych. +> Zalecany zamiennik `apt-get` przy użyciu interaktywnym w Ubuntu w wersjach 16.04 i wyższych. +> Odpowiednie polecenia dla innych menedżerów pakietów: . > Więcej informacji: . -- Aktualizacja listy dostępnych pakietów i ich wersji (zalecane uruchomienie przed innymi poleceniami `apt`): +- Zaktualizuj listę dostępnych pakietów i ich wersji (zaleca się uruchomienie tego przed innymi poleceniami `apt`): `sudo apt update` -- Wyszukanie podanego pakietu: +- Wyszukaj podany pakiet: `apt search {{pakiet}}` -- Wyświetlenie informacji o pakiecie: +- Wyświetl informacje o podanym pakiecie: `apt show {{pakiet}}` -- Instalacja pakietu lub aktualizacja do najnowszej dostępnej wersji: +- Zainstaluj pakiet lub zaktualizuj go do najnowszej dostępnej wersji: `sudo apt install {{pakiet}}` -- Usunięcie pakietu (użyj `purge` aby usunąć także pliki konfiguracyjne): +- Usuń pakiet (użyj `purge` aby usunąć także pliki konfiguracyjne): `sudo apt remove {{pakiet}}` -- Aktualizacja wszystkich zainstalowanych pakietów do ich najnowszych wersji: +- Zaktualizuj wszystkie zainstalowane pakiety do ich najnowszych wersji: `sudo apt upgrade` -- Wyświetlenie wszystkich pakietów: +- Wyświetl wszystkie pakiety: `apt list` -- Wyświetlenie zainstalowanych pakietów: +- Wyświetl zainstalowane pakiety: `apt list --installed` diff --git a/pages.pl/linux/bootctl.md b/pages.pl/linux/bootctl.md new file mode 100644 index 0000000000..bbcdc51afa --- /dev/null +++ b/pages.pl/linux/bootctl.md @@ -0,0 +1,28 @@ +# bootctl + +> Kontroluj ustawienia oprogramowania układowego EFI i zarządzaj programem rozruchowym. +> Więcej informacji: . + +- Wyświetl informacje o oprogramowaniu układowym i programach rozruchowych: + +`bootctl status` + +- Wyświetl wszystkie dostępne wpisy programu rozruchowego: + +`bootctl list` + +- Ustaw opcję, aby uruchomić oprogramowanie układowe przy następnym rozruchu (podobne do `sudo systemctl reboot --firmware-setup`): + +`sudo bootctl reboot-to-firmware true` + +- Podaj ścieżkę do partycji systemowej EFI (domyślnie `/efi/`, `/boot/` lub `/boot/efi`): + +`bootctl --esp-path={{/ścieżka/do/partycji_systemowej_efi/}}` + +- Zainstaluj `systemd-boot` do partycji systemowej EFI: + +`sudo bootctl install` + +- Usuń wszystkie zainstalowane wersje `systemd-boot` z partycji systemowej EFI: + +`sudo bootctl remove` diff --git a/pages.pl/linux/bspwm.md b/pages.pl/linux/bspwm.md new file mode 100644 index 0000000000..a474816a68 --- /dev/null +++ b/pages.pl/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> To polecenie jest aliasem `bspc`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr bspc` diff --git a/pages.pl/linux/cc.md b/pages.pl/linux/cc.md index 5e493daed4..87e8211618 100644 --- a/pages.pl/linux/cc.md +++ b/pages.pl/linux/cc.md @@ -3,6 +3,6 @@ > To polecenie jest aliasem dla `gcc`. > Więcej informacji: . -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr gcc` diff --git a/pages.pl/linux/cgroups.md b/pages.pl/linux/cgroups.md new file mode 100644 index 0000000000..11e64bb6f2 --- /dev/null +++ b/pages.pl/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> To polecenie jest aliasem `cgclassify`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr cgclassify` diff --git a/pages.pl/linux/coredumpctl.md b/pages.pl/linux/coredumpctl.md new file mode 100644 index 0000000000..9af3531176 --- /dev/null +++ b/pages.pl/linux/coredumpctl.md @@ -0,0 +1,24 @@ +# coredumpctl + +> Pobieraj i przetwarzaj zapisane zrzuty pamięci i metadane. +> Więcej informacji: . + +- Wyświetl wszystkie zapisane zrzuty pamięci: + +`coredumpctl list` + +- Wyświetl zapisane zrzuty pamięci podanego programu: + +`coredumpctl list {{program}}` + +- Wyświetl informacje o zrzutach pamięci programu o podanym PID: + +`coredumpctl info {{PID}}` + +- Wywołaj debugger używając ostatniego zrzutu pamięci programu: + +`coredumpctl debug {{program}}` + +- Wyodrębnij ostatni zrzut pamięci programu do pliku: + +`coredumpctl --output={{ścieżka/do/pliku}} dump {{program}}` diff --git a/pages.pl/linux/homectl.md b/pages.pl/linux/homectl.md new file mode 100644 index 0000000000..94685f2713 --- /dev/null +++ b/pages.pl/linux/homectl.md @@ -0,0 +1,36 @@ +# homectl + +> Twórz, usuwaj, zmieniaj lub sprawdzaj katalogi domowe używając usługi systemd-homed. +> Więcej informacji: . + +- Wyświetl konta użytkowników i ich powiązane katalogi domowe: + +`homectl list` + +- Utwórz konto użytkownika i jego powiązany katalog domowy: + +`sudo homectl create {{nazwa_użytkownika}}` + +- Usuń podanego użytkownika i jego powiązany katalog domowy: + +`sudo homectl remove {{nazwa_użytkownika}}` + +- Zmień hasło podanego użytkownika: + +`sudo homectl passwd {{nazwa_użytkownika}}` + +- Uruchom powłokę lub komendę z dostępem do podanego katalogu domowego: + +`sudo homectl with {{nazwa_użytkownika}} -- {{komenda}} {{argumenty_dla_komendy}}` + +- Zablokuj lub odblokuj podany katalog domowy: + +`sudo homectl {{lock|unlock}} {{nazwa_użytkownika}}` + +- Zmień miejsce na dysku przydzielone dla podanego katalogu domowego na 100 GiB: + +`sudo homectl resize {{nazwa_użytkownika}} {{100G}}` + +- Wyświetl pomoc: + +`homectl --help` diff --git a/pages.pl/linux/hostnamectl.md b/pages.pl/linux/hostnamectl.md new file mode 100644 index 0000000000..11940252d9 --- /dev/null +++ b/pages.pl/linux/hostnamectl.md @@ -0,0 +1,20 @@ +# hostnamectl + +> Wyświetl lub ustaw nazwę hosta tego komputera. +> Więcej informacji: . + +- Wyświetl nazwę hosta tego komputera: + +`hostnamectl` + +- Ustaw nazwę hosta tego komputera: + +`sudo hostnamectl set-hostname "{{nazwa_hosta}}"` + +- Ustaw ładną nazwę hosta tego komputera: + +`sudo hostnamectl set-hostname --static "{{nazwa_hosta.example.com}}" && sudo hostnamectl set-hostname --pretty "{{nazwa_hosta}}"` + +- Zresetuj nazwę hosta do jej domyślnej wartości: + +`sudo hostnamectl set-hostname --pretty ""` diff --git a/pages.pl/linux/ip-route-list.md b/pages.pl/linux/ip-route-list.md new file mode 100644 index 0000000000..30e37434c0 --- /dev/null +++ b/pages.pl/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> To polecenie jest aliasem `ip-route-show`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr ip-route-show` diff --git a/pages.pl/linux/journalctl.md b/pages.pl/linux/journalctl.md new file mode 100644 index 0000000000..eeec4d267c --- /dev/null +++ b/pages.pl/linux/journalctl.md @@ -0,0 +1,36 @@ +# journalctl + +> Przeszukaj dziennik systemd. +> Więcej informacji: . + +- Wyświetl wszystkie wiadomości o priorytecie 3 (błędy) z tego rozruchu: + +`journalctl -b --priority={{3}}` + +- Wyświetl wszystkie wiadomości z ostatniego rozruchu: + +`journalctl -b -1` + +- Usuń dzienniki starsze niż 2 dni: + +`journalctl --vacuum-time={{2d}}` + +- Wyświetlaj nowe wiadomości (jak `tail -f` dla tradycyjnego sysloga): + +`journalctl -f` + +- Pokaż wszystkie wiadomości podanej jednostki: + +`journalctl -u {{jednostka}}` + +- Filtruj wiadomości w zakresie czasu (znacznik czasu lub symbol zastępczy, np. "yesterday"): + +`journalctl --since {{now|today|yesterday|tomorrow}} --until {{YYYY-MM-DD HH:MM:SS}}` + +- Wyświetl wszystkie wiadomości podanego procesu: + +`journalctl _PID={{pid}}` + +- Wyświetl wszystkie wiadomości podanego pliku wykonywalnego: + +`journalctl {{ścieżka/do/pliku}}` diff --git a/pages.pl/linux/localectl.md b/pages.pl/linux/localectl.md new file mode 100644 index 0000000000..48433d9643 --- /dev/null +++ b/pages.pl/linux/localectl.md @@ -0,0 +1,24 @@ +# localectl + +> Kontroluj ustawienia regionalne i układ klawiatury systemu. +> Więcej informacji: . + +- Wyświetl aktualne ustawienia regionalne systemu i układu klawiatury: + +`localectl` + +- Wyświetl dostępne ustawienia regionalne: + +`localectl list-locales` + +- Ustaw zmienną ustawień regionalnych: + +`localectl set-locale {{LANG}}={{pl_PL.UTF-8}}` + +- Wyświetl dostępne układy klawiatury: + +`localectl list-keymaps` + +- Ustaw systemowy układ klawiatury dla konsoli i X11: + +`localectl set-keymap {{pl}}` diff --git a/pages.pl/linux/loginctl.md b/pages.pl/linux/loginctl.md new file mode 100644 index 0000000000..c23bee2f5c --- /dev/null +++ b/pages.pl/linux/loginctl.md @@ -0,0 +1,24 @@ +# loginctl + +> Zarządzaj menedżerem logowania systemd. +> Więcej informacji: . + +- Wyświetl wszystkie aktualne sesje: + +`loginctl list-sessions` + +- Wyświetl wszystkie właściwości podanej sesji: + +`loginctl show-session {{id_sesji}} --all` + +- Wyświetl wszystkie właściwości podanego użytkownika: + +`loginctl show-user {{nazwa_użytkownika}}` + +- Wyświetl podaną właściwość użytkownika: + +`loginctl show-user {{nazwa_użytkownika}} --property={{nazwa_właściwości}}` + +- Uruchom operację `loginctl` na zdalnym hoście: + +`loginctl list-users -H {{nazwa_hosta}}` diff --git a/pages.pl/linux/makepkg.md b/pages.pl/linux/makepkg.md new file mode 100644 index 0000000000..ba5d400de8 --- /dev/null +++ b/pages.pl/linux/makepkg.md @@ -0,0 +1,33 @@ +# makepkg + +> Utwórz pakiet do użycia przez `pacman`-a. +> Domyślnie używa pliku `PKGBUILD` w aktualnym katalogu roboczym. +> Więcej informacji: . + +- Utwórz pakiet: + +`makepkg` + +- Utwórz pakiet i zainstaluj jego zależności: + +`makepkg --syncdeps` + +- Utwórz pakiet, zainstaluj jego zależności, a następnie zainstaluj utworzony pakiet: + +`makepkg --syncdeps --install` + +- Utwórz pakiet, ale pomiń sprawdzanie sum kontrolnych źrodeł: + +`makepkg --skipchecksums` + +- Wyczyść katalogi robocze po udanym budowaniu: + +`makepkg --clean` + +- Zwerifikuj sumy kontrolne źródeł: + +`makepkg --verifysource` + +- Wygeneruj i zapisz informacje o źródłach do pliku `.SRCINFO`: + +`makepkg --printsrcinfo > .SRCINFO` diff --git a/pages.pl/linux/mksquashfs.md b/pages.pl/linux/mksquashfs.md new file mode 100644 index 0000000000..405b481d51 --- /dev/null +++ b/pages.pl/linux/mksquashfs.md @@ -0,0 +1,24 @@ +# mksquashfs + +> Utwórz lub dodaj pliki i katalogi do systemów plików squashfs. +> Więcej informacji: . + +- Utwórz lub dodaj pliki i katalogi do systemu plików squashfs (domyślnie kompresując za pomocą `gzip`): + +`mksquashfs {{ścieżka/do/pliku_lub_katalogu1 ścieżka/do/pliku_lub_katalogu2 ...}} {{system_plików.squashfs}}` + +- Utwórz lub dodaj pliki i katalogi do systemu plików squashfs, używając podanego algorytmu kompresji ([comp]ression): + +`mksquashfs {{ścieżka/do/pliku_lub_katalogu1 ścieżka/do/pliku_lub_katalogu2 ...}} {{system_plików.squashfs}} -comp {{gzip|lzo|lz4|xz|zstd|lzma}}` + +- Utwórz lub dodaj pliki i katalogi do systemu plików squashfs, pomijając ([e]xcluding) niektóre z nich: + +`mksquashfs {{ścieżka/do/pliku_lub_katalogu1 ścieżka/do/pliku_lub_katalogu2 ...}} {{system_plików.squashfs}} -e {{plik|katalog1 plik|katalog2 ...}}` + +- Utwórz lub dodaj pliki i katalogi do systemu plików squashfs, pomijając ([e]xcluding) te kończące się na `.gz`: + +`mksquashfs {{ścieżka/do/pliku_lub_katalogu1 ścieżka/do/pliku_lub_katalogu2 ...}} {{system_plików.squashfs}} -wildcards -e "{{*.gz}}"` + +- Utwórz lub dodaj pliki i katalogi do systemu plików squashfs, pomijając ([e]xcluding) te pasujące do wyrażenia regularnego: + +`mksquashfs {{ścieżka/do/pliku_lub_katalogu1 ścieżka/do/pliku_lub_katalogu2 ...}} {{system_plików.squashfs}} -regex -e "{{wyrażenie_regularne}}"` diff --git a/pages.pl/linux/ncal.md b/pages.pl/linux/ncal.md index ace4b6b41d..1f4d22e2c4 100644 --- a/pages.pl/linux/ncal.md +++ b/pages.pl/linux/ncal.md @@ -3,6 +3,6 @@ > To polecenie jest aliasem `cal`. > Więcej informacji: . -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr cal` diff --git a/pages.pl/linux/networkctl.md b/pages.pl/linux/networkctl.md new file mode 100644 index 0000000000..10662018bd --- /dev/null +++ b/pages.pl/linux/networkctl.md @@ -0,0 +1,33 @@ +# networkctl + +> Zapytaj o stan łączy sieciowych. +> Zarządzaj konfiguracją sieci za pomocą `systemd-networkd`. +> Więcej informacji: . + +- Wyświetl listę istniejących łączy i ich status: + +`networkctl list` + +- Wyświetl ogólny status sieci: + +`networkctl status` + +- Włącz urządzenia sieciowe: + +`networkctl up {{interfejs1 interfejs2 ...}}` + +- Wyłącz urządzenia sieciowe: + +`networkctl down {{interfejs1 interfejs2 ...}}` + +- Odnów konfiguracje dynamiczne (np. adresy IP przydzielone przez serwer DHCP): + +`networkctl renew {{interfejs1 interfejs2 ...}}` + +- Przeładuj pliki konfiguracyjne (.netdev i .network): + +`networkctl reload` + +- Rekonfiguruj interfejsy sieciowe (jeżeli pliki konfiguracyjne były edytowane, najpierw uruchom `networkctl reload`): + +`networkctl reconfigure {{interfejs1 interfejs2 ...}}` diff --git a/pages.pl/linux/oomctl.md b/pages.pl/linux/oomctl.md new file mode 100644 index 0000000000..eb721aa7d6 --- /dev/null +++ b/pages.pl/linux/oomctl.md @@ -0,0 +1,8 @@ +# oomctl + +> Przeanalizuj stan przechowywany w `systemd-oomd`. +> Więcej informacji: . + +- Wyświetl aktualny stan cgroups i kontekstów systemowych przechowywany przez `systemd-oomd`: + +`oomctl dump` diff --git a/pages.pl/linux/pacman-database.md b/pages.pl/linux/pacman-database.md new file mode 100644 index 0000000000..ba51b8d2fa --- /dev/null +++ b/pages.pl/linux/pacman-database.md @@ -0,0 +1,30 @@ +# pacman --database + +> Operuj na bazie danych pakietów Arch Linuksa. +> Modyfikuj niektóre atrybuty zainstalowanych pakietów. +> Zobacz także: `pacman`. +> Więcej informacji: . + +- Oznacz pakiet jako pośrednio zainstalowany (zależność): + +`sudo pacman --database --asdeps {{nazwa_pakietu}}` + +- Oznacz pakiet jako bezpośrednio zainstalowany: + +`sudo pacman --database --asexplicit {{nazwa_pakietu}}` + +- Sprawdź, czy wszystkie zależności pakietów są zainstalowane: + +`pacman --database --check` + +- Sprawdź repozytoria, aby zapewnić, że wszystkie podane zależności są dostępne: + +`pacman --database --check --check` + +- Wyświetlaj tylko komunikaty o błędach: + +`pacman --database --check --quiet` + +- Wyświetl pomoc: + +`pacman --database --help` diff --git a/pages.pl/linux/pacman-deptest.md b/pages.pl/linux/pacman-deptest.md new file mode 100644 index 0000000000..d65bee3b7b --- /dev/null +++ b/pages.pl/linux/pacman-deptest.md @@ -0,0 +1,21 @@ +# pacman --deptest + +> Sprawdź każdą podaną zależność i zwróć listę zależności, które nie są aktualnie spełnione. +> Zobacz także: `pacman`. +> Więcej informacji: . + +- Wyświetl nazwy zależności, które nie są zainstalowane: + +`pacman --deptest {{nazwa_pakietu1}} {{nazwa_pakietu2}}` + +- Sprawdź, czy zainstalowany pakiet spełnia podaną minimalną wersję: + +`pacman --deptest "{{bash>=5}}"` + +- Sprawdź, czy jest zainstalowana nowsza wersja pakietu: + +`pacman --deptest "{{bash>5}}"` + +- Wyświetl pomoc: + +`pacman --deptest --help` diff --git a/pages.pl/linux/pacman-files.md b/pages.pl/linux/pacman-files.md new file mode 100644 index 0000000000..bb1fe14384 --- /dev/null +++ b/pages.pl/linux/pacman-files.md @@ -0,0 +1,29 @@ +# pacman --files + +> Narzędzie do zarządzania pakietami w Arch Linuksie. +> Zobacz także: `pacman`, `pkgfile`. +> Więcej informacji: . + +- Zaktualizuj bazę danych pakietów: + +`sudo pacman --files --refresh` + +- Znajdź pakiet, do którego należy podany plik: + +`pacman --files {{nazwa_pliku}}` + +- Znajdź pakiet, do którego należy podany plik, używając wyrażenia regularnego: + +`pacman --files --regex '{{wyrażenie_regularne}}'` + +- Wyświetl tylko nazwy pakietów: + +`pacman --files --quiet {{nazwa_pliku}}` + +- Wyświetl pliki należące do podanego pakietu: + +`pacman --files --list {{nazwa_pakietu}}` + +- Wyświetl pomoc: + +`pacman --files --help` diff --git a/pages.pl/linux/pacman-key.md b/pages.pl/linux/pacman-key.md new file mode 100644 index 0000000000..acc9f3a9d3 --- /dev/null +++ b/pages.pl/linux/pacman-key.md @@ -0,0 +1,37 @@ +# pacman-key + +> Skrypt opakowujący dla GnuPG używany do zarządzania pękiem kluczy pacmana. +> Zobacz także: `pacman`. +> Więcej informacji: . + +- Zainicjalizuj pęk kluczy pacmana: + +`sudo pacman-key --init` + +- Dodaj domyślne klucze Arch Linuksa: + +`sudo pacman-key --populate {{archlinux}}` + +- Wyświetl klucze z pęku publicznego: + +`pacman-key --list-keys` + +- Dodaj podane klucze: + +`sudo pacman-key --add {{ścieżka/do/klucza.gpg}}` + +- Pobierz klucz z serwera kluczy: + +`sudo pacman-key --recv-keys "{{uid|imię|email}}"` + +- Wyświetl odcisk podanego klucza: + +`pacman-key --finger "{{uid|imię|email}}"` + +- Podpisz zaimportowany klucz lokalnie: + +`sudo pacman-key --lsign-key "{{uid|imię|email}}"` + +- Usuń podany klucz: + +`sudo pacman-key --delete "{{uid|imię|email}}"` diff --git a/pages.pl/linux/pacman-mirrors.md b/pages.pl/linux/pacman-mirrors.md new file mode 100644 index 0000000000..921425376d --- /dev/null +++ b/pages.pl/linux/pacman-mirrors.md @@ -0,0 +1,26 @@ +# pacman-mirrors + +> Wygeneruj listę serwerów lustrzanych dla Manjaro Linuksa. +> Każde uruchomienie pacman-mirrors wymaga zsynchronizowanej bazy danych oraz zaktualizowania systemu używając `sudo pacman -Syyu`. +> Zobacz także: `pacman`. +> Więcej informacji: . + +- Wygeneruj listę serwerów lustrzanych używając domyślnych ustawień: + +`sudo pacman-mirrors --fasttrack` + +- Wyświetl status aktualnych serwerów lustrzanych: + +`pacman-mirrors --status` + +- Pokaż aktualną gałąź: + +`pacman-mirrors --get-branch` + +- Przęłącz na inną gałąź: + +`sudo pacman-mirrors --api --set-branch {{stable|unstable|testing}}` + +- Wygeneruj listę serwerów lustrzanych, używając tylko tych w twoim kraju: + +`sudo pacman-mirrors --geoip` diff --git a/pages.pl/linux/pacman-query.md b/pages.pl/linux/pacman-query.md new file mode 100644 index 0000000000..82a83c8c6e --- /dev/null +++ b/pages.pl/linux/pacman-query.md @@ -0,0 +1,37 @@ +# pacman --query + +> Narzędzie do zarządzania pakietami w Arch Linuksie. +> Zobacz także: `pacman`. +> Więcej informacji: . + +- Wyświetl zainstalowane pakiety i ich wersje: + +`pacman --query` + +- Wyświetl tylko pakiety niebędące zależnościami i ich wersje: + +`pacman --query --explicit` + +- Znajdź, do którego pakietu należy plik: + +`pacman --query --owns {{nazwa_pliku}}` + +- Wyświetl informacje o zainstalowanym pakiecie: + +`pacman --query --info {{nazwa_pakietu}}` + +- Znajdź pliki należące do pakietu: + +`pacman --query --list {{nazwa_pakietu}}` + +- Wyświetl pakiety-sieroty (zainstalowane jako zależności ale nie są już wymagane przez żaden pakiet): + +`pacman --query --unrequired --deps --quiet` + +- Wyświetl zainstalowane pakiety, których nie ma w repozytoriach: + +`pacman --query --foreign` + +- Wyświetl przestarzałe pakiety: + +`pacman --query --upgrades` diff --git a/pages.pl/linux/pacman-remove.md b/pages.pl/linux/pacman-remove.md new file mode 100644 index 0000000000..f3e396ae66 --- /dev/null +++ b/pages.pl/linux/pacman-remove.md @@ -0,0 +1,33 @@ +# pacman --remove + +> Narzędzie do zarządzania pakietami w Arch Linuksie. +> Zobacz także: `pacman`. +> Więcej informacji: . + +- Usuń pakiet i jego zależności: + +`sudo pacman --remove --recursive {{nazwa_pakietu}}` + +- Usuń pakiet, jego zależności i pliki konfiguracyjne: + +`sudo pacman --remove --recursive --nosave {{nazwa_pakietu}}` + +- Usuń pakiet bez pytania: + +`sudo pacman --remove --noconfirm {{nazwa_pakietu}}` + +- Usuń pakiety-sieroty (zainstalowane jako zależności ale nie są już wymagane przez żaden pakiet): + +`sudo pacman --remove --recursive --nosave $(pacman --query --unrequired --deps --quiet)` + +- Usuń pakiet i wszystke pakiety, które od niego zależą: + +`sudo pacman --remove --cascade {{nazwa_pakietu}}` + +- Wyświetl pakiety, na które wpływ miałaby komenda (nie usuwa żadnych pakietów): + +`pacman --remove --print {{nazwa_pakietu}}` + +- Wyświetl pomoc dla tej komendy: + +`pacman --remove --help` diff --git a/pages.pl/linux/pacman-sync.md b/pages.pl/linux/pacman-sync.md new file mode 100644 index 0000000000..6964d528f2 --- /dev/null +++ b/pages.pl/linux/pacman-sync.md @@ -0,0 +1,37 @@ +# pacman --sync + +> Narzędzie do zarządzania pakietami w Arch Linuksie. +> Zobacz także: `pacman`. +> Więcej informacji: . + +- Zainstaluj nowy pakiet: + +`sudo pacman -S {{nazwa_pakietu}}` + +- Zsynchronizuj i zaktualizuj wszystkie pakiety (użyj `--downloadonly` aby pobrać pakiety i ich nie zaktualizować): + +`sudo pacman --sync --refresh --sysupgrade` + +- Zaktualizuj wszystkie pakiety i zainstaluj nowy bez pytania: + +`sudo pacman --sync --refresh --sysupgrade --noconfirm {{nazwa_pakietu}}` + +- Przeszukaj bazę danych pakietów używając wyrażenia regularnego lub słowa klucz: + +`pacman -Ss "{{zapytanie}}"` + +- Wyświetl informacje o pakiecie: + +`pacman --sync --info {{nazwa_pakietu}}` + +- Nadpisz pliki będące w konflikcie podczas aktualizacji pakietów: + +`sudo pacman --sync --refresh --sysupgrade --overwrite {{ścieżka/do/pliku}}` + +- Zsynchronizuj i zaktualizuj wszystkie pakiety, ale zignoruj konkretny pakiet (można użyć więcej niż raz): + +`sudo pacman --sync --refresh --sysupgrade --ignore {{nazwa_pakietu}}` + +- Usuń niezainstalowane pakiety i nieużywane repozytoria z pamięci podręcznej (użyj dwa razy opcji `--clean`, aby wyczyścić wszystkie pakiety): + +`sudo pacman --sync --clean` diff --git a/pages.pl/linux/pacman-upgrade.md b/pages.pl/linux/pacman-upgrade.md new file mode 100644 index 0000000000..74b7332720 --- /dev/null +++ b/pages.pl/linux/pacman-upgrade.md @@ -0,0 +1,29 @@ +# pacman --upgrade + +> Narzędzie do zarządzania pakietami w Arch Linuksie. +> Zobacz także: `pacman`. +> Więcej informacji: . + +- Zainstaluj jeden lub więcej pakietów z plików: + +`sudo pacman --upgrade {{ścieżka/do/pakietu1.pkg.tar.zst}} {{ścieżka/do/pakietu2.pkg.tar.zst}}` + +- Zainstaluj pakiet bez pytania: + +`sudo pacman --upgrade --noconfirm {{ścieżka/do/pakietu.pkg.tar.zst}}` + +- Nadpisz pliki będące w konflikcie podczas instalacji pakietów: + +`sudo pacman --upgrade --overwrite {{ścieżka/do/pliku}} {{ścieżka/do/pakietu.pkg.tar.zst}}` + +- Zainstaluj pakiet, pomijając sprawdzanie wersji zależności: + +`sudo pacman --upgrade --nodeps {{ścieżka/do/pakietu.pkg.tar.zst}}` + +- Wyświetl pakiety, na które wpływ miałaby komenda (nie instaluje żadnych pakietów): + +`pacman --upgrade --print {{ścieżka/do/pakietu.pkg.tar.zst}}` + +- Wyświetl pomoc: + +`pacman --upgrade --help` diff --git a/pages.pl/linux/pacman.md b/pages.pl/linux/pacman.md new file mode 100644 index 0000000000..3a615a193c --- /dev/null +++ b/pages.pl/linux/pacman.md @@ -0,0 +1,38 @@ +# pacman + +> Narzędzie do zarządzania pakietami w Arch Linuksie. +> Zobacz także: `pacman-database`, `pacman-deptest`, `pacman-files`, `pacman-key`, `pacman-mirrors`, `pacman-query`, `pacman-remove`, `pacman-sync`, `pacman-upgrade`. +> Odpowiednie polecenia dla innych menedżerów pakietów: . +> Więcej informacji: . + +- Zsynchronizuj i zaktualizuj wszystkie pakiety: + +`sudo pacman -Syu` + +- Zainstaluj nowy pakiet: + +`sudo pacman -S {{nazwa_pakietu}}` + +- Usuń pakiet i jego zależności: + +`sudo pacman -Rs {{nazwa_pakietu}}` + +- Przeszukaj bazę danych pakietów używając wyrażenia regularnego lub słowa klucz: + +`pacman -Ss "{{zapytanie}}"` + +- Wyświetl zainstalowane pakiety i ich wersje: + +`pacman -Q` + +- Wyświetl tylko pakiety niebędące zależnościami i ich wersje: + +`pacman -Qe` + +- Wyświetl pakiety-sieroty (zainstalowane jako zależności ale nie są już wymagane przez żaden pakiet): + +`pacman -Qtdq` + +- Wyczyść całą pamięć podręczną pacmana: + +`sudo pacman -Scc` diff --git a/pages.pl/linux/resolvectl.md b/pages.pl/linux/resolvectl.md new file mode 100644 index 0000000000..0958d97ae1 --- /dev/null +++ b/pages.pl/linux/resolvectl.md @@ -0,0 +1,33 @@ +# resolvectl + +> Znajdź nazwy domen, adresy IPv4 i IPv6, rekordy zasobów DNS i usługi. +> Analizuj i rekonfiguruj resolwer DNS. +> Więcej informacji: . + +- Wyświetl ustawienia DNS: + +`resolvectl status` + +- Znajdź adresy IPv4 i IPv6 jednej lub więcej domen: + +`resolvectl query {{domena1 domena2 ...}}` + +- Znajdź domenę podanego adresu IP: + +`resolvectl query {{adres_ip}}` + +- Znajdź rekord MX podanej domeny: + +`resolvectl --legend={{no}} --type={{MX}} query {{domena}}` + +- Znajdź rekord SRV, na przykład _xmpp-server._tcp gmail.com: + +`resolvectl service _{{usługa}}._{{protokół}} {{nazwa}}` + +- Pobierz klucz publiczny z adresu email z rekordu DNS OPENPGPGKEY: + +`resolvectl openpgp {{email}}` + +- Znajdź klucz TLS: + +`resolvectl tlsa tcp {{domena}}:443` diff --git a/pages.pl/linux/sqfscat.md b/pages.pl/linux/sqfscat.md new file mode 100644 index 0000000000..093dc8f2a1 --- /dev/null +++ b/pages.pl/linux/sqfscat.md @@ -0,0 +1,8 @@ +# sqfscat + +> Połącz pliki z systemu plików squashfs i wypisz je na standardowe wyjście. +> Więcej informacji: . + +- Wyświetl zawartość jednego lub więcej plików z systemu plików squashfs: + +`sqfscat {{system_plików.squashfs}} {{plik1 plik2 ...}}` diff --git a/pages.pl/linux/sqfstar.md b/pages.pl/linux/sqfstar.md new file mode 100644 index 0000000000..e5631fd392 --- /dev/null +++ b/pages.pl/linux/sqfstar.md @@ -0,0 +1,24 @@ +# sqfstar + +> Utwórz system plików squashfs z archiwum tar. +> Więcej informacji: . + +- Utwórz system plików squashfs (domyślnie kompresując za pomocą `gzip`) z nieskompresowanego archiwum tar: + +`sqfstar {{system_plików.squashfs}} < {{archiwum.tar}}` + +- Utwórz system plików squashfs z archiwum tar skompresowanego za pomocą `gzip`, i skompresuj system plików używając podanego algorytmu: + +`zcat {{archiwum.tar.gz}} | sqfstar -comp {{gzip|lzo|lz4|xz|zstd|lzma}} {{system_plików.squashfs}}` + +- Utwórz system plików squashfs z archiwum tar skompresowanego za pomocą `xz`, pomijając niektóre pliki: + +`xzcat {{archiwum.tar.xz}} | sqfstar {{system_plików.squashfs}} {{plik1 plik2 ...}}` + +- Utwórz system plików squashfs z archiwum tar skompresowanego za pomocą `zstd`, pomijając pliki kończące się na `.gz`: + +`zstdcat {{archiwum.tar.zst}} | sqfstar {{system_plików.squashfs}} "{{*.gz}}"` + +- Utwórz system plików squashfs z archiwum tar skompresowanego za pomocą `lz4`, pomijając pliki pasujące do wyrażenia regularnego: + +`lz4cat {{archiwum.tar.lz4}} | sqfstar {{system_plików.squashfs}} -regex "{{wyrażenie_regularne}}"` diff --git a/pages.pl/linux/systemctl.md b/pages.pl/linux/systemctl.md new file mode 100644 index 0000000000..6d54cc0fad --- /dev/null +++ b/pages.pl/linux/systemctl.md @@ -0,0 +1,36 @@ +# systemctl + +> Kontroluj systemd i menedżera usług. +> Więcej informacji: . + +- Wyświetl wszystkie działające usługi: + +`systemctl status` + +- Wyświetl nieudane jednostki: + +`systemctl --failed` + +- Uruchom/Zatrzymaj/Zrestartuj/Przeładuj usługę: + +`systemctl {{start|stop|restart|reload}} {{jednostka}}` + +- Wyświetl status jednostki: + +`systemctl status {{jednostka}}` + +- Włącz/Wyłącz automatyczne uruchamianie jednostki przy starcie systemu: + +`systemctl {{enable|disable}} {{jednostka}}` + +- Zamaskuj/Zdemaskuj jednostkę, aby uniemożliwić włączanie i ręczną aktywację: + +`systemctl {{mask|unmask}} {{jednostka}}` + +- Przeładuj systemd, skanując w poszukiwaniu nowych lub zmienionych jednostek: + +`systemctl daemon-reload` + +- Sprawdź, czy jednostka jest włączona: + +`systemctl is-enabled {{jednostka}}` diff --git a/pages.pl/linux/systemd-analyze.md b/pages.pl/linux/systemd-analyze.md new file mode 100644 index 0000000000..064a3d6df2 --- /dev/null +++ b/pages.pl/linux/systemd-analyze.md @@ -0,0 +1,25 @@ +# systemd-analyze + +> Analizuj i debuguj menedżera systemu. +> Wyświetl szczegóły dotyczące czasiu procesu uruchamiania jednostek (usług, punktów montowania, urządzeń, gniazd): +> Więcej informacji: . + +- Wyświetl wszystkie uruchomione jednostki, uporządkowane według czasu ich inicjalizacji: + +`systemd-analyze blame` + +- Wyświetl drzewo krytycznego czasowo łańcucha jednostek: + +`systemd-analyze critical-chain` + +- Utwórz plik SVG pokazujący kiedy każda usługa wystartowała, zaznaczając czas wykorzystany na inicjalizację: + +`systemd-analyze plot > {{ścieżka/do/pliku.svg}}` + +- Sporządź wykres zależności i przekonwertuj go do pliku SVG: + +`systemd-analyze dot | dot -T{{svg}} > {{ścieżka/do/pliku.svg}}` + +- Wyświetl wyniki bezpieczeństwa działających jednostek: + +`systemd-analyze security` diff --git a/pages.pl/linux/systemd-run.md b/pages.pl/linux/systemd-run.md new file mode 100644 index 0000000000..117512f372 --- /dev/null +++ b/pages.pl/linux/systemd-run.md @@ -0,0 +1,36 @@ +# systemd-run + +> Uruchamiaj programy w przejściowych jednostkach zakresu, jednostkach usługowych lub jednostkach usługowych uruchamianych przez ścieżkę, gniazdo lub timer. +> Więcej informacji: . + +- Uruchom przejściową usługę: + +`sudo systemd-run {{komenda}} {{argument1 argument2 ...}}` + +- Uruchom przejściową usługę pod menedżerem usług aktualnego użytkownika (bez uprawnień): + +`systemd-run --user {{komenda}} {{argument1 argument2 ...}}` + +- Uruchom przejściową usługę z podaną nazwą jednostki i opisem: + +`sudo systemd-run --unit={{nazwa}} --description={{string}} {{komenda}} {{argument1 argument2 ...}}` + +- Uruchom przejściową usługę, która nie jest czyszczona po jej zakończeniu z podaną zmienną środowiskową: + +`sudo systemd-run --remain-after-exit --set-env={{nazwa}}={{wartość}} {{komenda}} {{argument1 argument2 ...}}` + +- Uruchom przejściowy timer, który okresowo uruchamia swoją przejściową usługę (zobacz `man systemd.time`, aby zapoznać się z formatem wydarzeń kalendarza): + +`sudo systemd-run --on-calendar={{wydarzenie_kalendarza}} {{komenda}} {{argument1 argument2 ...}}` + +- Udostępnij terminal programowi (umożliwiając interaktywne wejście/wyjście) i zapewnij, że szczegóły wykonania pozostaną po zakończeniu programu: + +`systemd-run --remain-after-exit --pty {{komenda}}` + +- Ustaw właściwości (np. CPUQuota, MemoryMax) procesu i poczekaj, aż się zakończy: + +`systemd-run --property MemoryMax={{pamięć_w_bajtach}} --property CPUQuota={{procent_czasu_CPU}}% --wait {{komenda}}` + +- Użyj programu w potoku powłoki: + +`{{komenda1}} | systemd-run --pipe {{komenda2}} | {{komenda3}}` diff --git a/pages.pl/linux/timedatectl.md b/pages.pl/linux/timedatectl.md new file mode 100644 index 0000000000..2f064209da --- /dev/null +++ b/pages.pl/linux/timedatectl.md @@ -0,0 +1,28 @@ +# timedatectl + +> Kontroluj datę i czas systemowy. +> Więcej informacji: . + +- Sprawdź aktualny czas zegara systemowego: + +`timedatectl` + +- Bezpośrednio ustaw czas lokalny zegara systemowego: + +`timedatectl set-time "{{yyyy-MM-dd hh:mm:ss}}"` + +- Wyświetl dostępne strefy czasowe: + +`timedatectl list-timezones` + +- Ustaw systemową strefę czasową: + +`timedatectl set-timezone {{strefa_czasowa}}` + +- Włącz synchronizację czasu poprzez Network Time Protocol (NTP): + +`timedatectl set-ntp on` + +- Zmień standard czasu zegara sprzętowego na czas lokalny: + +`timedatectl set-local-rtc 1` diff --git a/pages.pl/linux/ubuntu-bug.md b/pages.pl/linux/ubuntu-bug.md index 2fc28b65bc..f2cbf265df 100644 --- a/pages.pl/linux/ubuntu-bug.md +++ b/pages.pl/linux/ubuntu-bug.md @@ -1,8 +1,8 @@ # ubuntu-bug -> This command is an alias of `apport-bug`. -> More information: . +> To polecenie jest aliasem `apport-bug`. +> Więcej informacji: . -- View documentation for the original command: +- Zobacz dokumentację oryginalnego polecenia: `tldr apport-bug` diff --git a/pages.pl/linux/unsquashfs.md b/pages.pl/linux/unsquashfs.md new file mode 100644 index 0000000000..53da854af6 --- /dev/null +++ b/pages.pl/linux/unsquashfs.md @@ -0,0 +1,28 @@ +# unsquashfs + +> Dekompresuj, rozpakuj i wyświetl listę plików w systemach plików squashfs. +> Więcej informacji: . + +- Rozpakuj system plików squashfs do `squashfs-root` w aktualnym katalogu roboczym: + +`unsquashfs {{system_plików.squashfs}}` + +- Rozpakuj system plików squashfs do podanego katalogu: + +`unsquashfs -dest {{ścieżka/do/katalogu}} {{system_plików.squashfs}}` + +- Wyświetlaj nazwy plików podczas ich rozpakowywania: + +`unsquashfs -info {{system_plików.squashfs}}` + +- Wyświetlaj nazwy plików i ich atrybuty podczas ich rozpakowywania: + +`unsquashfs -linfo {{system_plików.squashfs}}` + +- Wyświetl listę plików w systemie plików squashfs (bez rozpakowywania): + +`unsquashfs -ls {{system_plików.squashfs}}` + +- Wyświetl listę plików i ich atrybuty w systemie plików squashfs (bez rozpakowywania): + +`unsquashfs -lls {{system_plików.squashfs}}` diff --git a/pages.pl/linux/wtf.md b/pages.pl/linux/wtf.md index c8d664d4d1..dbff735bde 100644 --- a/pages.pl/linux/wtf.md +++ b/pages.pl/linux/wtf.md @@ -1,7 +1,7 @@ # wtf > Pokazuje rozwinięcia akronimów. -> Więcej informacji: . +> Więcej informacji: . - Rozwinięcie podanego akronimu: diff --git a/pages.pl/osx/aa.md b/pages.pl/osx/aa.md new file mode 100644 index 0000000000..05b5501629 --- /dev/null +++ b/pages.pl/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> To polecenie jest aliasem `yaa`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr yaa` diff --git a/pages.pl/osx/g[.md b/pages.pl/osx/g[.md new file mode 100644 index 0000000000..b83ad1904a --- /dev/null +++ b/pages.pl/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> To polecenie jest aliasem `-p linux [`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux [` diff --git a/pages.pl/osx/gawk.md b/pages.pl/osx/gawk.md new file mode 100644 index 0000000000..081cdf4226 --- /dev/null +++ b/pages.pl/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> To polecenie jest aliasem `-p linux awk`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux awk` diff --git a/pages.pl/osx/gb2sum.md b/pages.pl/osx/gb2sum.md new file mode 100644 index 0000000000..471a03a87c --- /dev/null +++ b/pages.pl/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> To polecenie jest aliasem `-p linux b2sum`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux b2sum` diff --git a/pages.pl/osx/gbase32.md b/pages.pl/osx/gbase32.md new file mode 100644 index 0000000000..4c06e7fa5e --- /dev/null +++ b/pages.pl/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> To polecenie jest aliasem `-p linux base32`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux base32` diff --git a/pages.pl/osx/gbase64.md b/pages.pl/osx/gbase64.md new file mode 100644 index 0000000000..586150bc50 --- /dev/null +++ b/pages.pl/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> To polecenie jest aliasem `-p linux base64`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux base64` diff --git a/pages.pl/osx/gbasename.md b/pages.pl/osx/gbasename.md new file mode 100644 index 0000000000..ef80a6a8a2 --- /dev/null +++ b/pages.pl/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> To polecenie jest aliasem `-p linux basename`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux basename` diff --git a/pages.pl/osx/gbasenc.md b/pages.pl/osx/gbasenc.md new file mode 100644 index 0000000000..5198f26d23 --- /dev/null +++ b/pages.pl/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> To polecenie jest aliasem `-p linux basenc`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux basenc` diff --git a/pages.pl/osx/gcat.md b/pages.pl/osx/gcat.md new file mode 100644 index 0000000000..de809f3ffd --- /dev/null +++ b/pages.pl/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> To polecenie jest aliasem `-p linux cat`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux cat` diff --git a/pages.pl/osx/gchcon.md b/pages.pl/osx/gchcon.md new file mode 100644 index 0000000000..5cd068c23c --- /dev/null +++ b/pages.pl/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> To polecenie jest aliasem `-p linux chcon`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux chcon` diff --git a/pages.pl/osx/gchgrp.md b/pages.pl/osx/gchgrp.md new file mode 100644 index 0000000000..de7db39134 --- /dev/null +++ b/pages.pl/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> To polecenie jest aliasem `-p linux chgrp`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux chgrp` diff --git a/pages.pl/osx/gchmod.md b/pages.pl/osx/gchmod.md new file mode 100644 index 0000000000..6254060d87 --- /dev/null +++ b/pages.pl/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> To polecenie jest aliasem `-p linux chmod`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux chmod` diff --git a/pages.pl/osx/gchown.md b/pages.pl/osx/gchown.md new file mode 100644 index 0000000000..8beaa4c0a6 --- /dev/null +++ b/pages.pl/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> To polecenie jest aliasem `-p linux chown`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux chown` diff --git a/pages.pl/osx/gchroot.md b/pages.pl/osx/gchroot.md new file mode 100644 index 0000000000..79a0fa6b02 --- /dev/null +++ b/pages.pl/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> To polecenie jest aliasem `-p linux chroot`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux chroot` diff --git a/pages.pl/osx/gcksum.md b/pages.pl/osx/gcksum.md new file mode 100644 index 0000000000..9a78aac66f --- /dev/null +++ b/pages.pl/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> To polecenie jest aliasem `-p linux cksum`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux cksum` diff --git a/pages.pl/osx/gcomm.md b/pages.pl/osx/gcomm.md new file mode 100644 index 0000000000..bf63ae71fe --- /dev/null +++ b/pages.pl/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> To polecenie jest aliasem `-p linux comm`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux comm` diff --git a/pages.pl/osx/gcp.md b/pages.pl/osx/gcp.md new file mode 100644 index 0000000000..34f9fb9c7b --- /dev/null +++ b/pages.pl/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> To polecenie jest aliasem `-p linux cp`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux cp` diff --git a/pages.pl/osx/gcsplit.md b/pages.pl/osx/gcsplit.md new file mode 100644 index 0000000000..be3802ae67 --- /dev/null +++ b/pages.pl/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> To polecenie jest aliasem `-p linux csplit`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux csplit` diff --git a/pages.pl/osx/gcut.md b/pages.pl/osx/gcut.md new file mode 100644 index 0000000000..a6f9393cce --- /dev/null +++ b/pages.pl/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> To polecenie jest aliasem `-p linux cut`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux cut` diff --git a/pages.pl/osx/gdate.md b/pages.pl/osx/gdate.md new file mode 100644 index 0000000000..286fa169b7 --- /dev/null +++ b/pages.pl/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> To polecenie jest aliasem `-p linux date`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux date` diff --git a/pages.pl/osx/gdd.md b/pages.pl/osx/gdd.md new file mode 100644 index 0000000000..7748f147fa --- /dev/null +++ b/pages.pl/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> To polecenie jest aliasem `-p linux dd`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux dd` diff --git a/pages.pl/osx/gdf.md b/pages.pl/osx/gdf.md new file mode 100644 index 0000000000..a7423becf0 --- /dev/null +++ b/pages.pl/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> To polecenie jest aliasem `-p linux df`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux df` diff --git a/pages.pl/osx/gdir.md b/pages.pl/osx/gdir.md new file mode 100644 index 0000000000..84b399d60c --- /dev/null +++ b/pages.pl/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> To polecenie jest aliasem `-p linux dir`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux dir` diff --git a/pages.pl/osx/gdircolors.md b/pages.pl/osx/gdircolors.md new file mode 100644 index 0000000000..4012ed9605 --- /dev/null +++ b/pages.pl/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> To polecenie jest aliasem `-p linux dircolors`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux dircolors` diff --git a/pages.pl/osx/gdirname.md b/pages.pl/osx/gdirname.md new file mode 100644 index 0000000000..6d32922981 --- /dev/null +++ b/pages.pl/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> To polecenie jest aliasem `-p linux dirname`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux dirname` diff --git a/pages.pl/osx/gdnsdomainname.md b/pages.pl/osx/gdnsdomainname.md new file mode 100644 index 0000000000..ea407ecaa3 --- /dev/null +++ b/pages.pl/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> To polecenie jest aliasem `-p linux dnsdomainname`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux dnsdomainname` diff --git a/pages.pl/osx/gecho.md b/pages.pl/osx/gecho.md new file mode 100644 index 0000000000..c20c6f9da1 --- /dev/null +++ b/pages.pl/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> To polecenie jest aliasem `-p linux echo`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux echo` diff --git a/pages.pl/osx/ged.md b/pages.pl/osx/ged.md new file mode 100644 index 0000000000..fdb1ad5a04 --- /dev/null +++ b/pages.pl/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> To polecenie jest aliasem `-p linux ed`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux ed` diff --git a/pages.pl/osx/gegrep.md b/pages.pl/osx/gegrep.md new file mode 100644 index 0000000000..df28f304fe --- /dev/null +++ b/pages.pl/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> To polecenie jest aliasem `-p linux egrep`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux egrep` diff --git a/pages.pl/osx/genv.md b/pages.pl/osx/genv.md new file mode 100644 index 0000000000..5b24a5daeb --- /dev/null +++ b/pages.pl/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> To polecenie jest aliasem `-p linux env`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux env` diff --git a/pages.pl/osx/gexpand.md b/pages.pl/osx/gexpand.md new file mode 100644 index 0000000000..35e219b13a --- /dev/null +++ b/pages.pl/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> To polecenie jest aliasem `-p linux expand`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux expand` diff --git a/pages.pl/osx/gexpr.md b/pages.pl/osx/gexpr.md new file mode 100644 index 0000000000..8231d1e7b1 --- /dev/null +++ b/pages.pl/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> To polecenie jest aliasem `-p linux expr`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux expr` diff --git a/pages.pl/osx/gfactor.md b/pages.pl/osx/gfactor.md new file mode 100644 index 0000000000..7fc97fb7b7 --- /dev/null +++ b/pages.pl/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> To polecenie jest aliasem `-p linux factor`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux factor` diff --git a/pages.pl/osx/gfalse.md b/pages.pl/osx/gfalse.md new file mode 100644 index 0000000000..948a0df636 --- /dev/null +++ b/pages.pl/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> To polecenie jest aliasem `-p linux false`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux false` diff --git a/pages.pl/osx/gfgrep.md b/pages.pl/osx/gfgrep.md new file mode 100644 index 0000000000..9eea148f2c --- /dev/null +++ b/pages.pl/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> To polecenie jest aliasem `-p linux fgrep`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux fgrep` diff --git a/pages.pl/osx/gfind.md b/pages.pl/osx/gfind.md new file mode 100644 index 0000000000..57c2d8f7e5 --- /dev/null +++ b/pages.pl/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> To polecenie jest aliasem `-p linux find`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux find` diff --git a/pages.pl/osx/gfmt.md b/pages.pl/osx/gfmt.md new file mode 100644 index 0000000000..18f19d1d0e --- /dev/null +++ b/pages.pl/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> To polecenie jest aliasem `-p linux fmt`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux fmt` diff --git a/pages.pl/osx/gfold.md b/pages.pl/osx/gfold.md new file mode 100644 index 0000000000..7e90c1b5c4 --- /dev/null +++ b/pages.pl/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> To polecenie jest aliasem `-p linux fold`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux fold` diff --git a/pages.pl/osx/gftp.md b/pages.pl/osx/gftp.md new file mode 100644 index 0000000000..b2c81cc5cd --- /dev/null +++ b/pages.pl/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> To polecenie jest aliasem `-p linux ftp`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux ftp` diff --git a/pages.pl/osx/ggrep.md b/pages.pl/osx/ggrep.md new file mode 100644 index 0000000000..d713a414ae --- /dev/null +++ b/pages.pl/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> To polecenie jest aliasem `-p linux grep`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux grep` diff --git a/pages.pl/osx/ggroups.md b/pages.pl/osx/ggroups.md new file mode 100644 index 0000000000..a478eea444 --- /dev/null +++ b/pages.pl/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> To polecenie jest aliasem `-p linux groups`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux groups` diff --git a/pages.pl/osx/ghead.md b/pages.pl/osx/ghead.md new file mode 100644 index 0000000000..61791384b4 --- /dev/null +++ b/pages.pl/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> To polecenie jest aliasem `-p linux head`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux head` diff --git a/pages.pl/osx/ghostid.md b/pages.pl/osx/ghostid.md new file mode 100644 index 0000000000..567339d9ed --- /dev/null +++ b/pages.pl/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> To polecenie jest aliasem `-p linux hostid`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux hostid` diff --git a/pages.pl/osx/ghostname.md b/pages.pl/osx/ghostname.md new file mode 100644 index 0000000000..675b5adf6a --- /dev/null +++ b/pages.pl/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> To polecenie jest aliasem `-p linux hostname`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux hostname` diff --git a/pages.pl/osx/gid.md b/pages.pl/osx/gid.md new file mode 100644 index 0000000000..d935631cd5 --- /dev/null +++ b/pages.pl/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> To polecenie jest aliasem `-p linux id`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux id` diff --git a/pages.pl/osx/gifconfig.md b/pages.pl/osx/gifconfig.md new file mode 100644 index 0000000000..f9b8ef1e2f --- /dev/null +++ b/pages.pl/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> To polecenie jest aliasem `-p linux ifconfig`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux ifconfig` diff --git a/pages.pl/osx/gindent.md b/pages.pl/osx/gindent.md new file mode 100644 index 0000000000..6f5e75d9a0 --- /dev/null +++ b/pages.pl/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> To polecenie jest aliasem `-p linux indent`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux indent` diff --git a/pages.pl/osx/ginstall.md b/pages.pl/osx/ginstall.md new file mode 100644 index 0000000000..05bb5c1653 --- /dev/null +++ b/pages.pl/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> To polecenie jest aliasem `-p linux install`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux install` diff --git a/pages.pl/osx/gjoin.md b/pages.pl/osx/gjoin.md new file mode 100644 index 0000000000..55bf1107e0 --- /dev/null +++ b/pages.pl/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> To polecenie jest aliasem `-p linux join`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux join` diff --git a/pages.pl/osx/gkill.md b/pages.pl/osx/gkill.md new file mode 100644 index 0000000000..60d1e80f29 --- /dev/null +++ b/pages.pl/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> To polecenie jest aliasem `-p linux kill`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux kill` diff --git a/pages.pl/osx/glibtool.md b/pages.pl/osx/glibtool.md new file mode 100644 index 0000000000..d0e86ddb62 --- /dev/null +++ b/pages.pl/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> To polecenie jest aliasem `-p linux libtool`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux libtool` diff --git a/pages.pl/osx/glibtoolize.md b/pages.pl/osx/glibtoolize.md new file mode 100644 index 0000000000..501e5993e2 --- /dev/null +++ b/pages.pl/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> To polecenie jest aliasem `-p linux libtoolize`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux libtoolize` diff --git a/pages.pl/osx/glink.md b/pages.pl/osx/glink.md new file mode 100644 index 0000000000..8f021f7cf1 --- /dev/null +++ b/pages.pl/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> To polecenie jest aliasem `-p linux link`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux link` diff --git a/pages.pl/osx/gln.md b/pages.pl/osx/gln.md new file mode 100644 index 0000000000..92f5224acb --- /dev/null +++ b/pages.pl/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> To polecenie jest aliasem `-p linux ln`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux ln` diff --git a/pages.pl/osx/glocate.md b/pages.pl/osx/glocate.md new file mode 100644 index 0000000000..76560f294c --- /dev/null +++ b/pages.pl/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> To polecenie jest aliasem `-p linux locate`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux locate` diff --git a/pages.pl/osx/glogger.md b/pages.pl/osx/glogger.md new file mode 100644 index 0000000000..e72cee914d --- /dev/null +++ b/pages.pl/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> To polecenie jest aliasem `-p linux logger`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux logger` diff --git a/pages.pl/osx/glogname.md b/pages.pl/osx/glogname.md new file mode 100644 index 0000000000..e80e4cd329 --- /dev/null +++ b/pages.pl/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> To polecenie jest aliasem `-p linux logname`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux logname` diff --git a/pages.pl/osx/gls.md b/pages.pl/osx/gls.md new file mode 100644 index 0000000000..898d8debe6 --- /dev/null +++ b/pages.pl/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> To polecenie jest aliasem `-p linux ls`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux ls` diff --git a/pages.pl/osx/gmake.md b/pages.pl/osx/gmake.md new file mode 100644 index 0000000000..ff5461ea0f --- /dev/null +++ b/pages.pl/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> To polecenie jest aliasem `-p linux make`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux make` diff --git a/pages.pl/osx/gmd5sum.md b/pages.pl/osx/gmd5sum.md new file mode 100644 index 0000000000..d415d9dd27 --- /dev/null +++ b/pages.pl/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> To polecenie jest aliasem `-p linux md5sum`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux md5sum` diff --git a/pages.pl/osx/gmkdir.md b/pages.pl/osx/gmkdir.md new file mode 100644 index 0000000000..af53a09935 --- /dev/null +++ b/pages.pl/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> To polecenie jest aliasem `-p linux mkdir`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux mkdir` diff --git a/pages.pl/osx/gmkfifo.md b/pages.pl/osx/gmkfifo.md new file mode 100644 index 0000000000..2267431f7e --- /dev/null +++ b/pages.pl/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> To polecenie jest aliasem `-p linux mkfifo`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux mkfifo` diff --git a/pages.pl/osx/gmknod.md b/pages.pl/osx/gmknod.md new file mode 100644 index 0000000000..1738689f91 --- /dev/null +++ b/pages.pl/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> To polecenie jest aliasem `-p linux mknod`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux mknod` diff --git a/pages.pl/osx/gmktemp.md b/pages.pl/osx/gmktemp.md new file mode 100644 index 0000000000..ae8415d0df --- /dev/null +++ b/pages.pl/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> To polecenie jest aliasem `-p linux mktemp`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux mktemp` diff --git a/pages.pl/osx/gmv.md b/pages.pl/osx/gmv.md new file mode 100644 index 0000000000..b00b9aa619 --- /dev/null +++ b/pages.pl/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> To polecenie jest aliasem `-p linux mv`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux mv` diff --git a/pages.pl/osx/gnice.md b/pages.pl/osx/gnice.md new file mode 100644 index 0000000000..e375ca568d --- /dev/null +++ b/pages.pl/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> To polecenie jest aliasem `-p linux nice`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux nice` diff --git a/pages.pl/osx/gnl.md b/pages.pl/osx/gnl.md new file mode 100644 index 0000000000..750d1e1ef5 --- /dev/null +++ b/pages.pl/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> To polecenie jest aliasem `-p linux nl`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux nl` diff --git a/pages.pl/osx/gnohup.md b/pages.pl/osx/gnohup.md new file mode 100644 index 0000000000..8132fc69c7 --- /dev/null +++ b/pages.pl/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> To polecenie jest aliasem `-p linux nohup`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux nohup` diff --git a/pages.pl/osx/gnproc.md b/pages.pl/osx/gnproc.md new file mode 100644 index 0000000000..3802e2c045 --- /dev/null +++ b/pages.pl/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> To polecenie jest aliasem `-p linux nproc`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux nproc` diff --git a/pages.pl/osx/gnumfmt.md b/pages.pl/osx/gnumfmt.md new file mode 100644 index 0000000000..546a501c05 --- /dev/null +++ b/pages.pl/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> To polecenie jest aliasem `-p linux numfmt`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux numfmt` diff --git a/pages.pl/osx/god.md b/pages.pl/osx/god.md new file mode 100644 index 0000000000..565d622589 --- /dev/null +++ b/pages.pl/osx/god.md @@ -0,0 +1,7 @@ +# god + +> To polecenie jest aliasem `-p linux od`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux od` diff --git a/pages.pl/osx/gpaste.md b/pages.pl/osx/gpaste.md new file mode 100644 index 0000000000..1213a5becd --- /dev/null +++ b/pages.pl/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> To polecenie jest aliasem `-p linux paste`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux paste` diff --git a/pages.pl/osx/gpathchk.md b/pages.pl/osx/gpathchk.md new file mode 100644 index 0000000000..b02e937d97 --- /dev/null +++ b/pages.pl/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> To polecenie jest aliasem `-p linux pathchk`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux pathchk` diff --git a/pages.pl/osx/gping.md b/pages.pl/osx/gping.md new file mode 100644 index 0000000000..73632f889f --- /dev/null +++ b/pages.pl/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> To polecenie jest aliasem `-p linux ping`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux ping` diff --git a/pages.pl/osx/gping6.md b/pages.pl/osx/gping6.md new file mode 100644 index 0000000000..fb92c24985 --- /dev/null +++ b/pages.pl/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> To polecenie jest aliasem `-p linux ping6`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux ping6` diff --git a/pages.pl/osx/gpinky.md b/pages.pl/osx/gpinky.md new file mode 100644 index 0000000000..587c565f59 --- /dev/null +++ b/pages.pl/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> To polecenie jest aliasem `-p linux pinky`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux pinky` diff --git a/pages.pl/osx/gpr.md b/pages.pl/osx/gpr.md new file mode 100644 index 0000000000..6de3fdd833 --- /dev/null +++ b/pages.pl/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> To polecenie jest aliasem `-p linux pr`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux pr` diff --git a/pages.pl/osx/gprintenv.md b/pages.pl/osx/gprintenv.md new file mode 100644 index 0000000000..5bfcbf3680 --- /dev/null +++ b/pages.pl/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> To polecenie jest aliasem `-p linux printenv`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux printenv` diff --git a/pages.pl/osx/gprintf.md b/pages.pl/osx/gprintf.md new file mode 100644 index 0000000000..e1d40ee7f9 --- /dev/null +++ b/pages.pl/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> To polecenie jest aliasem `-p linux printf`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux printf` diff --git a/pages.pl/osx/gptx.md b/pages.pl/osx/gptx.md new file mode 100644 index 0000000000..7b8a40f97d --- /dev/null +++ b/pages.pl/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> To polecenie jest aliasem `-p linux ptx`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux ptx` diff --git a/pages.pl/osx/gpwd.md b/pages.pl/osx/gpwd.md new file mode 100644 index 0000000000..95259ef2cd --- /dev/null +++ b/pages.pl/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> To polecenie jest aliasem `-p linux pwd`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux pwd` diff --git a/pages.pl/osx/grcp.md b/pages.pl/osx/grcp.md new file mode 100644 index 0000000000..dd38e44b91 --- /dev/null +++ b/pages.pl/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> To polecenie jest aliasem `-p linux rcp`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux rcp` diff --git a/pages.pl/osx/greadlink.md b/pages.pl/osx/greadlink.md new file mode 100644 index 0000000000..779e853ed1 --- /dev/null +++ b/pages.pl/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> To polecenie jest aliasem `-p linux readlink`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux readlink` diff --git a/pages.pl/osx/grealpath.md b/pages.pl/osx/grealpath.md new file mode 100644 index 0000000000..77b55737b4 --- /dev/null +++ b/pages.pl/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> To polecenie jest aliasem `-p linux realpath`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux realpath` diff --git a/pages.pl/osx/grexec.md b/pages.pl/osx/grexec.md new file mode 100644 index 0000000000..ce30156374 --- /dev/null +++ b/pages.pl/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> To polecenie jest aliasem `-p linux rexec`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux rexec` diff --git a/pages.pl/osx/grlogin.md b/pages.pl/osx/grlogin.md new file mode 100644 index 0000000000..8addbe9e61 --- /dev/null +++ b/pages.pl/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> To polecenie jest aliasem `-p linux rlogin`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux rlogin` diff --git a/pages.pl/osx/grm.md b/pages.pl/osx/grm.md new file mode 100644 index 0000000000..1af91d0091 --- /dev/null +++ b/pages.pl/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> To polecenie jest aliasem `-p linux rm`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux rm` diff --git a/pages.pl/osx/grmdir.md b/pages.pl/osx/grmdir.md new file mode 100644 index 0000000000..50c72652ff --- /dev/null +++ b/pages.pl/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> To polecenie jest aliasem `-p linux rmdir`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux rmdir` diff --git a/pages.pl/osx/grsh.md b/pages.pl/osx/grsh.md new file mode 100644 index 0000000000..8d49778b98 --- /dev/null +++ b/pages.pl/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> To polecenie jest aliasem `-p linux rsh`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux rsh` diff --git a/pages.pl/osx/gruncon.md b/pages.pl/osx/gruncon.md new file mode 100644 index 0000000000..c18b866a40 --- /dev/null +++ b/pages.pl/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> To polecenie jest aliasem `-p linux runcon`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux runcon` diff --git a/pages.pl/osx/gsed.md b/pages.pl/osx/gsed.md new file mode 100644 index 0000000000..658273752e --- /dev/null +++ b/pages.pl/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> To polecenie jest aliasem `-p linux sed`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux sed` diff --git a/pages.pl/osx/gseq.md b/pages.pl/osx/gseq.md new file mode 100644 index 0000000000..1229938fc5 --- /dev/null +++ b/pages.pl/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> To polecenie jest aliasem `-p linux seq`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux seq` diff --git a/pages.pl/osx/gsha1sum.md b/pages.pl/osx/gsha1sum.md new file mode 100644 index 0000000000..101ff781b9 --- /dev/null +++ b/pages.pl/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> To polecenie jest aliasem `-p linux sha1sum`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux sha1sum` diff --git a/pages.pl/osx/gsha224sum.md b/pages.pl/osx/gsha224sum.md new file mode 100644 index 0000000000..184e6b250d --- /dev/null +++ b/pages.pl/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> To polecenie jest aliasem `-p linux sha224sum`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux sha224sum` diff --git a/pages.pl/osx/gsha256sum.md b/pages.pl/osx/gsha256sum.md new file mode 100644 index 0000000000..5120809e5a --- /dev/null +++ b/pages.pl/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> To polecenie jest aliasem `-p linux sha256sum`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux sha256sum` diff --git a/pages.pl/osx/gsha384sum.md b/pages.pl/osx/gsha384sum.md new file mode 100644 index 0000000000..63f07dc530 --- /dev/null +++ b/pages.pl/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> To polecenie jest aliasem `-p linux sha384sum`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux sha384sum` diff --git a/pages.pl/osx/gsha512sum.md b/pages.pl/osx/gsha512sum.md new file mode 100644 index 0000000000..dd072bd1b6 --- /dev/null +++ b/pages.pl/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> To polecenie jest aliasem `-p linux sha512sum`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux sha512sum` diff --git a/pages.pl/osx/gshred.md b/pages.pl/osx/gshred.md new file mode 100644 index 0000000000..6c86600757 --- /dev/null +++ b/pages.pl/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> To polecenie jest aliasem `-p linux shred`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux shred` diff --git a/pages.pl/osx/gshuf.md b/pages.pl/osx/gshuf.md new file mode 100644 index 0000000000..1b38b131fe --- /dev/null +++ b/pages.pl/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> To polecenie jest aliasem `-p linux shuf`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux shuf` diff --git a/pages.pl/osx/gsleep.md b/pages.pl/osx/gsleep.md new file mode 100644 index 0000000000..15f8027880 --- /dev/null +++ b/pages.pl/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> To polecenie jest aliasem `-p linux sleep`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux sleep` diff --git a/pages.pl/osx/gsort.md b/pages.pl/osx/gsort.md new file mode 100644 index 0000000000..c54f03101b --- /dev/null +++ b/pages.pl/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> To polecenie jest aliasem `-p linux sort`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux sort` diff --git a/pages.pl/osx/gsplit.md b/pages.pl/osx/gsplit.md new file mode 100644 index 0000000000..d621a4c851 --- /dev/null +++ b/pages.pl/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> To polecenie jest aliasem `-p linux split`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux split` diff --git a/pages.pl/osx/gstat.md b/pages.pl/osx/gstat.md new file mode 100644 index 0000000000..e2bd274834 --- /dev/null +++ b/pages.pl/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> To polecenie jest aliasem `-p linux stat`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux stat` diff --git a/pages.pl/osx/gstdbuf.md b/pages.pl/osx/gstdbuf.md new file mode 100644 index 0000000000..e2403fabdf --- /dev/null +++ b/pages.pl/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> To polecenie jest aliasem `-p linux stdbuf`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux stdbuf` diff --git a/pages.pl/osx/gstty.md b/pages.pl/osx/gstty.md new file mode 100644 index 0000000000..c853cbd2cb --- /dev/null +++ b/pages.pl/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> To polecenie jest aliasem `-p linux stty`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux stty` diff --git a/pages.pl/osx/gsum.md b/pages.pl/osx/gsum.md new file mode 100644 index 0000000000..64bd6a98e6 --- /dev/null +++ b/pages.pl/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> To polecenie jest aliasem `-p linux sum`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux sum` diff --git a/pages.pl/osx/gsync.md b/pages.pl/osx/gsync.md new file mode 100644 index 0000000000..cc1fddb7ab --- /dev/null +++ b/pages.pl/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> To polecenie jest aliasem `-p linux sync`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux sync` diff --git a/pages.pl/osx/gtac.md b/pages.pl/osx/gtac.md new file mode 100644 index 0000000000..dbaf15d8e4 --- /dev/null +++ b/pages.pl/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> To polecenie jest aliasem `-p linux tac`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux tac` diff --git a/pages.pl/osx/gtail.md b/pages.pl/osx/gtail.md new file mode 100644 index 0000000000..7bb9057981 --- /dev/null +++ b/pages.pl/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> To polecenie jest aliasem `-p linux tail`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux tail` diff --git a/pages.pl/osx/gtalk.md b/pages.pl/osx/gtalk.md new file mode 100644 index 0000000000..d4417f0a23 --- /dev/null +++ b/pages.pl/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> To polecenie jest aliasem `-p linux talk`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux talk` diff --git a/pages.pl/osx/gtar.md b/pages.pl/osx/gtar.md new file mode 100644 index 0000000000..9bec7edab4 --- /dev/null +++ b/pages.pl/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> To polecenie jest aliasem `-p linux tar`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux tar` diff --git a/pages.pl/osx/gtee.md b/pages.pl/osx/gtee.md new file mode 100644 index 0000000000..a0393abf16 --- /dev/null +++ b/pages.pl/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> To polecenie jest aliasem `-p linux tee`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux tee` diff --git a/pages.pl/osx/gtelnet.md b/pages.pl/osx/gtelnet.md new file mode 100644 index 0000000000..f917dd7384 --- /dev/null +++ b/pages.pl/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> To polecenie jest aliasem `-p linux telnet`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux telnet` diff --git a/pages.pl/osx/gtest.md b/pages.pl/osx/gtest.md new file mode 100644 index 0000000000..5378eca427 --- /dev/null +++ b/pages.pl/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> To polecenie jest aliasem `-p linux test`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux test` diff --git a/pages.pl/osx/gtftp.md b/pages.pl/osx/gtftp.md new file mode 100644 index 0000000000..fae7516925 --- /dev/null +++ b/pages.pl/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> To polecenie jest aliasem `-p linux tftp`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux tftp` diff --git a/pages.pl/osx/gtime.md b/pages.pl/osx/gtime.md new file mode 100644 index 0000000000..51cb2ab624 --- /dev/null +++ b/pages.pl/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> To polecenie jest aliasem `-p linux time`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux time` diff --git a/pages.pl/osx/gtimeout.md b/pages.pl/osx/gtimeout.md new file mode 100644 index 0000000000..a085ab4898 --- /dev/null +++ b/pages.pl/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> To polecenie jest aliasem `-p linux timeout`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux timeout` diff --git a/pages.pl/osx/gtouch.md b/pages.pl/osx/gtouch.md new file mode 100644 index 0000000000..877b106a17 --- /dev/null +++ b/pages.pl/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> To polecenie jest aliasem `-p linux touch`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux touch` diff --git a/pages.pl/osx/gtr.md b/pages.pl/osx/gtr.md new file mode 100644 index 0000000000..76ae452c76 --- /dev/null +++ b/pages.pl/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> To polecenie jest aliasem `-p linux tr`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux tr` diff --git a/pages.pl/osx/gtraceroute.md b/pages.pl/osx/gtraceroute.md new file mode 100644 index 0000000000..3dbe3b76d4 --- /dev/null +++ b/pages.pl/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> To polecenie jest aliasem `-p linux traceroute`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux traceroute` diff --git a/pages.pl/osx/gtrue.md b/pages.pl/osx/gtrue.md new file mode 100644 index 0000000000..4c115febce --- /dev/null +++ b/pages.pl/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> To polecenie jest aliasem `-p linux true`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux true` diff --git a/pages.pl/osx/gtruncate.md b/pages.pl/osx/gtruncate.md new file mode 100644 index 0000000000..43016f1a4b --- /dev/null +++ b/pages.pl/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> To polecenie jest aliasem `-p linux truncate`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux truncate` diff --git a/pages.pl/osx/gtsort.md b/pages.pl/osx/gtsort.md new file mode 100644 index 0000000000..9bffd3c899 --- /dev/null +++ b/pages.pl/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> To polecenie jest aliasem `-p linux tsort`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux tsort` diff --git a/pages.pl/osx/gtty.md b/pages.pl/osx/gtty.md new file mode 100644 index 0000000000..b4748f6320 --- /dev/null +++ b/pages.pl/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> To polecenie jest aliasem `-p linux tty`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux tty` diff --git a/pages.pl/osx/guname.md b/pages.pl/osx/guname.md new file mode 100644 index 0000000000..731a15e641 --- /dev/null +++ b/pages.pl/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> To polecenie jest aliasem `-p linux uname`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux uname` diff --git a/pages.pl/osx/gunexpand.md b/pages.pl/osx/gunexpand.md new file mode 100644 index 0000000000..838a900ced --- /dev/null +++ b/pages.pl/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> To polecenie jest aliasem `-p linux unexpand`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux unexpand` diff --git a/pages.pl/osx/guniq.md b/pages.pl/osx/guniq.md new file mode 100644 index 0000000000..d39bcb4358 --- /dev/null +++ b/pages.pl/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> To polecenie jest aliasem `-p linux uniq`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux uniq` diff --git a/pages.pl/osx/gunits.md b/pages.pl/osx/gunits.md new file mode 100644 index 0000000000..9a89d9bbdb --- /dev/null +++ b/pages.pl/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> To polecenie jest aliasem `-p linux units`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux units` diff --git a/pages.pl/osx/gunlink.md b/pages.pl/osx/gunlink.md new file mode 100644 index 0000000000..5a22cbfef2 --- /dev/null +++ b/pages.pl/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> To polecenie jest aliasem `-p linux unlink`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux unlink` diff --git a/pages.pl/osx/gupdatedb.md b/pages.pl/osx/gupdatedb.md new file mode 100644 index 0000000000..1d827beb10 --- /dev/null +++ b/pages.pl/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> To polecenie jest aliasem `-p linux updatedb`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux updatedb` diff --git a/pages.pl/osx/guptime.md b/pages.pl/osx/guptime.md new file mode 100644 index 0000000000..099e5c6986 --- /dev/null +++ b/pages.pl/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> To polecenie jest aliasem `-p linux uptime`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux uptime` diff --git a/pages.pl/osx/gusers.md b/pages.pl/osx/gusers.md new file mode 100644 index 0000000000..59577035a1 --- /dev/null +++ b/pages.pl/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> To polecenie jest aliasem `-p linux users`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux users` diff --git a/pages.pl/osx/gvdir.md b/pages.pl/osx/gvdir.md new file mode 100644 index 0000000000..4b3e972eeb --- /dev/null +++ b/pages.pl/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> To polecenie jest aliasem `-p linux vdir`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux vdir` diff --git a/pages.pl/osx/gwc.md b/pages.pl/osx/gwc.md new file mode 100644 index 0000000000..a3642816cd --- /dev/null +++ b/pages.pl/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> To polecenie jest aliasem `-p linux wc`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux wc` diff --git a/pages.pl/osx/gwhich.md b/pages.pl/osx/gwhich.md new file mode 100644 index 0000000000..11005188c8 --- /dev/null +++ b/pages.pl/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> To polecenie jest aliasem `-p linux which`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux which` diff --git a/pages.pl/osx/gwho.md b/pages.pl/osx/gwho.md new file mode 100644 index 0000000000..68713ad6a6 --- /dev/null +++ b/pages.pl/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> To polecenie jest aliasem `-p linux who`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux who` diff --git a/pages.pl/osx/gwhoami.md b/pages.pl/osx/gwhoami.md new file mode 100644 index 0000000000..4c1cffe8c0 --- /dev/null +++ b/pages.pl/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> To polecenie jest aliasem `-p linux whoami`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux whoami` diff --git a/pages.pl/osx/gwhois.md b/pages.pl/osx/gwhois.md new file mode 100644 index 0000000000..8bb80bef30 --- /dev/null +++ b/pages.pl/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> To polecenie jest aliasem `-p linux whois`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux whois` diff --git a/pages.pl/osx/gxargs.md b/pages.pl/osx/gxargs.md new file mode 100644 index 0000000000..063cd96135 --- /dev/null +++ b/pages.pl/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> To polecenie jest aliasem `-p linux xargs`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux xargs` diff --git a/pages.pl/osx/gyes.md b/pages.pl/osx/gyes.md new file mode 100644 index 0000000000..3f3cdd20cf --- /dev/null +++ b/pages.pl/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> To polecenie jest aliasem `-p linux yes`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr -p linux yes` diff --git a/pages.pl/osx/launchd.md b/pages.pl/osx/launchd.md new file mode 100644 index 0000000000..e3f87477e7 --- /dev/null +++ b/pages.pl/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> To polecenie jest aliasem `launchctl`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr launchctl` diff --git a/pages.pl/windows/chrome.md b/pages.pl/windows/chrome.md new file mode 100644 index 0000000000..a9f93ceef9 --- /dev/null +++ b/pages.pl/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> To polecenie jest aliasem `chromium`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr chromium` diff --git a/pages.pl/windows/cinst.md b/pages.pl/windows/cinst.md index e407f9dddd..68042c3fbf 100644 --- a/pages.pl/windows/cinst.md +++ b/pages.pl/windows/cinst.md @@ -3,6 +3,6 @@ > To polecenie jest aliasem `choco install`. > Więcej informacji: . -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr choco install` diff --git a/pages.pl/windows/clist.md b/pages.pl/windows/clist.md index 1fa020d111..7241521363 100644 --- a/pages.pl/windows/clist.md +++ b/pages.pl/windows/clist.md @@ -3,6 +3,6 @@ > To polecenie jest aliasem `choco list`. > Więcej informacji: . -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr choco list` diff --git a/pages.pl/windows/cpush.md b/pages.pl/windows/cpush.md new file mode 100644 index 0000000000..6c6151e999 --- /dev/null +++ b/pages.pl/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> To polecenie jest aliasem `choco-push`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr choco-push` diff --git a/pages.pl/windows/cuninst.md b/pages.pl/windows/cuninst.md index cec61420bb..e9a2bc77d3 100644 --- a/pages.pl/windows/cuninst.md +++ b/pages.pl/windows/cuninst.md @@ -3,6 +3,6 @@ > To polecenie jest aliasem `choco uninstall`. > Więcej informacji: . -- Zobacz dokumentację orginalnego polecenia: +- Zobacz dokumentację oryginalnego polecenia: `tldr choco uninstall` diff --git a/pages.pl/windows/curl.md b/pages.pl/windows/curl.md index 8b261bb982..2d232f154e 100644 --- a/pages.pl/windows/curl.md +++ b/pages.pl/windows/curl.md @@ -1,12 +1,12 @@ # curl -> W PowerShell polecenie to może być aliasem polecenia `Invoke-WebRequest`, gdy oryginalny program `curl` () nie jest poprawnie zainstalowany. +> W PowerShell to polecenie może być aliasem `Invoke-WebRequest`, gdy oryginalny program `curl` () nie jest poprawnie zainstalowany. -- Zweryfikuj, czy `curl` jest poprawnie zainstalowany przez sprawdzeniem jego wersji. Jeśli to polecenie zwraca błąd, PowerShell mógł zastąpić to polecenie `Invoke-WebRequest`: +- Zweryfikuj, czy `curl` jest poprawnie zainstalowany poprzez sprawdzenie jego wersji. Jeśli to polecenie zwraca błąd, PowerShell mógł je zastąpić poleceniem `Invoke-WebRequest`: `curl --version` -- Zobacz dokumentację orginalnego polecenia `curl`: +- Zobacz dokumentację oryginalnego polecenia `curl`: `tldr curl -p common` diff --git a/pages.pl/windows/iwr.md b/pages.pl/windows/iwr.md new file mode 100644 index 0000000000..1ad9cfd7b8 --- /dev/null +++ b/pages.pl/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> To polecenie jest aliasem `invoke-webrequest`. + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr invoke-webrequest` diff --git a/pages.pl/windows/pwsh-where.md b/pages.pl/windows/pwsh-where.md new file mode 100644 index 0000000000..6608d704ff --- /dev/null +++ b/pages.pl/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> To polecenie jest aliasem `Where-Object`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr Where-Object` diff --git a/pages.pl/windows/rd.md b/pages.pl/windows/rd.md new file mode 100644 index 0000000000..eb0bbe513f --- /dev/null +++ b/pages.pl/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> To polecenie jest aliasem `rmdir`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr rmdir` diff --git a/pages.pl/windows/sls.md b/pages.pl/windows/sls.md new file mode 100644 index 0000000000..71004f180e --- /dev/null +++ b/pages.pl/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> To polecenie jest aliasem `where-object`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr where-object` diff --git a/pages.pl/windows/time.md b/pages.pl/windows/time.md index a071d92d08..137ebdd89a 100644 --- a/pages.pl/windows/time.md +++ b/pages.pl/windows/time.md @@ -1,7 +1,7 @@ # time > Wyświetl lub ustaw czas systemowy. -> Więcej informacji: . +> Więcej informacji: . - Wyświetl aktualny czas systemowy i zapytaj o wprowadzenie nowego czasu (pozostawić puste, aby zachować niezmieniony czas): diff --git a/pages.pl/windows/wget.md b/pages.pl/windows/wget.md new file mode 100644 index 0000000000..611faa8681 --- /dev/null +++ b/pages.pl/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> To polecenie jest aliasem `wget -p common`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr wget -p common` diff --git a/pages.pt_BR/android/bugreport.md b/pages.pt_BR/android/bugreport.md index 4743782206..5ced6108b4 100644 --- a/pages.pt_BR/android/bugreport.md +++ b/pages.pt_BR/android/bugreport.md @@ -2,7 +2,7 @@ > Mostra um relatório de bugs do Android. > Esse comando só pode ser utilizado por meio de `adb shell`. -> Mais informações: . +> Mais informações: . - Mostra um relatório completo de bugs de um dispositivo Android: diff --git a/pages.pt_BR/android/bugreportz.md b/pages.pt_BR/android/bugreportz.md index 379638ee76..4f0a028447 100644 --- a/pages.pt_BR/android/bugreportz.md +++ b/pages.pt_BR/android/bugreportz.md @@ -2,7 +2,7 @@ > Gera um relatório de bugs do Android em formato .zip. > Esse comando só pode ser utilizado por meio de `adb shell`. -> Mais informações: . +> Mais informações: . - Mostra um relatório completo de bugs de um dispositivo Android em formato .zip: diff --git a/pages.pt_BR/android/cmd.md b/pages.pt_BR/android/cmd.md index 6dab949761..138f05952c 100644 --- a/pages.pt_BR/android/cmd.md +++ b/pages.pt_BR/android/cmd.md @@ -1,7 +1,7 @@ # cmd > Gerenciador de serviços do Android (service manager). -> Mais informações: . +> Mais informações: . - Lista todos os serviços em execução: diff --git a/pages.pt_BR/android/logcat.md b/pages.pt_BR/android/logcat.md index 98538aed6b..6de6656db6 100644 --- a/pages.pt_BR/android/logcat.md +++ b/pages.pt_BR/android/logcat.md @@ -14,3 +14,11 @@ - Exibe apenas linhas em que a mensagem de registro corresponda a uma expressão regular: `logcat --regex {{expressao_regular}}` + +- Exibe logs para um PID específico: + +`logcat --pid={{pid}}` + +- Exibe logs de processo de um pacote específico: + +`logcat --pid=$(pidof -s {{pacote}})` diff --git a/pages.pt_BR/android/screencap.md b/pages.pt_BR/android/screencap.md index d330e2fd81..e071b383ad 100644 --- a/pages.pt_BR/android/screencap.md +++ b/pages.pt_BR/android/screencap.md @@ -2,7 +2,7 @@ > Tira uma scrennshot do display mobile. > Este comando apenas pode ser usado atraves de `adb shell`. -> Mais informacoes: . +> Mais informações: . - Tira uma screenshot: diff --git a/pages.pt_BR/common/!.md b/pages.pt_BR/common/!.md new file mode 100644 index 0000000000..aa0ce99df6 --- /dev/null +++ b/pages.pt_BR/common/!.md @@ -0,0 +1,24 @@ +# Exclamation mark + +> Mecanismo interno do bash para substituir por um comando existente no histórico. +> Mais informações: . + +- Substitui com o comando anterior e execute com o sudo: + +`sudo !!` + +- Substitui com o comando baseado no número da linha do `history`: + +`!{{número}}` + +- Substitui com o comando que foi usado algumas linhas do histórico atrás: + +`!-{{número}}` + +- Substitui com o comando mais recente que começa com o `texto`: + +`!{{texto}}` + +- Substitui com os argumentos do último comando: + +`{{comando}} !*` diff --git a/pages.pt_BR/common/7z.md b/pages.pt_BR/common/7z.md index 7e9afdec89..1e37280648 100644 --- a/pages.pt_BR/common/7z.md +++ b/pages.pt_BR/common/7z.md @@ -1,7 +1,7 @@ # 7z > Um compactador de arquivos com alta taxa de compressão. -> Mais informações: . +> Mais informações: . - Compacta um arquivo ou diretório: diff --git a/pages.pt_BR/common/7za.md b/pages.pt_BR/common/7za.md index 74a0d3ac89..f4822954a7 100644 --- a/pages.pt_BR/common/7za.md +++ b/pages.pt_BR/common/7za.md @@ -2,7 +2,7 @@ > Um compactador de arquivos com alta taxa de compressão. > Versão compacta do `7z`, com suporte para menos tipos de arquivamento/compressão. -> Mais informações: . +> Mais informações: . - Compactar um arquivo ou diretório: diff --git a/pages.pt_BR/common/7zr.md b/pages.pt_BR/common/7zr.md index 1b3ad09f81..fbb83bb216 100644 --- a/pages.pt_BR/common/7zr.md +++ b/pages.pt_BR/common/7zr.md @@ -2,7 +2,7 @@ > Um compactador de arquivos com alta taxa de compressão. > Versão do `7z` com suporte apenas para o formato `.7z`. -> Mais informações: . +> Mais informações: . - Compactar um arquivo ou diretório: @@ -10,7 +10,7 @@ - Criptografa um arquivo existente (incluindo cabeçalhos): -`7zr a {{arquivo_criptografado.7z}} -p{{senha}} -mhe=on {{caminho/para/arquivo_compactado.7z}}` +`7zr a {{arquivo_criptografado.7z}} -p{{senha}} -mhe={{on}} {{caminho/para/arquivo_compactado.7z}}` - Descompacta um arquivo mantendo a estrutura de diretórios original: diff --git a/pages.pt_BR/common/aapt.md b/pages.pt_BR/common/aapt.md new file mode 100644 index 0000000000..a3bca4e61b --- /dev/null +++ b/pages.pt_BR/common/aapt.md @@ -0,0 +1,17 @@ +# aapt + +> Ferramenta Android de empacotamento de recursos. +> Compila e empacota recursos de um aplicativo Android. +> Mais informações: . + +- Lista os arquivos contigos em um arquivo APK: + +`aapt list {{caminho/para/aplicativo.apk}}` + +- Exibe os metadados de um aplicavio (versão, permissão, etc.): + +`aapt dump badging {{caminho/para/aplicativo.apk}}` + +- Cria um novo arquivo APK com os arquivos especificados no diretório: + +`aapt package -F {{caminho/para/aplicativo.apk}} {{caminho/para/diretório}}` diff --git a/pages.pt_BR/common/acme.sh.md b/pages.pt_BR/common/acme.sh.md new file mode 100644 index 0000000000..6f54c36ed0 --- /dev/null +++ b/pages.pt_BR/common/acme.sh.md @@ -0,0 +1,33 @@ +# acme.sh + +> Script shell script que implementa o protocolo cliente ACME, ma alternativa para o certbot. +> Veja também `acme.sh dns`. +> Mais informações: . + +- Emite um certificado usando o modo webroot: + +`acme.sh --issue --domain {{exemplo.com}} --webroot {{/caminho/para/webroot}}` + +- Emite um certificado para múltiplos domínios usando o modo standalone na porta 80: + +`acme.sh --issue --standalone --domain {{exemplo.com}} --domain {{www.exemplo.com}}` + +- Emite um certificado usando o modo standaline TLS na porta 443: + +`acme.sh --issue --alpn --domain {{exemplo.com}}` + +- Emite um certificado usando uma configuração válida Nginx: + +`acme.sh --issue --nginx --domain {{exemplo.com}}` + +- Emite um certificado usando uma configuração válida Apache: + +`acme.sh --issue --apache --domain {{exemplo.com}}` + +- Emite um certificado wildcard (\*) usando o modo DNS_API automático: + +`acme.sh --issue --dns {{dns_cf}} --domain {{*.exemplo.com}}` + +- Instala os arquivos dos certificaods em um local específico (útil para renovação automática do certificado): + +`acme.sh --install-cert -d {{exemplo.com}} --key-file {{/caminho/para/exemplo.com.key}} --fullchain-file {{/caminho/para/exemplo.com.cer}} --reloadcmd {{"systemctl force-reload nginx"}}` diff --git a/pages.pt_BR/common/afconvert.md b/pages.pt_BR/common/afconvert.md new file mode 100644 index 0000000000..56f8fac0a3 --- /dev/null +++ b/pages.pt_BR/common/afconvert.md @@ -0,0 +1,12 @@ +# afconvert + +> Converte entre os formatos de arquivo AFF e Raw. +> Mais informações: . + +- Usa uma extensão específica (padrão: `aff`): + +`afconvert -a {{extensão}} {{caminho/para/arquivo_de_entrada}} {{caminho/para/arquivo_de_saida1 caminho/para/arquivo_de_saida2 ...}}` + +- Usa um nível específico de compressão (padrão: `7`): + +`afconvert -X{{0..7}} {{caminho/para/arquivo_de_entrada}} {{caminho/para/arquivo_de_saida1 caminho/para/arquivo_de_saida2 ...}}` diff --git a/pages.pt_BR/common/age-keygen.md b/pages.pt_BR/common/age-keygen.md new file mode 100644 index 0000000000..b2fbdbf53c --- /dev/null +++ b/pages.pt_BR/common/age-keygen.md @@ -0,0 +1,13 @@ +# age-keygen + +> Gera par de chaves `age`. +> Veja `age` para como criptografar/descriptografar arquivos. +> Mais informações: . + +- Gera um par de chaves, salva em um arquivo não criptografado e imprime a chave pública para `stdout`: + +`age-keygen --output {{caminho/para/arquivo}}` + +- Converte uma identidade para um destinatário e imprime a chave pública para `stdout`: + +`age-keygen -y {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/common/age.md b/pages.pt_BR/common/age.md index 6d266185ed..8e59fb552d 100644 --- a/pages.pt_BR/common/age.md +++ b/pages.pt_BR/common/age.md @@ -7,7 +7,7 @@ `age --passphrase --output {{caminho/para/arquivo_criptografado}} {{caminho/para/arquivo_descriptografado}}` -- Gera um par de chaves, salvando a chave privada em um arquivo não criptografado e imprimindo a chave pública para stdout: +- Gera um par de chaves, salvando a chave privada em um arquivo não criptografado e imprimindo a chave pública para `stdout`: `age-keygen --output {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/common/alex.md b/pages.pt_BR/common/alex.md index ad44a764ae..a2371e5138 100644 --- a/pages.pt_BR/common/alex.md +++ b/pages.pt_BR/common/alex.md @@ -4,7 +4,7 @@ > Ajuda a encontrar no texto, frases favorecedoras de gênero, polarizantes, relacionadas à raça, insensíveis à religiao e outras frases desiguais. > Mais informações: . -- Analisa o texto do stdin: +- Analisa o texto do `stdin`: `echo {{A rede dele parece boa}} | alex --stdin` diff --git a/pages.pt_BR/common/amass.md b/pages.pt_BR/common/amass.md index 8fb250ac99..1ef6b9233d 100644 --- a/pages.pt_BR/common/amass.md +++ b/pages.pt_BR/common/amass.md @@ -4,9 +4,9 @@ > Alguns subcomandos como `amass db` tem sua propria documentacao de uso. > Mais informações: . -- Checa a versão de Amass: +- Executa um subcomando Amass: -`amass -version` +`amass {{subcomando}}` - Mostra ajuda geral: @@ -16,6 +16,6 @@ `amass -help {{subcomando}}` -- Executa um subcomando Amass: +- Mostra a versão: -`amass {{subcomando}}` +`amass -version` diff --git a/pages.pt_BR/common/apg.md b/pages.pt_BR/common/apg.md index 4004861188..1444edf017 100644 --- a/pages.pt_BR/common/apg.md +++ b/pages.pt_BR/common/apg.md @@ -21,4 +21,4 @@ - Criar uma senha que não aparece em um dicionário provido pelo usuário: -`apg -r {{arquivo_de_dicionario}}` +`apg -r {{caminho/para/arquivo_de_dicionario}}` diff --git a/pages.pt_BR/common/apm.md b/pages.pt_BR/common/apm.md index ba369a811a..0d40c56c85 100644 --- a/pages.pt_BR/common/apm.md +++ b/pages.pt_BR/common/apm.md @@ -4,7 +4,7 @@ > Ver também `atom`. > Mais informações: . -- Instalar pacotes de http://atom.io/packages e temas de http://atom.io/themes: +- Instalar pacotes de e temas de : `apm install {{nome_do_pacote}}` diff --git a/pages.pt_BR/common/arp.md b/pages.pt_BR/common/arp.md index 8907024def..e7414a3b69 100644 --- a/pages.pt_BR/common/arp.md +++ b/pages.pt_BR/common/arp.md @@ -7,10 +7,6 @@ `arp -a` -- Limpar toda a cache: - -`sudo arp -a -d` - - Eliminar uma entrada específica: `arp -d {{endereço}}` diff --git a/pages.pt_BR/common/autossh.md b/pages.pt_BR/common/autossh.md new file mode 100644 index 0000000000..c855849fc0 --- /dev/null +++ b/pages.pt_BR/common/autossh.md @@ -0,0 +1,29 @@ +# autossh + +> Executa, monitora e reinicia conexões SSH. +> Reconecta automaticamente para manter os túneis de redirecionamento de porta ativos. Aceita todas as flags do `ssh`. +> Mais informações: . + +- Iniciar uma sessão SSH, reiniciando quando uma porta de monitoramento falhar em retornar dados: + +`autossh -M {{porta_de_monitoramento}} "{{comando_ssh}}"` + +- Redirecionar uma porta local para uma porta remota, reiniciando quando necessário: + +`autossh -M {{porta_de_monitoramento}} -L {{porta_local}}:localhost:{{porta_remota}} {{usuário}}@{{host}}` + +- Executar o `autossh` em segundo plano antes de executar o `ssh` e não abrir um shell remoto: + +`autossh -f -M {{porta_de_monitoramento}} -N "{{comando_ssh}}"` + +- Executar em segundo plano, sem porta de monitoramento, e em vez disso enviar pacotes de keep-alive SSH a cada 10 segundos para detectar falhas: + +`autossh -f -M 0 -N -o "ServerAliveInterval 10" -o "ServerAliveCountMax 3" "{{comando_ssh}}"` + +- Executar em segundo plano, sem porta de monitoramento e sem shell remoto, saindo se a redireção da porta falhar: + +`autossh -f -M 0 -N -o "ServerAliveInterval 10" -o "ServerAliveCountMax 3" -o ExitOnForwardFailure=yes -L {{porta_local}}:localhost:{{porta_remota}} {{usuário}}@{{host}}` + +- Executar em segundo plano, registrando a saída de depuração do `autossh` e a saída detalhada do `ssh` em arquivos: + +`AUTOSSH_DEBUG=1 AUTOSSH_LOGFILE={{caminho/para/arquivo_de_log_do_autossh.log}} autossh -f -M {{porta_de_monitoramento}} -v -E {{caminho/para/arquivo_de_log_do_ssh.log}} {{comando_ssh}}` diff --git a/pages.pt_BR/common/aws-s3-cp.md b/pages.pt_BR/common/aws-s3-cp.md new file mode 100644 index 0000000000..2d934760fd --- /dev/null +++ b/pages.pt_BR/common/aws-s3-cp.md @@ -0,0 +1,24 @@ +# aws s3 cp + +> Copia arquivos locais ou objetos do S3 para outros diretórios locais ou no S3. +> Mais informações: . + +- Copia um arquivo local para um bucket específico. + +`aws s3 cp {{caminho/do/arquivo}} s3://{{nome_do_bucket}}/{{caminho/para/o/arquivo_remoto}}` + +- Copia um objeto específico para outro bucket dentro do S3: + +`aws s3 cp s3://{{nome_do_bucket1}}/{{caminho/do/arquivo}} s3://{{nome_do_bucket2}}/{{caminho/para/o/destino}}` + +- Copia um objeto específico do S3 para outro bucket mantendo seu nome original: + +`aws s3 cp s3://{{nome_do_bucket1}}/{{caminho/do/arquivo}} s3://{{nome_do_bucket2}}` + +- Copia objetos do S3 para um diretório local recursivamente: + +`aws s3 cp s3://{{nome_do_bucket}} . --recursive` + +- Exibe a ajuda: + +`aws s3 cp help` diff --git a/pages.pt_BR/common/aws-ses.md b/pages.pt_BR/common/aws-ses.md new file mode 100644 index 0000000000..3d95adbfd8 --- /dev/null +++ b/pages.pt_BR/common/aws-ses.md @@ -0,0 +1,37 @@ +# aws ses + +> Interface de linha de comando para o AWS Simple Email Service. +> Serviço em nuvem com alta performance para envio e recebimento de emails. +> Mais informações: . + +- Cria um novo conjunto de regras: + +`aws ses create-receipt-rule-set --rule-set-name {{nome_do_conjunto_de_regras}} --generate-cli-skeleton` + +- Descreve os conjuntos ativos de regras: + +`aws ses describe-active-receipt-rule-set --generate-cli-skeletion` + +- Descreve um regra específica de um conjunto de regras: + +`aws ses describe-receipt-rule --rule-set-name {{nome_do_conjunto_de_regras}} --rule-name {{nome_da_regra}} --generate-cli-skeleton` + +- Lista todos os conjuntos de regras: + +`aws ses list-receipt-rule-sets --starting-token {{texto_do_token}} --max-items {{inteiro}} --generate-cli-skeleton` + +- Remove um conjunto de regras específico (o conjunto ativo não pode ser removido): + +`aws ses delete-receipt-rule-set --rule-set-name {{nome_do_conjunto_de_regras}} --generate-cli-skeleton` + +- Remove uma regras específica de um conjunto de regras: + +`aws ses delete-receipt-rule --rule-set-name {{nome_do_conjunto_de_regras}} --rule-name {{nome_da_regra}} --generate-cli-skeleton` + +- Envia um email: + +`aws ses send-email --from {{de_endereco}} --destination "ToAddresses={{para_endereco}}" --message "Subject={Data={{assunto}},Charset=utf8},Body={Text={Data={{corpo_email}},Charset=utf8},Html={Data={{corpo_do_email_com_html}},Charset=utf8}}"` + +- Exibe ajuda para um subcomando específico do SES: + +`aws ses {{subcomando}} help` diff --git a/pages.pt_BR/common/aws-sqs.md b/pages.pt_BR/common/aws-sqs.md new file mode 100644 index 0000000000..40c83c2cc7 --- /dev/null +++ b/pages.pt_BR/common/aws-sqs.md @@ -0,0 +1,36 @@ +# aws sqs + +> Cria, apaga, e envia mensagens para filas para o serviço AWS SQS. +> Mais informações: . + +- Lista todas as filas disponíveis: + +`aws sqs list-queues` + +- Exibe a URL de uma fila específica: + +`aws sqs get-queue-url --queue-name {{nome_da_fila}}` + +- Cria uma fila com atributos especificados em arquivo JSON: + +`aws sqs create-queue --queue-name {{nome_da_fila}} --attributes {{file://caminho/para/arquivos_de_atributos.json}}` + +- Envia mensagem específica para uma fila: + +`aws sqs send-message --queue-url https://sqs.{{regiao}}.amazonaws.com/{{nome_da_fila}} --message-body "{{corpo_da_mensagem}}" --delay-seconds {{inteiro}} --message-attributes {{file://caminho/para/arquivos_de_atributos.json}}` + +- Remove uma mensagem específica de uma fila: + +`aws sqs delete-message --queue-url {{https://url_da_fila}} --receipt-handle {{identificado_da_mensagem}}` + +- Remove uma fila específica: + +`aws sqs delete-queue --queue-url https://sqs.{{regiao}}.amazonaws.com/{{nome_da_fila}}` + +- Remove todas as mensagens de uma fila específica: + +`aws sqs purge-queue --queue-url https://sqs.{{regiao}}.amazonaws.com/{{nome_da_fila}}` + +- Habilita uma conta AWS específica para enviar mensagens para uma fila: + +`aws sqs add-permission --queue-url https://sqs.{{regiao}}.amazonaws.com/{{nome_da_fila}} --label {{nome_da_permissao}} --aws-account-ids {{id_da_conta}} --actions SendMessage` diff --git a/pages.pt_BR/common/aws-sts.md b/pages.pt_BR/common/aws-sts.md new file mode 100644 index 0000000000..fbb9d2ce3e --- /dev/null +++ b/pages.pt_BR/common/aws-sts.md @@ -0,0 +1,12 @@ +# aws sts + +> Serviço de Token de Segurança (STS) que permite solicitar credenciais temporárias para usuários (IAM) ou federados. +> Mais informações: . + +- Obtém credenciais temporárias para acessar recursos AWS específicos: + +`aws sts assume-role --role-arn {{arn_do_papel_aws}}` + +- Obtém um usuário IAM ou papel que foi usado para chamar a operação: + +`aws sts get-caller-identity` diff --git a/pages.pt_BR/common/base32.md b/pages.pt_BR/common/base32.md index 8f2727fd11..52e1137b7d 100644 --- a/pages.pt_BR/common/base32.md +++ b/pages.pt_BR/common/base32.md @@ -1,6 +1,6 @@ # base32 -> Codifica ou decodifica um arquivo ou a entrada padrão (stdin) de/para Base32, para a saída padrão (stdout). +> Codifica ou decodifica um arquivo ou a entrada padrão (`stdin`) de/para Base32, para a saída padrão (`stdout`). > Mais informações: . - Codifica um arquivo: @@ -11,10 +11,10 @@ `base32 --decode {{nome_do_arquivo}}` -- Codifica a partir de stdin: +- Codifica a partir de `stdin`: `{{algum_comando}} | base32` -- Decodifica a partir de stdin: +- Decodifica a partir de `stdin`: `{{algum_comando}} | base32 --decode` diff --git a/pages.pt_BR/common/base64.md b/pages.pt_BR/common/base64.md index c51dd28c68..5bebe40430 100644 --- a/pages.pt_BR/common/base64.md +++ b/pages.pt_BR/common/base64.md @@ -1,20 +1,20 @@ # base64 -> Codifica ou decodifica um arquivo ou uma entrada padrão (stdin) de/para Base64, para uma saída padrão (stdout). +> Codifica ou decodifica um arquivo ou uma entrada padrão (`stdin`) de/para Base64, para uma saída padrão (`stdout`). > Mais informações: . -- Codifica o conteúdo de um arquivo para base64 e grava o resultado em stdout: +- Codifica o conteúdo de um arquivo para base64 e grava o resultado em `stdout`: `base64 {{nome_arquivo}}` -- Decodifica o conteúdo de um arquivo em base64 e grava o resultado em stdout: +- Decodifica o conteúdo de um arquivo em base64 e grava o resultado em `stdout`: `base64 --decode {{nome_arquivo}}` -- Codifica a partir de stdin: +- Codifica a partir de `stdin`: `{{algum_comando}} | base64` -- Decodifica a partir de stdin: +- Decodifica a partir de `stdin`: `{{algum_comando}} | base64 --decode` diff --git a/pages.pt_BR/common/bash.md b/pages.pt_BR/common/bash.md index c7372fa60c..8451ed22b5 100644 --- a/pages.pt_BR/common/bash.md +++ b/pages.pt_BR/common/bash.md @@ -1,33 +1,37 @@ # bash > Bourne-Again SHell, um interpretador de linha de comando compatível com `sh`. -> Veja também `histexpand` para a expansão do histórico. +> Veja também: `zsh`, `histexpand` (expansão do histórico). > Mais informações: . -- Iniciar uma seção interativa do shell: +- Inicia uma sessão interativa do shell: `bash` -- Executar um comando e sair: +- Inicia uma sessão interativa do shell sem carregar as configurações de inicialização: -`bash -c "{{comando}}"` +`bash --norc` -- Executar um script: +- Executa [c]omandos específicos: + +`bash -c "{{echo 'bash é executado'}}"` + +- Executa um script específico: `bash {{caminho/para/script.sh}}` -- Executar um script, exibindo cada comando antes de executá-lo: +- Executa um script específico exibindo cada comando antes de executá-lo: `bash -x {{caminho/para/script.sh}}` -- Executar os comandos de um script, parando de executar no primeiro erro: +- Executa um script específico e para no primeiro [e]rro: `bash -e {{caminho/para/script.sh}}` -- Ler e executar comandos do stdin (entrada padrão): +- Executa comandos específicos da `stdin`: -`bash -s` +`{{echo "echo 'bash é executado'"}} | bash` -- Exibir a versão do Bash (`$BASH_VERSION` abrange apenas a versão sem informações da licença): +- Inicia uma sessão do shell [r]estrita: -`bash --version` +`bash -r` diff --git a/pages.pt_BR/linux/binwalk.md b/pages.pt_BR/common/binwalk.md similarity index 100% rename from pages.pt_BR/linux/binwalk.md rename to pages.pt_BR/common/binwalk.md diff --git a/pages.pt_BR/common/bundler.md b/pages.pt_BR/common/bundler.md new file mode 100644 index 0000000000..a6861ffe7a --- /dev/null +++ b/pages.pt_BR/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> Este comando é um pseudônimo de `bundle`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr bundle` diff --git a/pages.pt_BR/common/bzip2.md b/pages.pt_BR/common/bzip2.md index 2d4df2d8e4..12c1b0b3c4 100644 --- a/pages.pt_BR/common/bzip2.md +++ b/pages.pt_BR/common/bzip2.md @@ -1,7 +1,7 @@ # bzip2 > Um compressor de arquivos que utiliza o algoritmo Burrows–Wheeler. -> Mais informações: . +> Mais informações: . - Compactar um arquivo: diff --git a/pages.pt_BR/common/calc.md b/pages.pt_BR/common/calc.md index 4476deb6f5..ac377e2c9b 100644 --- a/pages.pt_BR/common/calc.md +++ b/pages.pt_BR/common/calc.md @@ -1,12 +1,36 @@ # calc -> Calculadora interativa de precisão arbitrária no terminal. +> Uma calculadora interativa de precisão arbitrária no terminal. > Mais informações: . -- Iniciar a calculadora em modo interativo: +- Inicia a `calc` no modo interativo: `calc` -- Realizar o cálculo em modo não interativo: +- Realiza um cálculo no modo não interativo: -`calc -p '{{85 * (36 / 4)}}'` +`calc '{{85 * (36 / 4)}}'` + +- Realiza um cálculo sem qualquer formatação de saída (para usar com pipes): + +`calc -p '{{4/3 * pi() * 5^3}}'` + +- Realiza um cálculo e, em seguida, altera para o modo [i]nterativo: + +`calc -i '{{sqrt(2)}}'` + +- Inicia `calc` em um [m]odo de permissão específico (0 até 7, o padrão é 7): + +`calc -m {{modo}}` + +- Exibe uma introdução à `calc`: + +`calc help intro` + +- Exibe uma visão geral da `calc`: + +`calc help overview` + +- Abre o manual da `calc`: + +`calc help` diff --git a/pages.pt_BR/common/cargo-add.md b/pages.pt_BR/common/cargo-add.md new file mode 100644 index 0000000000..3f1f109869 --- /dev/null +++ b/pages.pt_BR/common/cargo-add.md @@ -0,0 +1,32 @@ +# cargo add + +> Adiciona dependências ao arquivo `Cargo.toml` de um projeto Rust. +> Mais informações: . + +- Adicionar a versão mais recente de uma dependência ao projeto atual: + +`cargo add {{dependência}}` + +- Adicionar uma versão específica de uma dependência: + +`cargo add {{dependência}}@{{versão}}` + +- Adicionar uma dependência e habilitar uma ou mais funcionalidades específicas: + +`cargo add {{dependência}} --features {{funcionalidade_1}},{{funcionalidade_2}}` + +- Adicionar uma dependência opcional, que será exposta como uma funcionalidade da crate: + +`cargo add {{dependência}} --optional` + +- Adicionar uma crate local como dependência: + +`cargo add --path {{caminho/para/crate}}` + +- Adicionar uma dependência de desenvolvimento ou de compilação: + +`cargo add {{dependência}} --{{dev|build}}` + +- Adicionar uma dependência com todas as funcionalidades padrão desabilitadas: + +`cargo add {{dependência}} --no-default-features` diff --git a/pages.pt_BR/common/cargo-build.md b/pages.pt_BR/common/cargo-build.md new file mode 100644 index 0000000000..d6ffba0f7e --- /dev/null +++ b/pages.pt_BR/common/cargo-build.md @@ -0,0 +1,32 @@ +# cargo build + +> Compila um projeto Rust em um pacote local incluindo todas as suas dependências. +> Mais informações: . + +- Compilar o pacote ou pacotes definidos pelo arquivo `Cargo.toml` no diretório local: + +`cargo build` + +- Compilar os artefatos em modo de publicação (release), com otimizações: + +`cargo build --release` + +- Compilar um pacote garantindo que o `Cargo.lock` esteja atualizado: + +`cargo build --locked` + +- Compilar todos os pacotes no workspace: + +`cargo build --workspace` + +- Compilar um pacote específico: + +`cargo build --package {{pacote}}` + +- Compilar apenas o binário especificado: + +`cargo build --bin {{nome}}` + +- Compilar apenas um teste específico: + +`cargo build --test {{nome_do_teste}}` diff --git a/pages.pt_BR/common/cargo-clippy.md b/pages.pt_BR/common/cargo-clippy.md new file mode 100644 index 0000000000..5a5915a250 --- /dev/null +++ b/pages.pt_BR/common/cargo-clippy.md @@ -0,0 +1,32 @@ +# cargo clippy + +> Conjunto de validadores para identificar erros comuns e melhorar código em Rust. +> Mais informações: . + +- Executar verificações no código no diretório atual: + +`cargo clippy` + +- Executar verificações garantindo que o `Cargo.lock` esteja atualizado: + +`cargo clippy --locked` + +- Executar verificações em todos os pacotes no workspace: + +`cargo clippy --workspace` + +- Executar verificações para um pacote específico: + +`cargo clippy --package {{pacote}}` + +- Executar validações tratando avisos como erros: + +`cargo clippy -- --deny warnings` + +- Executar verificações e ignorar avisos: + +`cargo clippy -- --allow warnings` + +- Aplicar automaticamente as sugestões do Clippy: + +`cargo clippy --fix` diff --git a/pages.pt_BR/common/cargo-doc.md b/pages.pt_BR/common/cargo-doc.md new file mode 100644 index 0000000000..0810183bcb --- /dev/null +++ b/pages.pt_BR/common/cargo-doc.md @@ -0,0 +1,20 @@ +# cargo doc + +> Constrói e visualiza a documentação de um pacote Rust, opcionalmente em modo offline. +> Mais informações: . + +- Construir a documentação padrão do pacote e mostrá-la no navegador: + +`cargo doc --open` + +- Construir a documentação sem acessar a rede: + +`cargo doc --offline` + +- Visualizar a documentação de um pacote específico: + +`cargo doc --open --package {{pacote}}` + +- Visualizar a documentação de um pacote específico sem acessar a rede: + +`cargo doc --open --offline --package {{pacote}}` diff --git a/pages.pt_BR/common/cargo-rustc.md b/pages.pt_BR/common/cargo-rustc.md new file mode 100644 index 0000000000..578e8f062e --- /dev/null +++ b/pages.pt_BR/common/cargo-rustc.md @@ -0,0 +1,36 @@ +# cargo rustc + +> Compila um pacote Rust. +> Mais informações: . + +- Compilar o pacote ou pacotes definidos pelo arquivo `Cargo.toml` no diretório de trabalho atual: + +`cargo rustc` + +- Compilar os artefatos em modo de publicação (release), com otimizações: + +`cargo rustc --release` + +- Compilar com otimizações específicas para a arquitetura do CPU atual: + +`cargo rustc --release -- -C target-cpu=native` + +- Compilar com otimização de velocidade: + +`cargo rustc -- -C opt-level {{1|2|3}}` + +- Compilar com otimização de tamanho (`z` também desativa a vetorização de ciclos): + +`cargo rustc -- -C opt-level {{s|z}}` + +- Verificar se o pacote usa código com padrões inseguros de acesso à memória: + +`cargo rustc --lib -- -D unsafe-code` + +- Compilar um pacote específico: + +`cargo rustc --package {{pacote}}` + +- Compilar apenas o binário especificado: + +`cargo --bin {{nome}}` diff --git a/pages.pt_BR/common/cargo-test.md b/pages.pt_BR/common/cargo-test.md new file mode 100644 index 0000000000..7eae8af05b --- /dev/null +++ b/pages.pt_BR/common/cargo-test.md @@ -0,0 +1,32 @@ +# cargo test + +> Executa os testes unitários e de integração de um pacote Rust. +> Mais informações: . + +- Executar apenas os testes que contenham uma string específica em seus nomes: + +`cargo test {{nomedoteste}}` + +- Definir o número de casos de teste para execução simultânea: + +`cargo test -- --test-threads={{quantidade}}` + +- Executar os testes garantindo que o `Cargo.lock` esteja atualizado: + +`cargo test --locked` + +- Testar os artefatos em modo de publicação (release), com otimizações: + +`cargo test --release` + +- Testar todos os pacotes no workspace: + +`cargo test --workspace` + +- Executar testes para um pacote específico: + +`cargo test --package {{pacote}}` + +- Executar testes sem ocultar a saída das execuções dos testes: + +`cargo test -- --nocapture` diff --git a/pages.pt_BR/common/cargo.md b/pages.pt_BR/common/cargo.md index df944dc930..eb7b711690 100644 --- a/pages.pt_BR/common/cargo.md +++ b/pages.pt_BR/common/cargo.md @@ -2,7 +2,7 @@ > Gerencia projetos Rust e as dependências dos modulos (crates). > Alguns subcomandos como `cargo build` tem a sua própria documentação. -> Mais informações: . +> Mais informações: . - Procura por crates: diff --git a/pages.pt_BR/common/cat.md b/pages.pt_BR/common/cat.md index 04ece14925..6324877c4d 100644 --- a/pages.pt_BR/common/cat.md +++ b/pages.pt_BR/common/cat.md @@ -3,18 +3,22 @@ > Exibe e concatena o conteúdo de arquivos. > Mais informações: . -- Exibir o conteúdo de um arquivo no terminal: +- Exibe o conteúdo de um arquivo na `stdout`: -`cat {{arquivo}}` +`cat {{caminho/para/arquivo}}` -- Concatenar o conteúdo de vários arquivos em um arquivo de destino: +- Concatena o conteúdo de vários arquivos em um arquivo de saída: -`cat {{arquivo1}} {{arquivo2}} > {{arquivo_de_destino}}` +`cat {{caminho/para/arquivo1 caminho/para/arquivo2 ...}} > {{caminho/para/arquivo_de_saída}}` -- Adicionar o conteúdo de vários arquivos ao final de um arquivo de destino: +- Anexa o conteúdo de vários arquivos ao final de um arquivo de saída: -`cat {{arquivo1}} {{arquivo2}} >> {{arquivo_de_destino}}` +`cat {{caminho/para/arquivo1 caminho/para/arquivo2 ...}} >> {{caminho/para/arquivo_de_saída}}` -- Exibir o conteúdo de um arquivo no terminal numerando as linhas: +- Copia o conteúdo de um arquivo em um arquivo de saída sem armazenamento em buffer: -`cat -n {{arquivo}}` +`cat -u {{/dev/tty12}} > {{/dev/tty13}}` + +- Escreve a `stdin` em um arquivo: + +`cat - > {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/common/cd.md b/pages.pt_BR/common/cd.md index e3330f76cc..d9ebbc3c3f 100644 --- a/pages.pt_BR/common/cd.md +++ b/pages.pt_BR/common/cd.md @@ -3,18 +3,26 @@ > Altera o diretório de trabalho atual. > Mais informações: . -- Vai para o diretório informado: +- Vai para o diretório especificado: `cd {{caminho/para/diretório}}` -- Vai para o diretório home do usuário atual: - -`cd` - - Vai para o diretório pai do diretório atual: `cd ..` +- Vai para o diretório home do usuário atual: + +`cd` + +- Vai para o diretório home de um usuário especificado: + +`cd ~{{nome_de_usuário}}` + - Vai para o diretório escolhido anteriormente: `cd -` + +- Vai para o diretório raiz: + +`cd /` diff --git a/pages.pt_BR/common/clamav.md b/pages.pt_BR/common/clamav.md new file mode 100644 index 0000000000..92e81c2f6f --- /dev/null +++ b/pages.pt_BR/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> Este comando é um pseudônimo de `clamdscan`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr clamdscan` diff --git a/pages.pt_BR/common/code.md b/pages.pt_BR/common/code.md index 30d12daed9..f6b55c5092 100644 --- a/pages.pt_BR/common/code.md +++ b/pages.pt_BR/common/code.md @@ -1,28 +1,36 @@ # code -> Visual Studio Code. +> Editor de código extensível e multi plataforma. > Mais informações: . -- Abrir o VS Code: +- Inicia Visual Studio Code: `code` -- Abrir o diretório atual no VS Code: +- Abre arquivos/diretórios específicos: -`code .` +`code {{caminho/para/arquivo_ou_diretório1 caminho/para/arquivo_ou_diretório2 ...}}` -- Abrir um arquivo ou diretório no VS Code: +- Compara dois arquivos específicos: -`code {{caminho/para/arquivo-ou-diretório}}` +`code --diff {{caminho/para/arquivo1}} {{caminho/para/arquivo2}}` -- Abrir um arquivo ou diretório numa janela já aberta do VS Code: +- Abre arquivos/diretórios específicos em uma nova janela: -`code --reuse-window {{caminho/para/arquivo-ou-diretório}}` +`code --new-window {{caminho/para/arquivo_ou_diretório1 caminho/para/arquivo_ou_diretório2 ...}}` -- Comparar o conteúdo de dois arquivos no VS Code: +- Instala/desinstala uma extensão específica: -`code -d {{arquivo1}} {{arquivo2}}` +`code --{{install|uninstall}}-extension {{editor.extensão}}` -- Iniciar o VS Code com permissão de super usuário (sudo): +- Imprime as extensões instaladas: -`sudo code {{path/to/file_or_directory}} --user-data-dir` +`code --list-extensions` + +- Imprime extensões instaladas com suas versões: + +`code --list-extensions --show-versions` + +- Inicia o editor como um superusuário (root) enquanto armazena dados do usuário em um diretório específico: + +`sudo code --user-data-dir {{caminho/para/diretório}}` diff --git a/pages.pt_BR/common/coffee.md b/pages.pt_BR/common/coffee.md new file mode 100644 index 0000000000..e4ee897cf7 --- /dev/null +++ b/pages.pt_BR/common/coffee.md @@ -0,0 +1,24 @@ +# coffee + +> Executa scripts CoffeeScript ou os compila em JavaScript. +> Mais informações: . + +- Executa um script: + +`coffee {{caminho/para/arquivo.coffee}}` + +- Compila para JavaScript e salva em um arquivo com o mesmo nome: + +`coffee --compile {{caminho/para/arquivo.coffee}}` + +- Compila para JavaScript e salva em um arquivo de saída indicado: + +`coffee --compile {{caminho/para/arquivo.coffee}} --output {{caminho/para/arquivo.js}}` + +- Inicia um REPL (shell interativo): + +`coffee --interactive` + +- Observa script para alterações e o executa novamente: + +`coffee --watch {{caminho/para/arquivo.coffee}}` diff --git a/pages.pt_BR/common/cp.md b/pages.pt_BR/common/cp.md index eda28ac43e..092280eebe 100644 --- a/pages.pt_BR/common/cp.md +++ b/pages.pt_BR/common/cp.md @@ -3,26 +3,34 @@ > Copia arquivos e diretórios. > Mais informações: . -- Copia um arquivo para outra locação: +- Copia um arquivo para outra localização: `cp {{caminho/para/arquivo_origem.ext}} {{caminho/para/arquivo_destino.ext}}` -- Copia um arquivo para outro diretório, mantendo o mesmo nome: +- Copia um arquivo em outro diretório, mantendo o nome do arquivo: -`cp {{caminho/para/arquivo_origem.ext}} {{caminho/para/diretorio_pai_destino}}` +`cp {{caminho/para/arquivo_origem.ext}} {{caminho/para/diretório_pai_destino}}` -- Copia recursivamente o conteúdo de um diretório para outra locação (se a locação de destino existe, o diretório é copiado dentro dele): +- Copia recursivamente o conteúdo de um diretório para outra localização (se o destino existe, o diretório é copiado dentro dele): -`cp -R {{caminho/para/diretorio_origem}} {{caminho/para/diretorio_destino}}` +`cp -R {{caminho/para/diretório_origem}} {{caminho/para/diretório_destino}}` - Copia um diretório recursivamente, em modo verboso (mostra arquivos que estão sendo copiados): -`cp -vR {{caminho/para/diretorio_origem}} {{caminho/para/diretorio_destino}}` +`cp -vR {{caminho/para/diretório_origem}} {{caminho/para/diretório_destino}}` -- Copia arquivos de texto para outra locação, em modo interativo (pergunta ao usuário antes de sobrescrever): +- Copia múltiplos arquivos de uma só vez para um diretório: -`cp -i {{*.txt}} {{caminho/para/diretorio_destino}}` +`cp -t {{caminho/para/diretório_destino}} {{caminho/para/arquivo1 caminho/para/arquivo2 ...}}` -- Segue links simbólicos antes de realizar a cópia: +- Copia arquivos de texto para outra localização, em modo interativo (pergunta ao usuário antes de sobrescrever): -`cp -L {{link}} {{caminho/para/diretorio_destino}}` +`cp -i {{*.txt}} {{caminho/para/diretório_destino}}` + +- Segue links simbólicos antes de copiar: + +`cp -L {{link}} {{caminho/para/diretório_destino}}` + +- Usa o primeiro argumento como o diretório destino (útil para `xargs ... | cp -t `): + +`cp -t {{caminho/para/diretório_destino}} {{caminho/para/arquivo_ou_diretório1 caminho/para/arquivo_ou_diretório2 ...}}` diff --git a/pages.pt_BR/common/cron.md b/pages.pt_BR/common/cron.md new file mode 100644 index 0000000000..022acfda94 --- /dev/null +++ b/pages.pt_BR/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> Este comando é um pseudônimo de `crontab`. + +- Ver documentação sobre o comando original: + +`tldr crontab` diff --git a/pages.pt_BR/common/cut.md b/pages.pt_BR/common/cut.md new file mode 100644 index 0000000000..2a1d96d1e4 --- /dev/null +++ b/pages.pt_BR/common/cut.md @@ -0,0 +1,16 @@ +# cut + +> Recorta campos do `stdin` ou de arquivos. +> Mais informações: . + +- Imprime um intervalo específico de caracteres/campos de cada linha: + +`{{comando}} | cut --{{characters|fields}}={{1|1,10|1-10|1-|-10}}` + +- Imprime um intervalo de cada linha com um delimitador específico: + +`{{comando}} | cut --delimiter="{{,}}" --{{fields}}={{1}}` + +- Imprime um intervalo de cada linha de um arquivo específico: + +`cut --{{characters}}={{1}} {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/common/dash.md b/pages.pt_BR/common/dash.md index cfb19752d1..84f63ee8ff 100644 --- a/pages.pt_BR/common/dash.md +++ b/pages.pt_BR/common/dash.md @@ -23,6 +23,6 @@ `dash -e {{caminho/para/script.sh}}` -- Lê e executa comandos de stdin: +- Lê e executa comandos de `stdin`: `dash -s` diff --git a/pages.pt_BR/common/date.md b/pages.pt_BR/common/date.md index 41d9183e44..77ec312bfa 100644 --- a/pages.pt_BR/common/date.md +++ b/pages.pt_BR/common/date.md @@ -1,28 +1,36 @@ # date -> Define ou exibe a data e horário do sistema. +> Define ou exibe a data do sistema. > Mais informações: . -- Exibe a data atual usando a formatação padrão: +- Exibe a data atual usando o formato padrão de localidade: -`date +"%c"` +`date +%c` -- Exibe a data atual no formato UTC e ISO 8601: +- Exibe a data atual em UTC, usando o formato ISO 8601: -`date -u +"%Y-%m-%dT%H:%M:%S%Z"` +`date -u +%Y-%m-%dT%H:%M:%S%Z` -- Mostra a data atual em Unix timestamp - segundos desde 00:00:00 UTC de 1 de janeiro de 1970 (Unix epoch): +- Exibe a data atual em Unix timestamp - segundos desde 00:00:00 UTC de 1 de janeiro de 1970 (Unix epoch): `date +%s` -- Exibe uma data representada como Unix timestamp utilizando a formatação padrão: +- Converte uma data especificada como Unix timestamp para o formato padrão: -`date -d @1473305798` +`date -d @{{1473305798}}` -- Converte uma data específica pra Unix timestamp: +- Converte uma determinada data pra Unix timestamp: `date -d "{{2018-09-01 00:00}}" +%s --utc` -- Exibe a data atual no formato RFC-3339 (`YYYY-MM-DD hh:mm:ss TZ`): +- Exibe a data atual usando o formato RFC-3339 (`YYYY-MM-DD hh:mm:ss TZ`): `date --rfc-3339=s` + +- Define a data atual usando o formato `MMDDhhmmYYYY.ss` (`YYYY` e `.ss` são opcionais): + +`date {{093023592021.59}}` + +- Exibe o número da semana ISO atual: + +`date +%V` diff --git a/pages.pt_BR/common/docker-build.md b/pages.pt_BR/common/docker-build.md index 3afcf28baa..1fa1b625cb 100644 --- a/pages.pt_BR/common/docker-build.md +++ b/pages.pt_BR/common/docker-build.md @@ -3,21 +3,25 @@ > Cria uma imagem a partir de um Dockerfile. > Mais informações: . -- Cria uma imagem docker usando o Dockerfile presente no diretório atual: +- Cria uma imagem docker usando o Dockerfile no diretório atual: `docker build .` -- Cria uma imagem docker usando o Dockerfile de uma URL específica: +- Cria uma imagem docker a partir de um Dockerfile em uma URL específica: `docker build {{github.com/creack/docker-firefox}}` -- Cria uma imagem docker e cria uma tag para ela: +- Cria uma imagem docker e cria uma etiqueta para ela: -`docker build --tag {{nome:tag}} .` +`docker build --tag {{nome:etiqueta}} .` + +- Cria uma imagem docker sem contexto de criação: + +`docker build --tag {{nome:etiqueta}} - < {{Dockerfile}}` - Não usa o cache na criação da imagem: -`docker build --no-cache --tag {{nome:tag}} .` +`docker build --no-cache --tag {{nome:etiqueta}} .` - Cria uma imagem docker usando um Dockerfile específico: diff --git a/pages.pt_BR/common/docker-commit.md b/pages.pt_BR/common/docker-commit.md new file mode 100644 index 0000000000..9b2a7c6e36 --- /dev/null +++ b/pages.pt_BR/common/docker-commit.md @@ -0,0 +1,32 @@ +# docker commit + +> Criar uma nova imagem a partir das alterações em um contêiner. +> Mais informações: . + +- Criar uma imagem a partir de um contêiner específico: + +`docker commit {{contêiner}} {{imagem}}:{{tag}}` + +- Aplicar uma instrução `CMD` do Dockerfile à imagem criada: + +`docker commit --change="CMD {{comando}}" {{contêiner}} {{imagem}}:{{tag}}` + +- Aplicar uma instrução `ENV` do Dockerfile à imagem criada: + +`docker commit --change="ENV {{nome}}={{valor}}" {{contêiner}} {{imagem}}:{{tag}}` + +- Criar uma imagem com um autor específico nos metadados: + +`docker commit --author="{{autor}}" {{contêiner}} {{imagem}}:{{tag}}` + +- Criar uma imagem com um comentário específico nos metadados: + +`docker commit --message="{{comentário}}" {{contêiner}} {{imagem}}:{{tag}}` + +- Criar uma imagem sem pausar o contêiner durante o commit: + +`docker commit --pause={{false}} {{contêiner}} {{imagem}}:{{tag}}` + +- Exibir ajuda: + +`docker commit --help` diff --git a/pages.pt_BR/common/docker-compose.md b/pages.pt_BR/common/docker-compose.md index 28444dbfcd..20555014dc 100644 --- a/pages.pt_BR/common/docker-compose.md +++ b/pages.pt_BR/common/docker-compose.md @@ -9,7 +9,7 @@ - Cria e inicia todos os containers em segundo plano usando um arquivo `docker-compose.yml` do seu diretório atual: -`docker compose up -d` +`docker compose up --detach` - Inicia todos os containers. Se necessário, realiza um rebuild: diff --git a/pages.pt_BR/common/docker-container.md b/pages.pt_BR/common/docker-container.md new file mode 100644 index 0000000000..29161f4f0c --- /dev/null +++ b/pages.pt_BR/common/docker-container.md @@ -0,0 +1,36 @@ +# docker container + +> Gerenciar contêineres Docker. +> Mais informações: . + +- Listar os contêineres Docker em execução: + +`docker container ls` + +- Iniciar um ou mais contêineres parados: + +`docker container start {{nome_do_contêiner1}} {{nome_do_contêiner2}}` + +- Encerrar um ou mais contêineres em execução: + +`docker container kill {{nome_do_contêiner}}` + +- Parar um ou mais contêineres em execução: + +`docker container stop {{nome_do_contêiner}}` + +- Pausar todos os processos em um ou mais contêineres: + +`docker container pause {{nome_do_contêiner}}` + +- Exibir informações detalhadas sobre um ou mais contêineres: + +`docker container inspect {{nome_do_contêiner}}` + +- Exportar o sistema de arquivos de um contêiner como um arquivo tar: + +`docker container export {{nome_do_contêiner}}` + +- Criar uma nova imagem a partir das alterações em um contêiner: + +`docker container commit {{nome_do_contêiner}}` diff --git a/pages.pt_BR/common/docker-exec.md b/pages.pt_BR/common/docker-exec.md new file mode 100644 index 0000000000..9d499ecf8d --- /dev/null +++ b/pages.pt_BR/common/docker-exec.md @@ -0,0 +1,28 @@ +# docker exec + +> Executar um comando em um contêiner Docker em execução. +> Mais informações: . + +- Entrar em uma sessão de shell interativa em um contêiner em execução: + +`docker exec --interactive --tty {{nome_do_contêiner}} {{/bin/bash}}` + +- Executar um comando em segundo plano (detached) em um contêiner em execução: + +`docker exec --detach {{nome_do_contêiner}} {{comando}}` + +- Selecionar o diretório de trabalho para a execução de um determinado comando: + +`docker exec --interactive --tty --workdir {{caminho/para/diretório}} {{nome_do_contêiner}} {{comando}}` + +- Executar um comando em segundo plano em um contêiner existente, mas manter o `stdin` aberto: + +`docker exec --interactive --detach {{nome_do_contêiner}} {{comando}}` + +- Definir uma variável de ambiente em uma sessão Bash em execução: + +`docker exec --interactive --tty --env {{nome_da_variável}}={{valor}} {{nome_do_contêiner}} {{/bin/bash}}` + +- Executar um comando como um usuário específico: + +`docker exec --user {{usuário}} {{nome_do_contêiner}} {{comando}}` diff --git a/pages.pt_BR/common/docker-image.md b/pages.pt_BR/common/docker-image.md new file mode 100644 index 0000000000..6735288bb4 --- /dev/null +++ b/pages.pt_BR/common/docker-image.md @@ -0,0 +1,21 @@ +# docker image + +> Gerencia imagens do Docker. +> Veja também `docker build`, `docker import` e `docker pull`. +> Mais informações: . + +- Lista imagens Docker locais: + +`docker image ls` + +- Exclui imagens Docker locais não utilizadas: + +`docker image prune` + +- Exclui todas as imagens não utilizadas (não apenas aquelas sem uma etiqueta): + +`docker image prune --all` + +- Mostra o histórico de uma imagem Docker local: + +`docker image history {{imagem}}` diff --git a/pages.pt_BR/common/docker-inspect.md b/pages.pt_BR/common/docker-inspect.md new file mode 100644 index 0000000000..bbb986620e --- /dev/null +++ b/pages.pt_BR/common/docker-inspect.md @@ -0,0 +1,32 @@ +# docker inspect + +> Retorna informações de baixo nível sobre objetos do Docker. +> Mais informações: . + +- Exibir ajuda: + +`docker inspect` + +- Exibir informações sobre um contêiner, imagem ou volume usando um nome ou ID: + +`docker inspect {{contêiner|imagem|ID}}` + +- Exibir o endereço IP de um contêiner: + +`docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' {{contêiner}}` + +- Exibir o caminho para o arquivo de log do contêiner: + +`docker inspect --format='{{.LogPath}}' {{contêiner}}` + +- Exibir o nome da imagem do contêiner: + +`docker inspect --format='{{.Config.Image}}' {{contêiner}}` + +- Exibir as informações de configuração como JSON: + +`docker inspect --format='{{json .Config}}' {{contêiner}}` + +- Exibir todas as portas vinculadas: + +`docker inspect --format='{{range $p, $conf := .NetworkSettings.Ports}} {{$p}} -> {{(index $conf 0).HostPort}} {{end}}' {{contêiner}}` diff --git a/pages.pt_BR/common/docker-load.md b/pages.pt_BR/common/docker-load.md new file mode 100644 index 0000000000..8946f9702c --- /dev/null +++ b/pages.pt_BR/common/docker-load.md @@ -0,0 +1,16 @@ +# docker load + +> Carregar imagens do Docker a partir de arquivos ou `stdin`. +> Mais informações: . + +- Carregar uma imagem do Docker a partir do `stdin`: + +`docker load < {{caminho/para/arquivo_imagem.tar}}` + +- Carregar uma imagem do Docker a partir de um arquivo específico: + +`docker load --input {{caminho/para/arquivo_imagem.tar}}` + +- Carregar uma imagem do Docker a partir de um arquivo específico no modo silencioso: + +`docker load --quiet --input {{caminho/para/arquivo_imagem.tar}}` diff --git a/pages.pt_BR/common/docker-login.md b/pages.pt_BR/common/docker-login.md new file mode 100644 index 0000000000..2b75d83731 --- /dev/null +++ b/pages.pt_BR/common/docker-login.md @@ -0,0 +1,20 @@ +# docker login + +> Fazer login em um registro do Docker. +> Mais informações: . + +- Fazer login interativamente em um registro: + +`docker login` + +- Fazer login em um registro com um nome de usuário específico (será solicitada a senha): + +`docker login --username {{nome_de_usuário}}` + +- Fazer login em um registro com nome de usuário e senha: + +`docker login --username {{nome_de_usuário}} --password {{senha}} {{servidor}}` + +- Fazer login em um registro com a senha vinda do `stdin`: + +`echo "{{senha}}" | docker login --username {{nome_de_usuário}} --password-stdin` diff --git a/pages.pt_BR/common/docker-machine.md b/pages.pt_BR/common/docker-machine.md new file mode 100644 index 0000000000..4a4cb91fad --- /dev/null +++ b/pages.pt_BR/common/docker-machine.md @@ -0,0 +1,28 @@ +# docker-machine + +> Criar e gerenciar máquinas que executam o Docker. +> Mais informações: . + +- Listar as máquinas Docker em execução no momento: + +`docker-machine ls` + +- Criar uma nova máquina Docker com um nome específico: + +`docker-machine create {{nome}}` + +- Obter o status de uma máquina: + +`docker-machine status {{nome}}` + +- Iniciar uma máquina: + +`docker-machine start {{nome}}` + +- Parar uma máquina: + +`docker-machine stop {{nome}}` + +- Inspecionar informações sobre uma máquina: + +`docker-machine inspect {{nome}}` diff --git a/pages.pt_BR/common/docker-network.md b/pages.pt_BR/common/docker-network.md new file mode 100644 index 0000000000..0c72df23a0 --- /dev/null +++ b/pages.pt_BR/common/docker-network.md @@ -0,0 +1,32 @@ +# docker network + +> Criar e gerenciar redes do Docker. +> Mais informações: . + +- Listar todas as redes disponíveis e configuradas no daemon do Docker: + +`docker network ls` + +- Criar uma rede definida pelo usuário: + +`docker network create --driver {{nome_do_driver}} {{nome_da_rede}}` + +- Exibir informações detalhadas de uma lista separada por espaços de redes: + +`docker network inspect {{nome_da_rede}}` + +- Conectar um contêiner a uma rede usando um nome ou ID: + +`docker network connect {{nome_da_rede}} {{nome_do_contêiner|ID}}` + +- Desconectar um contêiner de uma rede: + +`docker network disconnect {{nome_da_rede}} {{nome_do_contêiner|ID}}` + +- Remover todas as redes não utilizadas (que não são referenciadas por nenhum contêiner): + +`docker network prune` + +- Remover uma lista separada por espaços de redes não utilizadas: + +`docker network rm {{nome_da_rede}}` diff --git a/pages.pt_BR/common/docker-pull.md b/pages.pt_BR/common/docker-pull.md new file mode 100644 index 0000000000..212c33ef1e --- /dev/null +++ b/pages.pt_BR/common/docker-pull.md @@ -0,0 +1,24 @@ +# docker pull + +> Baixar imagens do Docker de um registro. +> Mais informações: . + +- Baixar uma imagem específica do Docker: + +`docker pull {{imagem}}:{{tag}}` + +- Baixar uma imagem específica do Docker no modo silencioso: + +`docker pull --quiet {{imagem}}:{{tag}}` + +- Baixar todas as tags de uma imagem específica do Docker: + +`docker pull --all-tags {{imagem}}` + +- Baixar imagens do Docker para uma plataforma específica, por exemplo, linux/amd64: + +`docker pull --platform {{linux/amd64}} {{imagem}}:{{tag}}` + +- Exibir ajuda: + +`docker pull --help` diff --git a/pages.pt_BR/common/docker-save.md b/pages.pt_BR/common/docker-save.md new file mode 100644 index 0000000000..d071c7f18a --- /dev/null +++ b/pages.pt_BR/common/docker-save.md @@ -0,0 +1,20 @@ +# docker save + +> Exportar uma ou mais imagens do Docker para um arquivo de arquivamento. +> Mais informações: . + +- Salvar uma imagem redirecionando `stdout` para um arquivo tar: + +`docker save {{imagem}}:{{tag}} > {{caminho/para/arquivo.tar}}` + +- Salvar uma imagem em um arquivo tar: + +`docker save --output {{caminho/para/arquivo.tar}} {{imagem}}:{{tag}}` + +- Salvar todas as tags da imagem: + +`docker save --output {{caminho/para/arquivo.tar}} {{nome_da_imagem}}` + +- Selecionar tags específicas de uma imagem para salvar: + +`docker save --output {{caminho/para/arquivo.tar}} {{nome_da_imagem:tag1 nome_da_imagem:tag2 ...}}` diff --git a/pages.pt_BR/common/docker-secret.md b/pages.pt_BR/common/docker-secret.md new file mode 100644 index 0000000000..9d77519643 --- /dev/null +++ b/pages.pt_BR/common/docker-secret.md @@ -0,0 +1,24 @@ +# docker secret + +> Gerenciar segredos do Docker swarm. +> Mais informações: . + +- Criar um novo segredo a partir de `stdin`: + +`{{comando}} | docker secret create {{nome_do_segredo}} -` + +- Criar um novo segredo a partir de um arquivo: + +`docker secret create {{nome_do_segredo}} {{caminho/para/arquivo}}` + +- Listar todos os segredos: + +`docker secret ls` + +- Exibir informações detalhadas sobre um ou vários segredos em um formato amigável ao usuário: + +`docker secret inspect --pretty {{nome_do_segredo1 nome_do_segredo2 ...}}` + +- Remover um ou mais segredos: + +`docker secret rm {{nome_do_segredo1 nome_do_segredo2 ...}}` diff --git a/pages.pt_BR/common/docker-service.md b/pages.pt_BR/common/docker-service.md new file mode 100644 index 0000000000..7e330c1d6f --- /dev/null +++ b/pages.pt_BR/common/docker-service.md @@ -0,0 +1,28 @@ +# docker service + +> Gerenciar os serviços em um daemon do Docker. +> Mais informações: . + +- Listar os serviços em um daemon do Docker: + +`docker service ls` + +- Criar um novo serviço: + +`docker service create --name {{nome_do_serviço}} {{imagem}}:{{tag}}` + +- Exibir informações detalhadas de uma lista separada por espaços de serviços: + +`docker service inspect {{nome_do_serviço|ID}}` + +- Listar as tarefas de uma lista separada por espaços de serviços: + +`docker service ps {{nome_do_serviço|ID}}` + +- Escalar para um número específico de réplicas para uma lista separada por espaços de serviços: + +`docker service scale {{nome_do_serviço}}={{quantidade_de_réplicas}}` + +- Remover uma lista separada por espaços de serviços: + +`docker service rm {{nome_do_serviço|ID}}` diff --git a/pages.pt_BR/common/docker-slim.md b/pages.pt_BR/common/docker-slim.md new file mode 100644 index 0000000000..6b8ab394b9 --- /dev/null +++ b/pages.pt_BR/common/docker-slim.md @@ -0,0 +1,24 @@ +# docker-slim + +> Analisar e otimizar imagens Docker. +> Mais informações: . + +- Iniciar o DockerSlim no modo interativo: + +`docker-slim` + +- Analisar as camadas do Docker a partir de uma imagem específica: + +`docker-slim xray --target {{imagem:tag}}` + +- Verificar um Dockerfile: + +`docker-slim lint --target {{caminho/para/Dockerfile}}` + +- Analisar e gerar uma imagem Docker otimizada: + +`docker-slim build {{imagem:tag}}` + +- Exibir ajuda para um subcomando: + +`docker-slim {{subcomando}} --help` diff --git a/pages.pt_BR/common/docker-start.md b/pages.pt_BR/common/docker-start.md index 9bea5cafae..9fc6404fd5 100644 --- a/pages.pt_BR/common/docker-start.md +++ b/pages.pt_BR/common/docker-start.md @@ -11,10 +11,10 @@ `docker start {{container}}` -- Inicia um container, atachando ao terminal os sinais stdout e stderr e outros sinais: +- Inicia um container, atachando ao terminal os sinais `stdout` e `stderr` e outros sinais: `docker start --attach {{container}}` - Inicia um ou mais containers com ID separados por espaço: -`docker start {{container(s)}}` +`docker start {{container1 container2 ...}}` diff --git a/pages.pt_BR/common/docker-swarm.md b/pages.pt_BR/common/docker-swarm.md new file mode 100644 index 0000000000..d267cae84c --- /dev/null +++ b/pages.pt_BR/common/docker-swarm.md @@ -0,0 +1,32 @@ +# docker swarm + +> Uma ferramenta de orquestração de contêineres. +> Mais informações: . + +- Inicializar um cluster do Swarm: + +`docker swarm init` + +- Exibir o token para ingressar como gerenciador ou trabalhador: + +`docker swarm join-token {{worker|manager}}` + +- Ingressar um novo nó ao cluster: + +`docker swarm join --token {{token}} {{url_do_nó_gerenciador:2377}}` + +- Remover um trabalhador do Swarm (executado dentro do nó trabalhador): + +`docker swarm leave` + +- Exibir o certificado CA atual no formato PEM: + +`docker swarm ca` + +- Rotacionar o certificado CA atual e exibir o novo certificado: + +`docker swarm ca --rotate` + +- Alterar o período de validade dos certificados dos nós: + +`docker swarm update --cert-expiry {{horas}}h{{minutos}}m{{segundos}}s` diff --git a/pages.pt_BR/common/docker-system.md b/pages.pt_BR/common/docker-system.md new file mode 100644 index 0000000000..59f711ccaf --- /dev/null +++ b/pages.pt_BR/common/docker-system.md @@ -0,0 +1,36 @@ +# docker system + +> Gerenciar dados do Docker e exibir informações do sistema em todo o sistema. +> Mais informações: . + +- Mostrar ajuda: + +`docker system` + +- Mostrar o uso de disco do Docker: + +`docker system df` + +- Mostrar informações detalhadas sobre o uso de disco: + +`docker system df --verbose` + +- Remover dados não utilizados: + +`docker system prune` + +- Remover dados não utilizados criados há mais de um período específico no passado: + +`docker system prune --filter="until={{horas}}h{{minutos}}m"` + +- Exibir eventos em tempo real do daemon do Docker: + +`docker system events` + +- Exibir eventos em tempo real de contêineres transmitidos como JSON Lines válidos: + +`docker system events --filter 'type=container' --format '{{json .}}'` + +- Exibir informações em todo o sistema: + +`docker system info` diff --git a/pages.pt_BR/common/docker-tag.md b/pages.pt_BR/common/docker-tag.md new file mode 100644 index 0000000000..1d07c9a842 --- /dev/null +++ b/pages.pt_BR/common/docker-tag.md @@ -0,0 +1,16 @@ +# docker tag + +> Atribuir tags a imagens Docker existentes. +> Mais informações: . + +- Atribuir um nome e tag a um ID de imagem específico: + +`docker tag {{id}} {{nome}}:{{tag}}` + +- Atribuir uma tag a uma imagem específica: + +`docker tag {{imagem}}:{{tag_atual}} {{imagem}}:{{nova_tag}}` + +- Exibir ajuda: + +`docker tag` diff --git a/pages.pt_BR/common/docker-update.md b/pages.pt_BR/common/docker-update.md new file mode 100644 index 0000000000..26f7da8a06 --- /dev/null +++ b/pages.pt_BR/common/docker-update.md @@ -0,0 +1,29 @@ +# docker update + +> Atualizar a configuração de contêineres Docker. +> Este comando não é suportado para contêineres Windows. +> Mais informações: . + +- Atualizar a política de reinicialização a ser aplicada quando um contêiner específico for encerrado: + +`docker update --restart={{always|no|on-failure|unless-stopped}} {{nome_do_contêiner}}` + +- Atualizar a política para reiniciar até três vezes um contêiner específico quando ele for encerrado com status de saída diferente de zero: + +`docker update --restart=on-failure:3 {{nome_do_contêiner}}` + +- Atualizar o número de CPUs disponíveis para um contêiner específico: + +`docker update --cpus {{quantidade}} {{nome_do_contêiner}}` + +- Atualizar o limite de memória em [M]egabytes para um contêiner específico: + +`docker update --memory {{limite}}M {{nome_do_contêiner}}` + +- Atualizar o número máximo de IDs de processos permitidos dentro de um contêiner específico (use `-1` para ilimitado): + +`docker update --pids-limit {{quantidade}} {{nome_do_contêiner}}` + +- Atualizar a quantidade de memória em [M]egabytes que um contêiner específico pode trocar para o disco (use `-1` para ilimitado): + +`docker update --memory-swap {{limite}}M {{nome_do_contêiner}}` diff --git a/pages.pt_BR/common/docker-volume.md b/pages.pt_BR/common/docker-volume.md new file mode 100644 index 0000000000..f4f4aa206c --- /dev/null +++ b/pages.pt_BR/common/docker-volume.md @@ -0,0 +1,36 @@ +# docker volume + +> Gerenciar volumes do Docker. +> Mais informações: . + +- Criar um volume: + +`docker volume create {{nome_do_volume}}` + +- Criar um volume com um rótulo específico: + +`docker volume create --label {{rótulo}} {{nome_do_volume}}` + +- Criar um volume `tmpfs` com tamanho de 100 MiB e uid 1000: + +`docker volume create --opt {{type}}={{tmpfs}} --opt {{device}}={{tmpfs}} --opt {{o}}={{size=100m,uid=1000}} {{nome_do_volume}}` + +- Listar todos os volumes: + +`docker volume ls` + +- Remover um volume: + +`docker volume rm {{nome_do_volume}}` + +- Exibir informações sobre um volume: + +`docker volume inspect {{nome_do_volume}}` + +- Remover todos os volumes locais não utilizados: + +`docker volume prune` + +- Exibir ajuda para um subcomando: + +`docker volume {{subcomando}} --help` diff --git a/pages.pt_BR/common/du.md b/pages.pt_BR/common/du.md new file mode 100644 index 0000000000..1a2605dafa --- /dev/null +++ b/pages.pt_BR/common/du.md @@ -0,0 +1,28 @@ +# du + +> Uso de disco: estima e sumariza o uso de espaço em disco de arquivos e diretórios. +> Mais informações: . + +- Lista os tamanhos dos diretórios e qualquer subdiretório, em uma unidade de tamanho (B/KiB/MiB): + +`du -{{b|k|m}} {{caminho/para/diretorio}}` + +- Lista os tamanhos dos diretórios e subdiretórios, em tamanho legívell por humanos (isto é seleciona automaticamente a unidade de tamanho apropriada para o tamanho): + +`du -h {{caminho/para/diretorio}}` + +- Exibe o tamanho de um único diretório, em tamanho legível por humanos: + +`du -sh {{caminho/para/diretorio}}` + +- Lista em tamanho legível por humanos todos os arquivos e diretórios dentro de um diretório: + +`du -ah {{caminho/para/diretorio}}` + +- Lista em tamanho legível por humanos, até o nível N de profundidade um diretório e subdiretórios: + +`du -h --max-depth=N {{caminho/para/diretorio}}` + +- Lista em tamanho legível por humanos todos os arquivos `.jpg` dos subdiretórios do diretório atual, e exibe o total cumulativo no final: + +`du -ch {{*/*.jpg}}` diff --git a/pages.pt_BR/common/dua.md b/pages.pt_BR/common/dua.md new file mode 100644 index 0000000000..5796ab1d50 --- /dev/null +++ b/pages.pt_BR/common/dua.md @@ -0,0 +1,32 @@ +# dua + +> Dua (Analisador de Uso de Disco) é uma ferramenta para análise conveniente do uso de disco dado um diretório. +> Mais informações: . + +- Analisa um diretório específico: + +`dua {{caminho/para/diretorio}` + +- Exibe o tamanho aparente ao invés do uso do disco: + +`dua --apparent-size` + +- Contabiliza arquivos hard-linked cada vez que eles são encontrados: + +`dua --count-hard-links` + +- Agrega o espaço em disco consumido de um ou mais diretórios ou arquivos: + +`dua aggregate` + +- Inicia a interface de usuário: + +`dua interactive` + +- Seleciona o formato para contagem de bytes: + +`dua --format {{metric|binary|bytes|GB|GiB|MB|MiB}}` + +- Escolhe o número de threads a serem usadas: + +`dua --threads {{numero}}` diff --git a/pages.pt_BR/common/duc.md b/pages.pt_BR/common/duc.md new file mode 100644 index 0000000000..a1f49294ff --- /dev/null +++ b/pages.pt_BR/common/duc.md @@ -0,0 +1,28 @@ +# duc + +> Duc é uma coleção de ferramentas para indexar, inspecionar e visualizar uso do disco. O duc mantém uma base de dados dos tamanhos acumlados dos diretórios do sistema de arquivos, permitindo buscas nessa base, ou a criação de gráficos elegantes. +> Mais informações: . + +- Indexa o diretório /usr, escrevendo a base de dados para o local default em ~/.duc.db: + +`duc index {{/usr}}` + +- Lista todos os arquivos e diretórios dentro do /usr/local, mostrando tamanho relativo dos arquivos em um [g]raph (gráfico): + +`duc ls -Fg {{/usr/local}}` + +- Lista todos os arquivos e diretórios dentro do /usr/local em uma visão de árvore recursiva: + +`duc ls -Fg -R {{/usr/local}}` + +- Inicia uma interface gráfica para o usuário explorar o sistema de arquivos exibindo o gráfico sunburst: + +`duc gui {{/usr}}` + +- Executa a interface de console ncurses para explorar o sistema de arquivos: + +`duc ui {{/usr}}` + +- Exporta as informações da base de dados: + +`duc info` diff --git a/pages.pt_BR/common/dvc-add.md b/pages.pt_BR/common/dvc-add.md new file mode 100644 index 0000000000..d8f86d7944 --- /dev/null +++ b/pages.pt_BR/common/dvc-add.md @@ -0,0 +1,20 @@ +# dvc add + +> Adiciona um arquivo modificado para o índice. +> Mais informações: . + +- Adiciona um arquivo para o índice: + +`dvc add {{caminho/para/arquivo}}` + +- Adiciona um diretório para o índice: + +`dvc add {{caminho/para/diretorio}}` + +- Adiciona recursivamente todos os arquivos em um dado diretório: + +`dvc add --recursive {{caminho/para/diretorio}}` + +- Adiciona um arquivo com o nome `.dvc` customizado: + +`dvc add --file {{nome_customizado.dvc}} {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/common/dvc-checkout.md b/pages.pt_BR/common/dvc-checkout.md new file mode 100644 index 0000000000..a8653bdbeb --- /dev/null +++ b/pages.pt_BR/common/dvc-checkout.md @@ -0,0 +1,16 @@ +# dvc checkout + +> Registra a saída de arquivos e diretórios de dados vindos do cache. +> Mais informações: . + +- Registra a saída de todos os arquivos e diretórios de dados: + +`dvc checkout` + +- Registra a saída da última versão de um alvo específico: + +`dvc checkout {{alvo}}` + +- Registra a saída de versão específica de um alvo de um commit/tag/branch Git: + +`git checkout {{hash_do_commit|tag|branch}} {{alvo}} && dvc checkout {{alvo}}` diff --git a/pages.pt_BR/common/dvc.md b/pages.pt_BR/common/dvc.md new file mode 100644 index 0000000000..89fb66f13e --- /dev/null +++ b/pages.pt_BR/common/dvc.md @@ -0,0 +1,21 @@ +# dvc + +> Controle de Versão de Dados: como o `git` mas para dados. +> Alguns subcomandos tal como `dvc commit` tem suas próprias documentações de uso. +> Mais informações: . + +- Checa a versão do DVC: + +`dvc --version` + +- Exibe a ajuda geral: + +`dvc --help` + +- Exibe ajuda para um subcomando específico: + +`dvc {{subcomando}} --help` + +- Executa um subcomando do DVC: + +`dvc {{subcomando}}` diff --git a/pages.pt_BR/common/echo.md b/pages.pt_BR/common/echo.md index cfbdccdd97..a9f46222fa 100644 --- a/pages.pt_BR/common/echo.md +++ b/pages.pt_BR/common/echo.md @@ -3,22 +3,26 @@ > Imprime os argumentos passados. > Mais informações: . -- Imrpime uma mensagem de texto. Nota: aspas são opcionais: +- Imprime uma mensagem de texto. Nota: aspas são opcionais: -`echo "{{Uma mensagem}}"` +`echo "{{Olá Mundo}}"` -- Imprime uma mensagem com as variáveis de ambiente: +- Imprime uma mensagem com variáveis de ambiente: -`echo "{{Meu path é $PATH}}"` +`echo "{{Meu caminho é $PATH}}"` -- Imprime uma mensagem sem adicionar uma nova linha em seguida: +- Imprime uma mensagem sem adicionar uma nova linha no final: -`echo -n "{{Uma mensagem}}"` +`echo -n "{{Olá Mundo}}"` -- Adiciona uma messagem no arquivo: +- Adiciona uma mensagem no arquivo: -`echo "{{Uma mensagem}}" >> {{arquivo.txt}}` +`echo "{{Olá Mundo}}" >> {{arquivo.txt}}` -- Habilita interpretação dos códigos de escape após barra invetida (caracteres especiais): +- Habilita interpretação dos códigos de escape após barra invertida (caracteres especiais): `echo -e "{{Coluna 1\tColuna 2}}"` + +- Imprime o status de saída do último comando executado (Nota: no prompt de comando do Windows e no PowerShell, os comandos equivalentes são `echo %errorlevel%` e `$lastexitcode` respectivamente): + +`echo $?` diff --git a/pages.pt_BR/common/esbuild.md b/pages.pt_BR/common/esbuild.md index bd0d7614ac..67f779ef34 100644 --- a/pages.pt_BR/common/esbuild.md +++ b/pages.pt_BR/common/esbuild.md @@ -3,11 +3,11 @@ > Empacotador e minificador JavaScript construído para velocidade. > Mais informações: . -- Empacota uma aplicação JavaScript e imprime para stdout: +- Empacota uma aplicação JavaScript e imprime para `stdout`: `esbuild --bundle {{caminho/para/arquivo.js}}` -- Empacota uma aplicação JSX de stdin: +- Empacota uma aplicação JSX de `stdin`: `esbuild --bundle --outfile={{caminho/para/saída.js}} < {{caminho/para/arquivo.jsx}}` diff --git a/pages.pt_BR/common/fastboot.md b/pages.pt_BR/common/fastboot.md index 4688541aeb..0ceee2977d 100644 --- a/pages.pt_BR/common/fastboot.md +++ b/pages.pt_BR/common/fastboot.md @@ -1,7 +1,7 @@ # fastboot > Se comunica com dispositivos Android conectados quando iniciados no modo _fastboot_ (o único lugar em que `adb` não funciona). -> Mais informações: . +> Mais informações: . - Desbloqueia o bootloader: diff --git a/pages.pt_BR/common/fdp.md b/pages.pt_BR/common/fdp.md index 71ec7a7e17..dc2a76141c 100644 --- a/pages.pt_BR/common/fdp.md +++ b/pages.pt_BR/common/fdp.md @@ -16,7 +16,7 @@ `fdp -T {{ps|pdf|svg|fig|png|gif|jpg|json|dot}} -O {{caminho/para/entrada.gv}}` -- Renderiza uma imagem `gif` usando stdin e stdout: +- Renderiza uma imagem `gif` usando `stdin` e `stdout`: `echo "{{digraph {isso -> aquilo} }}" | fdp -T gif > {{caminho/para/imagem.gif}}` diff --git a/pages.pt_BR/common/fossil-ci.md b/pages.pt_BR/common/fossil-ci.md new file mode 100644 index 0000000000..851ae74f47 --- /dev/null +++ b/pages.pt_BR/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> Este comando é um pseudônimo de `fossil-commit`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr fossil-commit` diff --git a/pages.pt_BR/common/fossil-delete.md b/pages.pt_BR/common/fossil-delete.md new file mode 100644 index 0000000000..a2d8cf6667 --- /dev/null +++ b/pages.pt_BR/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> Este comando é um pseudônimo de `fossil rm`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr fossil rm` diff --git a/pages.pt_BR/common/fossil-forget.md b/pages.pt_BR/common/fossil-forget.md new file mode 100644 index 0000000000..2e9c76a0d4 --- /dev/null +++ b/pages.pt_BR/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> Este comando é um pseudônimo de `fossil rm`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr fossil rm` diff --git a/pages.pt_BR/common/fossil-new.md b/pages.pt_BR/common/fossil-new.md new file mode 100644 index 0000000000..cf1951bdee --- /dev/null +++ b/pages.pt_BR/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> Este comando é um pseudônimo de `fossil-init`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr fossil-init` diff --git a/pages.pt_BR/common/g++.md b/pages.pt_BR/common/g++.md index 677ed63697..1918aa4dbd 100644 --- a/pages.pt_BR/common/g++.md +++ b/pages.pt_BR/common/g++.md @@ -1,21 +1,29 @@ # gplusplus -> Compilador de arquivos de código fonte C++. +> Compila arquivos de código fonte C++. > Parte do GCC (GNU Compiler Collection). > Mais informações: . - Compilar um arquivo de código fonte para um binário executável: -`g++ {{arquivo_fonte.cpp}} -o {{arquivo_executável}}` +`g++ {{caminho/para/fonte.cpp}} -o {{caminho/para/executável_de_saída}}` -- Compilar mostrando todos os erros e avisos: +- Exibe avisos comuns: -`g++ {{arquivo_fonte.cpp}} -Wall -o {{arquivo_executável}}` +`g++ {{caminho/para/fonte.cpp}} -Wall -o {{caminho/para/executável_de_saída}}` -- Compilar utilizando um padrão específico da linguagem (C++98/C++11/C++14/C++17): +- Escolha um padrão de linguagem para o qual compilar (C++98/C++11/C++14/C++17): -`g++ {{arquivo_fonte.cpp}} -std={{standard_linguagem}} -o {{arquivo_executável}}` +`g++ {{caminho/para/fonte.cpp}} -std={{c++98|c++11|c++14|c++17}} -o {{caminho/para/executável_de_saída}}` -- Compilar incluindo bibliotecas localizadas em um local diferente do arquivo de código fonte: +- Inclui bibliotecas localizadas em um caminho diferente do arquivo de código fonte: -`g++ {{arquivo_fonte.cpp}} -o {{arquivo_executável}} -I{{caminho/para/header}} -L{{caminho/para/biblioteca}} -l{{nome_biblioteca}}` +`g++ {{caminho/para/fonte.cpp}} -o {{caminho/para/executável_de_saída}} -I{{caminho/para/cabeçalho}} -L{{caminho/para/biblioteca}} -l{{nome_da_biblioteca}}` + +- Compila e vincula múltiplos arquivos de código fonte em um binário executável: + +`g++ -c {{caminho/para/fonte_1.cpp caminho/para/fonte_2.cpp ...}} && g++ -o {{caminho/para/executável_de_saída}} {{caminho/para/fonte_1.o caminho/para/fonte_2.o ...}}` + +- Exibe versão: + +`g++ --version` diff --git a/pages.pt_BR/common/gh-cs.md b/pages.pt_BR/common/gh-cs.md new file mode 100644 index 0000000000..6d97ad68cb --- /dev/null +++ b/pages.pt_BR/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> Este comando é um pseudônimo de `gh-codespace`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr gh-codespace` diff --git a/pages.pt_BR/common/git-alias.md b/pages.pt_BR/common/git-alias.md new file mode 100644 index 0000000000..e89ebd6ffe --- /dev/null +++ b/pages.pt_BR/common/git-alias.md @@ -0,0 +1,17 @@ +# git alias + +> Cria comandos curtos para comandos Git. +> Parte do `git-extras`. +> Mais informações: . + +- Lista todos os comandos curtos: + +`git alias` + +- Cria um novo comando curto com o `nome`: + +`git alias "{{nome}}" "{{comando}}"` + +- Procura por um comando curto existente: + +`git alias ^{{nome}}` diff --git a/pages.pt_BR/common/git-branch.md b/pages.pt_BR/common/git-branch.md new file mode 100644 index 0000000000..26fffdb572 --- /dev/null +++ b/pages.pt_BR/common/git-branch.md @@ -0,0 +1,36 @@ +# git branch + +> Comando principal do Git para trabalhar com branches. +> Mais informações: . + +- Lista todas as branches (locais e remotas; a branch atual é destacada por `*`): + +`git branch --all` + +- Lista quais branches incluem um commit específico do Git em seu histórico: + +`git branch --all --contains {{hash_do_commit}}` + +- Mostra o nome da branch atual: + +`git branch --show-current` + +- Cria uma nova branch baseada no commit atual: + +`git branch {{nome_da_branch}}` + +- Crua uma nova branch baseada em um commit específico: + +`git branch {{nome_da_branch}} {{hash_do_commit}}` + +- Renomeia uma branch (não precisa fazer checkout para isso): + +`git branch -m {{antigo_nome_da_branch}} {{novo_nome_da_branch}}` + +- Exclui a branch local (não precisa fazer checkout para isso): + +`git branch -d {{nome_da_branch}}` + +- Exclui uma branch remota: + +`git push {{nome_remoto}} --delete {{nome_da_branch_remota}}` diff --git a/pages.pt_BR/common/git-checkout.md b/pages.pt_BR/common/git-checkout.md new file mode 100644 index 0000000000..1ed58b5a03 --- /dev/null +++ b/pages.pt_BR/common/git-checkout.md @@ -0,0 +1,36 @@ +# git checkout + +> Faz checkout de uma branch ou caminhos para uma árvore de trabalho. +> Mais informações: . + +- Cria e muda para uma nova branch: + +`git checkout -b {{nome_da_branch}}` + +- Cria e muda para uma nova branch com base em uma referência específica (branch, remoto/branch, etiqueta são exemplos de referências válidas): + +`git checkout -b {{nome_da_branch}} {{referência}}` + +- Muda para uma branch local existente: + +`git checkout {{nome_da_branch}}` + +- Muda para uma branch previamente verificada: + +`git checkout -` + +- Muda para uma branch remota existente: + +`git checkout --track {{nome_remoto}}/{{nome_da_branch}}` + +- Descarta todas as alterações não preparadas no diretório atual (consulte `git reset` para mais comandos do tipo desfazer): + +`git checkout .` + +- Descarta alterações não preparadas em um determinado arquivo: + +`git checkout {{caminho/para/arquivo}}` + +- Substitui um arquivo no diretório atual com a versão com commit em uma determinada branch: + +`git checkout {{nome_da_branch}} -- {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/common/git-clone.md b/pages.pt_BR/common/git-clone.md new file mode 100644 index 0000000000..86a7b5fe97 --- /dev/null +++ b/pages.pt_BR/common/git-clone.md @@ -0,0 +1,36 @@ +# git clone + +> Clona um repositório existente. +> Mais informações: . + +- Clona um repositório existente em um novo diretório (o diretório padrão é o nome do repositório): + +`git clone {{local_do_repositório_remoto}} {{caminho/para/diretório}}` + +- Clona um repositório existente e seus submódulos: + +`git clone --recursive {{local_do_repositório_remoto}}` + +- Clona somente o diretório `.git` de um repositório existente: + +`git clone --no-checkout {{local_do_repositório_remoto}}` + +- Clona um repositório local: + +`git clone --local {{caminho/para/repositório/local}}` + +- Clona de forma silenciosa: + +`git clone --quiet {{local_do_repositório_remoto}}` + +- Clona um repositório existente buscando somente os 10 commits mais recentes na branch padrão (útil para salvar tempo): + +`git clone --depth {{10}} {{local_do_repositório_remoto}}` + +- Clona um repositório existente buscando somente uma branch específica: + +`git clone --branch {{nome}} --single-branch {{local_do_repositório_remoto}}` + +- Clona um repositório existente usando um comando SSH específico: + +`git clone --config core.sshCommand="{{ssh -i caminho/para/chave_ssh_privada}}" {{local_do_repositório_remoto}}` diff --git a/pages.pt_BR/common/git-commit.md b/pages.pt_BR/common/git-commit.md new file mode 100644 index 0000000000..cdd3180e46 --- /dev/null +++ b/pages.pt_BR/common/git-commit.md @@ -0,0 +1,32 @@ +# git commit + +> Faz um commit dos arquivos no repositório. +> Mais informações: . + +- Faz um commit com os arquivos preparados no repositório com uma mensagem: + +`git commit --message "{{mensagem}}"` + +- Faz um commit com os arquivos preparados com uma mensagem lida de um arquivo: + +`git commit --file {{caminho/para/arquivo_de_mensagem_do_commit}}` + +- Prepara automaticamente todos os arquivos modificados e excluídos e faz o commit com uma mensagem: + +`git commit --all --message "{{mensagem}}"` + +- Faz um commit com os arquivos preparados e assina-os com a chave GPG especificada (ou a definida no arquivo de configuração se nenhum argumento for especificado): + +`git commit --gpg-sign {{id_da_chave}} --message "{{mensagem}}"` + +- Atualiza o último commit adicionando as alterações atualmente preparadas, alterando o hash do commit: + +`git commit --amend` + +- Faz um commit apenas de arquivos específicos (já preparados): + +`git commit {{caminho/para/arquivo1}} {{caminho/para/arquivo2}}` + +- Cria um commit, mesmo se não haja arquivos preparados: + +`git commit --message "{{mensagem}}" --allow-empty` diff --git a/pages.pt_BR/common/git-config.md b/pages.pt_BR/common/git-config.md new file mode 100644 index 0000000000..824f56eda0 --- /dev/null +++ b/pages.pt_BR/common/git-config.md @@ -0,0 +1,37 @@ +# git config + +> Gerencia configurações customizadadas para repositórios Git. +> Estas configurações podem ser locais (para o repositório corrente) ou globais (para o usuário atual). +> Mais informações: . + +- Lista somente configurações locais (armazenadas no `.git/config` do repositório corrente): + +`git config --list --local` + +- Lista somente configurações globais (armazenadas no `~/.gitconfig` por padrão ou no `$XDG_CONFIG_HOME/git/config` se tal arquivo existe): + +`git config --list --global` + +- Lista somente configurações do sistema (armazenadas no `/etc/gitconfig`), e exibe o local do arquivo: + +`git config --list --system --show-origin` + +- Obtém o valor de uma dada variável de configuração: + +`git config alias.unstage` + +- Armazena o valor global de uma dada variável de configuração: + +`git config --global alias.unstage "reset HEAD --"` + +- Reverte o valor global de uma dada variável de configuração para seu valor padrão: + +`git config --global --unset alias.unstage` + +- Edita a configuração Git do repositório corrente usando o editor padrão: + +`git config --edit` + +- Edita a configuração global do Git usando o editor padrão: + +`git config --global --edit` diff --git a/pages.pt_BR/common/git-diff.md b/pages.pt_BR/common/git-diff.md new file mode 100644 index 0000000000..a0ec9efea7 --- /dev/null +++ b/pages.pt_BR/common/git-diff.md @@ -0,0 +1,36 @@ +# git diff + +> Mostra alterações nos arquivos rastreados. +> Mais informações: . + +- Mostra as alterações não preparadas e sem commit: + +`git diff` + +- Mostra todas as alterações sem commit (incluindo as preparadas): + +`git diff HEAD` + +- Mostra apenas as alterações preparadas (adicionadas, mas ainda sem commit): + +`git diff --staged` + +- Mostra as alterações de todos os commits desde uma determinada data/hora (uma expressão de data, por exemplo, "1 week 2 days" ou uma data ISO): + +`git diff 'HEAD@{3 months|weeks|days|hours|seconds ago}'` + +- Mostra apenas os nomes dos arquivos alterados desde um determinado commit: + +`git diff --name-only {{commit}}` + +- Emite um resumo das criações de arquivos, renomeações e alterações de modo desde um determinado commit: + +`git diff --summary {{commit}}` + +- Compara um único arquivo entre duas branches ou commits: + +`git diff {{branch_1}}..{{branch_2}} [--] {{caminho/para/arquivo}}` + +- Compara diferentes arquivos da branch atual com outra branch: + +`git diff {{branch}}:{{caminho/para/arquivo2}} {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/common/git-init.md b/pages.pt_BR/common/git-init.md new file mode 100644 index 0000000000..1cce19d1eb --- /dev/null +++ b/pages.pt_BR/common/git-init.md @@ -0,0 +1,20 @@ +# git init + +> Inicializa um novo repositório Git local. +> Mais informações: . + +- Inicializa um novo repositório local: + +`git init` + +- Inicializa um repositório com o nome especificado para a branch inicial: + +`git init --initial-branch={{nome_da_branch}}` + +- Inicializa um repositório usando SHA256 para os hashes de objeto (requer Git versão 2.29+): + +`git init --object-format={{sha256}}` + +- Inicializa um repositório barebones, adequado para usar como um remoto via ssh: + +`git init --bare` diff --git a/pages.pt_BR/common/git-log.md b/pages.pt_BR/common/git-log.md new file mode 100644 index 0000000000..34f877b675 --- /dev/null +++ b/pages.pt_BR/common/git-log.md @@ -0,0 +1,36 @@ +# git log + +> Mostra um histórico de commits. +> Mais informações: . + +- Mostra a sequência de commits a partir do atual, em ordem cronológica reverse do repositório Git no diretório de trabalho atual: + +`git log` + +- Mostra o histórico de um arquivo ou diretório determinado, incluindo diferenças: + +`git log -p {{caminho/para/arquivo_ou_diretório}}` + +- Mostra uma visão geral do(s) arquivo(s) alterado(s) em cada commit: + +`git log --stat` + +- Mostra um grafo dos commits no branch atual usando apenas a primera linha de cada mensagem de commit: + +`git log --oneline --graph` + +- Mostra um grafo de todos os commits, etiquetas e branches em todo o repositório: + +`git log --oneline --decorate --all --graph` + +- Mostra apenas os commits cujas mensagem incluem uma determinada cadeia de caracteres (sem distinção entre maiúsculas e minúsculas): + +`git log -i --grep {{cadeia_de_caracteres_para_pesquisa}}` + +- Mostra os últimos N commits de um determinado autor: + +`git log -n {{número}} --author={{autor}}` + +- Mostra os commits entre duas datas(aaaa-mm-dd): + +`git log --before="{{2017-01-29}}" --after="{{2017-01-17}}"` diff --git a/pages.pt_BR/common/git-pull.md b/pages.pt_BR/common/git-pull.md new file mode 100644 index 0000000000..eb3da4623b --- /dev/null +++ b/pages.pt_BR/common/git-pull.md @@ -0,0 +1,16 @@ +# git pull + +> Obtém branch de um repositório remoto e mescla-a ao repositório local. +> Mais informações: . + +- Baixa as alterações do repositório remoto padrão e mescla-as: + +`git pull` + +- Baixa as alterações do repositório remoto padrão e usa o avanço rápido: + +`git pull --rebase` + +- Baixa as alterações de um determinado repositório remoto e branch, então, mescla-as no HEAD: + +`git pull {{nome_remoto}} {{branch}}` diff --git a/pages.pt_BR/common/git-push.md b/pages.pt_BR/common/git-push.md new file mode 100644 index 0000000000..1b4766941a --- /dev/null +++ b/pages.pt_BR/common/git-push.md @@ -0,0 +1,36 @@ +# git push + +> Envia commits para um repositório remoto. +> Mais informações: . + +- Envia alterações locais na branch atual para sua contraparte remota padrão: + +`git push` + +- Envia alterações de uma branch local específica para sua contraparte remota: + +`git push {{nome_remoto}} {{branch_local}}` + +- Envia alterações de uma branch local específica para sua contraparte remota, e define a branch remota como o destino push/pull padrão da branch local: + +`git push -u {{nome_remoto}} {{branch_local}}` + +- Envia alterações de uma branch local específica para uma branch remota específica: + +`git push {{nome_remoto}} {{branch_local}}:{{branch_remota}}` + +- Envia alterações em todas as branches locais para suas contrapartes em um determinado repositório remoto: + +`git push --all {{nome_remoto}}` + +- Exclui uma branch em um repositório remoto: + +`git push {{nome_remoto}} --delete {{branch_remota}}` + +- Remove branches remotas que não tenham uma contraparte local: + +`git push --prune {{nome_remoto}}` + +- Publica etiquetas que ainda não estão no repositório remoto: + +`git push --tags` diff --git a/pages.pt_BR/common/git-rebase.md b/pages.pt_BR/common/git-rebase.md new file mode 100644 index 0000000000..b2101d1da4 --- /dev/null +++ b/pages.pt_BR/common/git-rebase.md @@ -0,0 +1,37 @@ +# git rebase + +> Reaplica os commits de uma branch sobre outra branch. +> Comumente usado para "mover" uma branch inteira para outra base, criando cópias dos commits na nova localização. +> Mais informações: . + +- Faz um rebase na branch atual sobre outra branch especificada: + +`git rebase {{nova_branch_base}}` + +- Inicia um rebase interativo, que permite os commits serem reordenados, omitidos, combinados ou modificados: + +`git rebase -i {{branch_base_alvo_ou_hash_do_commit}}` + +- Continua um rebase que foi interrompido por uma falha de mesclagem, após a edição de arquivos conflitantes: + +`git rebase --continue` + +- Continua um rebase que foi pausado devido a conflitos de mesclagem, ignorando o commit conflitante: + +`git rebase --skip` + +- Aborta um rebase em andamento (por exemplo, se ele foi interrompido por um conflito de mesclagem): + +`git rebase --abort` + +- Move parte da branch atual para uma nova base, fornecendo a base antiga para começar: + +`git rebase --onto {{base_nova}} {{base_antiga}}` + +- Reaplica os últimos 5 commits no local, parando para permitir que eles sejam reordenados, omitidos, combinados ou modificados: + +`git rebase -i {{HEAD~5}}` + +- Resolve automaticamente quaisquer conflitos favorecendo a versão da branch de trabalho (a palavra-chave `theirs` tem significado invertido nesse caso): + +`git rebase -X theirs {{nome_da_branch}}` diff --git a/pages.pt_BR/common/git-reset.md b/pages.pt_BR/common/git-reset.md new file mode 100644 index 0000000000..3c4c589406 --- /dev/null +++ b/pages.pt_BR/common/git-reset.md @@ -0,0 +1,33 @@ +# git reset + +> Desfaz os commits ou as alterações nào preparadas, redefinindo o Git HEAD atual para o estado especificado. +> Se um caminho é passado, funcionará como "não preparado"; se um hash de commit ou uma branch é passado, funcionará como "sem commit". +> Mais informações: . + +- Remove tudo da preparação: + +`git reset` + +- Remove arquivo(s) específico(s) da preparação: + +`git reset {{caminho/para/arquivo1 caminho/para/arquivo2 ...}}` + +- Interativamente remove partes de um arquivo da preparação: + +`git reset --patch {{caminho/para/arquivo}}` + +- Desfaz o último commit, mantendo suas alterações (e quaisquer outras alteração não confirmadas) no sistema de arquivos: + +`git reset HEAD~` + +- Desfaz os últimos dois commits, adicionando suas alterações na área de preparação, isso é, preparando-os para o commit: + +`git reset --soft HEAD~2` + +- Descarta quaisquer alterações sem commit, preparadas ou não (para apenas alterações não preparadas, use o `git checkout`): + +`git reset --hard` + +- Redefine o repositório para um determinado commit, descartando as alterações com commit, preparadas e sem commit desde então: + +`git reset --hard {{commit}}` diff --git a/pages.pt_BR/common/git-status.md b/pages.pt_BR/common/git-status.md new file mode 100644 index 0000000000..78dec61940 --- /dev/null +++ b/pages.pt_BR/common/git-status.md @@ -0,0 +1,21 @@ +# git status + +> Mostra as alterações nos arquivos em um repositório Git. +> Lista os arquivos alterados, adicionados e excluídos em comparação com o atual commit verificado. +> Mais informações: . + +- Mostra arquivos alterados que ainda não foram adicionados para commit: + +`git status` + +- Fornece a saída em formato curto: + +`git status -s` + +- Não mostra arquivos não rastreados na saída: + +`git status --untracked-files=no` + +- Mostra a saída em formato curto junto com as informações da branch: + +`git status -sb` diff --git a/pages.pt_BR/common/gnmic-sub.md b/pages.pt_BR/common/gnmic-sub.md new file mode 100644 index 0000000000..e3ef34a443 --- /dev/null +++ b/pages.pt_BR/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> Este comando é um pseudônimo de `gnmic subscribe`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr gnmic subscribe` diff --git a/pages.pt_BR/common/google-chrome.md b/pages.pt_BR/common/google-chrome.md new file mode 100644 index 0000000000..f11e68ec2c --- /dev/null +++ b/pages.pt_BR/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> Este comando é um pseudônimo de `chromium`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr chromium` diff --git a/pages.pt_BR/common/gpg.md b/pages.pt_BR/common/gpg.md index 9bfb66e0b6..6d94667168 100644 --- a/pages.pt_BR/common/gpg.md +++ b/pages.pt_BR/common/gpg.md @@ -1,21 +1,26 @@ # gpg > GNU Privacy Guard. +> Veja `gpg2` para o GNU Privacy Guard 2. A maioria dos sistemas operacionais criam link simbólico entre `gpg` e `gpg2`. > Mais informações: . -- Assina doc.txt, sem criptografá-lo (cria um arquivo de saída doc.txt.asc): +- Cria uma chave GPG pública e privada interativamente: + +`gpg --full-generate-key` + +- Assina doc.txt sem criptografia (cria um arquivo de saída `doc.txt.asc`): `gpg --clearsign {{doc.txt}}` -- Criptografa doc.txt para alice@example.com (cria um arquivo de saída `doc.txt.gpg`): +- Criptografa e assina `doc.txt` para alice@example.com e bob@example.com (cria um arquivo de saída `doc.txt.gpg`): -`gpg --encrypt --recipient {{alice@example.com}} {{doc.txt}}` +`gpg --encrypt --sign --recipient {{alice@example.com}} --recipient {{bob@example.com}} {{doc.txt}}` -- Criptografa doc.txt apenas com uma senha simétrica (cria um arquivo de sadída `doc.txt.gpg`): +- Criptografa `doc.txt` apenas com uma senha simétrica (cria um arquivo de saída `doc.txt.gpg`): `gpg --symmetric {{doc.txt}}` -- Descriptografa doc.txt.gpg (envia saída para stdout): +- Descriptografa `doc.txt.gpg` (envia saída para `stdout`): `gpg --decrypt {{doc.txt.gpg}}` @@ -23,10 +28,10 @@ `gpg --import {{public.gpg}}` -- Exporta a chave pública da alice@example.com (envia saída para stdout): +- Exporta a chave pública da alice@example.com (envia saída para `stdout`): `gpg --export --armor {{alice@example.com}}` -- Exporta chave privada da alice@example.com (envia saída para stdout): +- Exporta chave privada da alice@example.com (envia saída para `stdout`): `gpg --export-secret-keys --armor {{alice@example.com}}` diff --git a/pages.pt_BR/common/grep.md b/pages.pt_BR/common/grep.md index 0611eee997..e7cc90f15e 100644 --- a/pages.pt_BR/common/grep.md +++ b/pages.pt_BR/common/grep.md @@ -31,6 +31,6 @@ `grep --only-matching "{{padrão_pesquisado}}" {{caminho/para/arquivo}}` -- Pesquisa stdin para linhas que não correspondem a um padrão: +- Pesquisa `stdin` para linhas que não correspondem a um padrão: `cat {{caminho/para/arquivo}} | grep --invert-match "{{padrão_pesquisado}}"` diff --git a/pages.pt_BR/common/gzip.md b/pages.pt_BR/common/gzip.md index dd6a698a13..661a94e6fb 100644 --- a/pages.pt_BR/common/gzip.md +++ b/pages.pt_BR/common/gzip.md @@ -1,20 +1,28 @@ # gzip -> Ferramenta de compactação de arquivos com compressão gzip. +> Compacta/descompacta arquivos com compressão gzip (LZ77). > Mais informações: . -- Alterar compressão de um arquivo compactado com compressão gzip: +- Compacta um arquivo, substituindo-o por uma versão compactada gzip: `gzip {{arquivo.ext}}` -- Descompactar arquivo gzip definindo arquivo final: +- Descompacta um arquivo, substituindo-o pela versão não compactada original: -`gzip -c -d {{arquivo.ext}}.gz > {{arquivo_descompactado.ext}}` +`gzip -d {{arquivo.ext}}.gz` -- Compactar arquivo definindo arquivo final: +- Compacta um arquivo, mantendo o arquivo original: + +`gzip --keep {{arquivo.ext}}` + +- Compacta um arquivo definindo o nome do arquivo de saída: `gzip -c {{arquivo.ext}} > {{arquivo_compactado.ext.gz}}` -- Compactando arquivos em gzip definindo o nível de compressão [9]: +- Descompacta um arquivo gzip definindo o nome do arquivo de saída: -`gzip -{{9}} -c {{arquivo.ext}} > {{arquivo_compactado.ext.gz}}` +`gzip -c -d {{arquivo.ext}}.gz > {{arquivo_descompactado.ext}}` + +- Especifica o nível de compactação. 1=mais rápido (pior), 9=mais lendo 9melhor, o nível padrão é 6: + +`gzip -9 -c {{arquivo.ext}} > {{arquivo_compactado.ext.gz}}` diff --git a/pages.pt_BR/common/hexdump.md b/pages.pt_BR/common/hexdump.md new file mode 100644 index 0000000000..1a04629812 --- /dev/null +++ b/pages.pt_BR/common/hexdump.md @@ -0,0 +1,20 @@ +# hexdump + +> Imprime dados no formato ASCII, decimal, hexadecimal ou octal. +> Mais informações: . + +- Imprimir a representação hexadecimal de um arquivo, substituindo linhas duplicadas por '*': + +`hexdump {{caminho/para/arquivo}}` + +- Imprimir a representação hexadecimal e ASCII de um arquivo, em duas colunas: + +`hexdump -C {{caminho/para/arquivo}}` + +- Imprimir a representação hexadecimal de um arquivo, porém apresentando apenas seus n primeiros bytes: + +`hexdump -C -n{{numero_de_bytes}} {{caminho/para/arquivo}}` + +- Imprimir a representação hexadecimal completa de um arquivo (sem omitir linhas duplicadas): + +`hexdump --no-squeezing {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/common/htop.md b/pages.pt_BR/common/htop.md index 3d9349e7a1..8e0ca169e0 100644 --- a/pages.pt_BR/common/htop.md +++ b/pages.pt_BR/common/htop.md @@ -1,19 +1,19 @@ # htop -> Visualizar informação dinâmica em tempo real acerca de processos em execução. Uma versão melhorada do comando `top`. +> Exibe informação dinâmica em tempo real acerca de processos em execução. Uma versão melhorada do comando `top`. > Mais informações: . -- Inicializa htop: +- Inicializa `htop`: `htop` -- Inicializa htop mostrando somente processos pertencentes a um usuário: +- Inicializa `htop` mostrando somente processos pertencentes a um usuário: `htop --user {{nome_usuário}}` -- Ordena processos por um `item_de_ordenacao` (utilize `htop --sort help` para ver as opçōes disponíveis): +- Ordena processos por um `item_de_ordenação` (utilize `htop --sort help` para ver as opções disponíveis): -`htop --sort {{item_de_ordenacao}}` +`htop --sort {{item_de_ordenação}}` - Vê comandos interativos enquanto roda `htop`: diff --git a/pages.pt_BR/common/hx.md b/pages.pt_BR/common/hx.md new file mode 100644 index 0000000000..39c1ce0147 --- /dev/null +++ b/pages.pt_BR/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> Este comando é um pseudônimo de `helix`. + +- Ver documentação sobre o comando original: + +`tldr helix` diff --git a/pages.pt_BR/osx/imgcat.md b/pages.pt_BR/common/imgcat.md similarity index 100% rename from pages.pt_BR/osx/imgcat.md rename to pages.pt_BR/common/imgcat.md diff --git a/pages.pt_BR/common/java.md b/pages.pt_BR/common/java.md index d2e6520c81..b4e48fd8e5 100644 --- a/pages.pt_BR/common/java.md +++ b/pages.pt_BR/common/java.md @@ -1,21 +1,25 @@ # java -> Inicializador de Programas Java. -> Mais informações: . +> Inicializador de programas Java. +> Mais informações: . - Executa um arquivo Java `.class` que contém um método main, usando o nome da classe: `java {{nome_da_classe}}` +- Executa um programa Java e usa classes adicionais de terceiros ou definidas pelo usuário: + +`java -classpath {{caminho/para/classes1}}:{{caminho/para/classes2}}:. {{nome_da_classe}}` + - Executa um programa `.jar`: -`java -jar {{arquivo.jar}}` +`java -jar {{nome_do_arquivo.jar}}` -- Executa um programa `.jar`, com o debugger tentando conectar-se na porta 5005: +- Executa um programa `.jar` com o debugger aguardando conexão na porta 5005: -`java -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005 -jar {{arquivo.jar}}` +`java -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005 -jar {{nome_do_arquivo.jar}}` -- Exiba a versão do JDK, JRE e Hotspot: +- Exiba a versão do JDK, JRE e HotSpot: `java -version` diff --git a/pages.pt_BR/common/javac.md b/pages.pt_BR/common/javac.md index d0caa11363..7b3d65479e 100644 --- a/pages.pt_BR/common/javac.md +++ b/pages.pt_BR/common/javac.md @@ -1,7 +1,7 @@ # javac > O compilador de aplicações Java. -> Mais informações: . +> Mais informações: . - Compile um arquivo `.java`: diff --git a/pages.pt_BR/common/kafkacat.md b/pages.pt_BR/common/kafkacat.md new file mode 100644 index 0000000000..f7ea4a6f90 --- /dev/null +++ b/pages.pt_BR/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> Este comando é um pseudônimo de `kcat`. + +- Ver documentação sobre o comando original: + +`tldr kcat` diff --git a/pages.pt_BR/common/ls.md b/pages.pt_BR/common/ls.md index ead1bc8822..ca32f8cbfe 100644 --- a/pages.pt_BR/common/ls.md +++ b/pages.pt_BR/common/ls.md @@ -1,28 +1,36 @@ # ls -> Listar o conteúdo de um diretório. +> Lista o conteúdo de um diretório. > Mais informações: . -- Listar todos os arquivos, apresentando um arquivo por linha: +- Lista arquivos um por linha: `ls -1` -- Listar todos os arquivos, incluindo arquivos ocultos: +- Lista todos os arquivos, incluindo arquivos ocultos: `ls -a` -- Listar todos os arquivos, exibindo permissões, propriedade, tamanho e data de modificação: +- Lista todos os arquivos, com o final `/` adicionado aos nomes dos diretórios: + +`ls -F` + +- Lista todos os arquivos em formato longo (permissões, dono, tamanho e data de modificação): `ls -la` -- Listar todos os arquivos, apresentando o tamanho em medidas legíveis por humanos (KiB, MiB, GiB): +- Lista em formato longo com tamanho exibido usando unidades legíveis para humanos (KiB, MiB, GiB): `ls -lh` -- Listar todos os arquivos ordenados por tamanho (descendente): +- Lista em formato longo ordenados por tamanhos (decrescente): `ls -lS` -- Listar todos os arquivos ordenados por data de modificação (mais antigos primeiro): +- Lista todos os arquivos em formato longo, ordenados por data de modificação (mais antigo primeiro): `ls -ltr` + +- Lista apenas diretórios: + +`ls -d */` diff --git a/pages.pt_BR/common/lzcat.md b/pages.pt_BR/common/lzcat.md new file mode 100644 index 0000000000..bcb502a9e4 --- /dev/null +++ b/pages.pt_BR/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> Este comando é um pseudônimo de `xz`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr xz` diff --git a/pages.pt_BR/common/lzma.md b/pages.pt_BR/common/lzma.md new file mode 100644 index 0000000000..d702815d7f --- /dev/null +++ b/pages.pt_BR/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> Este comando é um pseudônimo de `xz`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr xz` diff --git a/pages.pt_BR/common/man.md b/pages.pt_BR/common/man.md index 73639bf0ac..74f38b2c57 100644 --- a/pages.pt_BR/common/man.md +++ b/pages.pt_BR/common/man.md @@ -1,24 +1,32 @@ # man -> Utilitário para exibir páginas do manual. +> Formata e exibe páginas de manual. > Mais informações: . -- Visualizar o manual de um comando: +- Exibe a página de manual de um comando: `man {{comando}}` -- Visualizar a página da seção 7 do manual de um comando: +- Exibe a página de manual de um comando da seção 7: `man {{7}} {{comando}}` -- Visualizar o caminho procurado pelas páginas do manual: +- Lista todas as seções disponíveis para um comando: + +`man -f {{comando}}` + +- Exibe o caminho procurado pelas páginas de manual: `man --path` -- Visualizar o caminho do manual de um comando: +- Exibe a localização de uma página de manual em vez da própria página de manual: `man -w {{comando}}` -- Procurar manuais contendo um termo de pesquisa: +- Exibe a página de manual usando uma localidade específica: + +`man {{comando}} --locale={{localidade}}` + +- Procura páginas de manual contendo um termo de pesquisa: `man -k "{{termo_de_pesquisa}}"` diff --git a/pages.pt_BR/common/mosquitto.md b/pages.pt_BR/common/mosquitto.md index 937ee3045a..bb7d92035c 100644 --- a/pages.pt_BR/common/mosquitto.md +++ b/pages.pt_BR/common/mosquitto.md @@ -1,7 +1,7 @@ # mosquitto > Um broker de MQTT. -> Mais informaçōes: . +> Mais informações: . - Inicia mosquitto: diff --git a/pages.pt_BR/common/mvn.md b/pages.pt_BR/common/mvn.md index 250eaca48f..9b3ef5379f 100644 --- a/pages.pt_BR/common/mvn.md +++ b/pages.pt_BR/common/mvn.md @@ -33,4 +33,4 @@ - Executar uma classe que possua o método `main`: -`mvn exec:java -Dexec.mainClass="{{nome.do.pacote.classe}}" -Dexec.args="{{arg1 arg2}}"` +`mvn exec:java -Dexec.mainClass="{{nome.do.pacote.classe}}" -Dexec.args="{{argument1 argument2 ...}}"` diff --git a/pages.pt_BR/common/nano.md b/pages.pt_BR/common/nano.md index 92c789e937..5645d62fc9 100644 --- a/pages.pt_BR/common/nano.md +++ b/pages.pt_BR/common/nano.md @@ -1,28 +1,32 @@ # nano -> Editor de texto de linha de comando simples e fácil de usar. Um clone melhorado e gratuito de Pico. +> Editor de texto de linha de comando. Um clone melhorado de `Pico`. > Mais informações: . -- Abre um novo arquivo no nano: +- Inicia o editor: `nano` -- Abre um arquivo específico: +- Inicia o editor sem usar arquivos de configuração: -`nano {{caminho/para/arquivo}}` +`nano --ignorercfiles` -- Abre um arquivo específico, posicionando o cursor na linha e coluna especificadas: +- Abre arquivos específicos, passando para o próximo arquivos ao fechar o anterior: + +`nano {{caminho/para/arquivo1 caminho/para/arquivo2 ...}}` + +- Abre um arquivo e posiciona o cursor na linha e coluna especificadas: `nano +{{linha}},{{coluna}} {{caminho/para/arquivo}}` -- Abre um arquivo específico e habilita soft wrapping: +- Abre um arquivo e habilita soft wrapping: `nano --softwrap {{caminho/para/arquivo}}` -- Abre um arquivo específico e indenta novas linhas para a indentação das linhas anteriores: +- Abre um arquivo e indenta novas linhas de acordo com a indentação da linha anterior: `nano --autoindent {{caminho/para/arquivo}}` -- Abre nano e cria um arquivo backup (`file~`) quando salva edições: +- Abre um arquivo e cria um arquivo de backup (`caminho/para/arquivo~`) ao salvá-lo: `nano --backup {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/common/nm-classic.md b/pages.pt_BR/common/nm-classic.md new file mode 100644 index 0000000000..420929fedc --- /dev/null +++ b/pages.pt_BR/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> Este comando é um pseudônimo de `nm`. + +- Ver documentação sobre o comando original: + +`tldr nm` diff --git a/pages.pt_BR/common/ntl.md b/pages.pt_BR/common/ntl.md new file mode 100644 index 0000000000..745113542d --- /dev/null +++ b/pages.pt_BR/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> Este comando é um pseudônimo de `netlify`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr netlify` diff --git a/pages.pt_BR/common/nvim.md b/pages.pt_BR/common/nvim.md new file mode 100644 index 0000000000..80b69c5fc5 --- /dev/null +++ b/pages.pt_BR/common/nvim.md @@ -0,0 +1,38 @@ +# nvim + +> Neovim, um editor de texto para programadores baseado no Vim, oferece vários modos para diferentes tipos de manipulação de texto. +> Pressionar`i` no modo normal entra no modo de inserção. `` retorna ao modo normal, que não permite a inserção regular de texto. +> Veja também `vim`, `vimtutor`, `vimdiff`. +> Mais informações: . + +- Abre um arquivo: + +`nvim {{caminho/para/arquivo}}` + +- Entra no modo de edição de texto (mode de inserção): + +`i` + +- Copia ("yank") ou recorta ("delete") a linha atual (cole-a com `P`): + +`{{yy|dd}}` + +- Entra no modo normal e desfaz a última operação: + +`u` + +- Procura por um padrão em um arquivo (pressione `n`/ `N` para ir para a próxima/prévia correspondência): + +`/{{padrão_procurado}}` + +- Executa uma substituição de expressão regular em todo o arquivo: + +`:%s/{{expressão_regular}}/{{substituição}}/g` + +- Entra no modo normal, salva (grava) o arquivo e sai: + +`:wq` + +- Sai sem salvar: + +`:q!` diff --git a/pages.pt_BR/common/passwd.md b/pages.pt_BR/common/passwd.md new file mode 100644 index 0000000000..ae59277742 --- /dev/null +++ b/pages.pt_BR/common/passwd.md @@ -0,0 +1,20 @@ +# passwd + +> Passwd é uma ferramenta usada para alterar a senha de um usuário. +> Mais informações: . + +- Altera a senha do usuário atual interativamente: + +`passwd` + +- Altera a senha de um usuário específico: + +`passwd {{nome do usuário}}` + +- Obtém o status atual do usuário: + +`passwd -S` + +- Deixa a senha da conta em branco (isso definirá a conta nomeada como sem senha): + +`passwd -d` diff --git a/pages.pt_BR/common/pip3.md b/pages.pt_BR/common/pip3.md index 822f38a839..619f6eaaec 100644 --- a/pages.pt_BR/common/pip3.md +++ b/pages.pt_BR/common/pip3.md @@ -1,19 +1,15 @@ # pip3 -> Gerenciador de pacotes para Python. +> Gerenciador de pacotes Python. > Mais informações: . -- Encontra pacotes disponíveis: - -`pip3 search {{nome_pacote}}` - - Instala um pacote: `pip3 install {{nome_pacote}}` - Instala uma versão específica de um pacote: -`pip3 install {{nome_pacote}}=={{versao_pacote}}` +`pip3 install {{nome_pacote}}=={{versão_pacote}}` - Atualiza um pacote: diff --git a/pages.pt_BR/common/podman-build.md b/pages.pt_BR/common/podman-build.md new file mode 100644 index 0000000000..13c4080045 --- /dev/null +++ b/pages.pt_BR/common/podman-build.md @@ -0,0 +1,25 @@ +# podman build + +> Ferramenta sem daemon para criar imagens de contêiner. +> O Podman fornece uma linha de comando comparável ao Docker-CLI. Simplificando: `alias docker=podman`. +> Mais informações: . + +- Criar uma imagem usando um `Dockerfile` ou `Containerfile` no diretório especificado: + +`podman build {{caminho/para/diretório}}` + +- Criar uma imagem com uma tag especificada: + +`podman build --tag {{nome_da_imagem:versão}} {{caminho/para/diretório}}` + +- Criar uma imagem a partir de um arquivo não padrão: + +`podman build --file {{Containerfile.diferente}} .` + +- Criar uma imagem sem usar nenhuma imagem em cache previamente: + +`podman build --no-cache {{caminho/para/diretório}}` + +- Criar uma imagem suprimindo todas as saídas: + +`podman build --quiet {{caminho/para/diretório}}` diff --git a/pages.pt_BR/common/podman-compose.md b/pages.pt_BR/common/podman-compose.md new file mode 100644 index 0000000000..87a7fb053b --- /dev/null +++ b/pages.pt_BR/common/podman-compose.md @@ -0,0 +1,36 @@ +# podman-compose + +> Executar e gerenciar definição de contêineres Compose Specification. +> Mais informações: . + +- Listar todos os contêineres em execução: + +`podman-compose ps` + +- Criar e iniciar todos os contêineres em segundo plano usando um arquivo `docker-compose.yml` local: + +`podman-compose up -d` + +- Iniciar todos os contêineres, fazendo o build se necessário: + +`podman-compose up --build` + +- Iniciar todos os contêineres usando um arquivo de composição alternativo: + +`podman-compose {{caminho/para/arquivo}} up` + +- Parar todos os contêineres em execução: + +`podman-compose stop` + +- Remover todos os contêineres, redes e volumes: + +`podman-compose down --volumes` + +- Acompanhar logs de um contêiner (omitir todos os nomes de contêineres): + +`podman-compose logs --follow {{nome_do_contêiner}}` + +- Executar um comando único em um serviço sem mapear portas: + +`podman-compose run {{nome_do_serviço}} {{comando}}` diff --git a/pages.pt_BR/common/podman-image.md b/pages.pt_BR/common/podman-image.md new file mode 100644 index 0000000000..8e18b77b90 --- /dev/null +++ b/pages.pt_BR/common/podman-image.md @@ -0,0 +1,21 @@ +# podman image + +> Gerenciar imagens Docker. +> Veja também `podman build`, `podman import` e `podman pull`. +> Mais informações: . + +- Listar imagens Docker locais: + +`podman image ls` + +- Excluir imagens Docker locais não utilizadas: + +`podman image prune` + +- Excluir todas as imagens não utilizadas (não apenas aquelas sem uma tag): + +`podman image prune --all` + +- Mostrar o histórico de uma imagem Docker local: + +`podman image history {{imagem}}` diff --git a/pages.pt_BR/common/podman-images.md b/pages.pt_BR/common/podman-images.md new file mode 100644 index 0000000000..87fe89eaa3 --- /dev/null +++ b/pages.pt_BR/common/podman-images.md @@ -0,0 +1,24 @@ +# podman images + +> Gerenciar imagens do Podman. +> Mais informações: . + +- Listar todas as imagens do Podman: + +`podman images` + +- Listar todas as imagens do Podman, incluindo intermediárias: + +`podman images --all` + +- Listar a saída no modo silencioso (apenas IDs numéricos): + +`podman images --quiet` + +- Listar todas as imagens do Podman que não são utilizadas por nenhum contêiner: + +`podman images --filter dangling=true` + +- Listar imagens que contenham uma substring em seus nomes: + +`podman images "{{*imagem|imagem*}}"` diff --git a/pages.pt_BR/common/podman-machine.md b/pages.pt_BR/common/podman-machine.md new file mode 100644 index 0000000000..7b6374d7f8 --- /dev/null +++ b/pages.pt_BR/common/podman-machine.md @@ -0,0 +1,33 @@ +# podman machine + +> Criar e gerenciar máquinas virtuais executando o Podman. +> Incluído com a versão 4 ou superior do Podman. +> Mais informações: . + +- Listar as máquinas existentes: + +`podman machine ls` + +- Criar uma nova máquina padrão: + +`podman machine init` + +- Criar uma nova máquina com um nome específico: + +`podman machine init {{nome}}` + +- Criar uma nova máquina com recursos diferentes: + +`podman machine init --cpus={{4}} --memory={{4096}} --disk-size={{50}}` + +- Iniciar ou parar uma máquina: + +`podman machine {{start|stop}} {{nome}}` + +- Conectar-se a uma máquina em execução via SSH: + +`podman machine ssh {{nome}}` + +- Inspecionar informações sobre uma máquina: + +`podman machine inspect {{nome}}` diff --git a/pages.pt_BR/common/podman-ps.md b/pages.pt_BR/common/podman-ps.md new file mode 100644 index 0000000000..4b44d3be8a --- /dev/null +++ b/pages.pt_BR/common/podman-ps.md @@ -0,0 +1,36 @@ +# podman ps + +> Listar contêineres do Podman. +> Mais informações: . + +- Listar contêineres do Podman em execução atualmente: + +`podman ps` + +- Listar todos os contêineres do Podman (em execução e parados): + +`podman ps --all` + +- Mostrar o contêiner mais recente criado (inclui todos os estados): + +`podman ps --latest` + +- Filtrar contêineres que contenham uma substring em seus nomes: + +`podman ps --filter "name={{nome}}"` + +- Filtrar contêineres que compartilhem uma determinada imagem como ancestral: + +`podman ps --filter "ancestor={{imagem}}:{{tag}}"` + +- Filtrar contêineres pelo código de status de saída: + +`podman ps --all --filter "exited={{código}}"` + +- Filtrar contêineres pelo status (criado, em execução, removendo, pausado, encerrado e morto): + +`podman ps --filter "status={{status}}"` + +- Filtrar contêineres que montam um volume específico ou têm um volume montado em um caminho específico: + +`podman ps --filter "volume={{caminho/para/diretório}}" --format "table {{.ID}}\t{{.Image}}\t{{.Names}}\t{{.Mounts}}"` diff --git a/pages.pt_BR/common/podman-rmi.md b/pages.pt_BR/common/podman-rmi.md new file mode 100644 index 0000000000..96e76e7d0a --- /dev/null +++ b/pages.pt_BR/common/podman-rmi.md @@ -0,0 +1,20 @@ +# podman rmi + +> Remover uma ou mais imagens do Podman. +> Mais informações: . + +- Remover uma ou mais imagens pelo nome delas: + +`podman rmi {{imagem:tag}} {{imagem2:tag}} {{...}}` + +- Remover uma imagem forçadamente: + +`podman rmi --force {{imagem}}` + +- Remover uma imagem sem excluir os pais não marcados: + +`podman rmi --no-prune {{imagem}}` + +- Exibir ajuda: + +`podman rmi` diff --git a/pages.pt_BR/common/podman-run.md b/pages.pt_BR/common/podman-run.md new file mode 100644 index 0000000000..f912c64464 --- /dev/null +++ b/pages.pt_BR/common/podman-run.md @@ -0,0 +1,36 @@ +# podman run + +> Executar um comando em um novo contêiner Podman. +> Mais informações: . + +- Executar um comando em um novo contêiner a partir de uma imagem marcada: + +`podman run {{imagem:tag}} {{comando}}` + +- Executar um comando em um novo contêiner em segundo plano e exibir o ID: + +`podman run --detach {{imagem:tag}} {{comando}}` + +- Executar um comando em um contêiner temporário no modo interativo e pseudo-TTY: + +`podman run --rm --interactive --tty {{imagem:tag}} {{comando}}` + +- Executar um comando em um novo contêiner com variáveis de ambiente passadas: + +`podman run --env '{{variável}}={{valor}}' --env {{variável}} {{imagem:tag}} {{comando}}` + +- Executar um comando em um novo contêiner com volumes montados por bind: + +`podman run --volume {{/caminho/para/caminho_no_host}}:{{/caminho/para/caminho_no_contêiner}} {{imagem:tag}} {{comando}}` + +- Executar um comando em um novo contêiner com portas publicadas: + +`podman run --publish {{porta_no_host}}:{{porta_no_contêiner}} {{imagem:tag}} {{comando}}` + +- Executar um comando em um novo contêiner sobrescrevendo o ponto de entrada (entrypoint) da imagem: + +`podman run --entrypoint {{comando}} {{imagem:tag}}` + +- Executar um comando em um novo contêiner conectando-o a uma rede: + +`podman run --network {{rede}} {{imagem:tag}}` diff --git a/pages.pt_BR/common/podman.md b/pages.pt_BR/common/podman.md new file mode 100644 index 0000000000..47f96e4d37 --- /dev/null +++ b/pages.pt_BR/common/podman.md @@ -0,0 +1,37 @@ +# podman + +> Ferramenta de gerenciamento simples para pods, contêineres e imagens. +> O Podman fornece uma linha de comando comparável ao Docker-CLI. Simplificando: `alias docker=podman`. +> Mais informações: . + +- Listar todos os contêineres (em execução e parados): + +`podman ps --all` + +- Criar um contêiner a partir de uma imagem, com um nome personalizado: + +`podman run --name {{nome_do_contêiner}} {{imagem}}` + +- Iniciar ou parar um contêiner existente: + +`podman {{start|stop}} {{nome_do_contêiner}}` + +- Baixar uma imagem de um registro (por padrão, Docker Hub): + +`podman pull {{imagem}}` + +- Exibir a lista de imagens já baixadas: + +`podman images` + +- Abrir um shell dentro de um contêiner que já está em execução: + +`podman exec --interactive --tty {{nome_do_contêiner}} {{sh}}` + +- Remover um contêiner parado: + +`podman rm {{nome_do_contêiner}}` + +- Exibir os logs de um ou mais contêineres e acompanhar a saída do log: + +`podman logs --follow {{nome_do_contêiner}} {{id_do_contêiner}}` diff --git a/pages.pt_BR/common/pssh.md b/pages.pt_BR/common/pssh.md new file mode 100644 index 0000000000..96e8cd2e11 --- /dev/null +++ b/pages.pt_BR/common/pssh.md @@ -0,0 +1,28 @@ +# pssh + +> Programa de SSH paralelo. +> Mais informações: . + +- Executar um comando em dois hosts e imprimir a saída em cada servidor em linha: + +`pssh -i -H "{{host1}} {{host2}}" {{hostname -i}}` + +- Executar um comando e salvar a saída em arquivos separados: + +`pssh -H {{host1}} -H {{host2}} -o {{caminho/para/diretório_de_saída}} {{hostname -i}}` + +- Executar um comando em vários hosts, especificados em um arquivo separado por nova linha: + +`pssh -i -h {{caminho/para/arquivo_de_hosts}} {{hostname -i}}` + +- Executar um comando como root (isso solicitará a senha do root): + +`pssh -i -h {{caminho/para/arquivo_de_hosts}} -A -l {{nome_de_usuário_do_root}} {{hostname -i}}` + +- Executar um comando com argumentos SSH adicionais: + +`pssh -i -h {{caminho/para/arquivo_de_hosts}} -x "{{-O VisualHostKey=yes}}" {{hostname -i}}` + +- Executar um comando limitando o número de conexões paralelas para 10: + +`pssh -i -h {{caminho/para/arquivo_de_hosts}} -p {{10}} '{{cd dir; ./script.sh; exit}}'` diff --git a/pages.pt_BR/common/ptpython3.md b/pages.pt_BR/common/ptpython3.md new file mode 100644 index 0000000000..f34fb9886b --- /dev/null +++ b/pages.pt_BR/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> Este comando é um pseudônimo de `ptpython`. + +- Ver documentação sobre o comando original: + +`tldr ptpython` diff --git a/pages.pt_BR/common/python.md b/pages.pt_BR/common/python.md index a99b110f86..17f5fb6a18 100644 --- a/pages.pt_BR/common/python.md +++ b/pages.pt_BR/common/python.md @@ -1,32 +1,36 @@ # python -> O interpretador de linguagem Python. +> Interpretador da linguagem Python. > Mais informações: . - Inicia o REPL (shell interativo): `python` -- Executa o script do arquivo Python alvo: +- Executa um arquivo Python específico: -`python {{script.py}}` +`python {{caminho/para/arquivo.py}}` -- Executa o script como parte do shell interativo: +- Executa um arquivo Python específico e inicia um REPL: -`python -i {{script.py}}` +`python -i {{caminho/para/arquivo.py}}` - Executa uma expressão em Python: `python -c "{{expressão}}"` -- Roda um módulo de biblioteca como um script (declara o fim da lista de opções): +- Roda o script do módulo de biblioteca especificado: `python -m {{modulo}} {{argumentos}}` -- Instala um pacote usando pip: +- Instala um pacote usando `pip`: `python -m pip install {{nome_do_pacote}}` - Depura interativamente um script de Python: -`python -m pdb {{script.py}}` +`python -m {{pdb}} {{caminho/para/arquivo.py}}` + +- Inicia o servidor HTTP integrado na porta 8000 no diretório atual: + +`python -m {{http.server}}` diff --git a/pages.pt_BR/common/python3.md b/pages.pt_BR/common/python3.md new file mode 100644 index 0000000000..29dffc65df --- /dev/null +++ b/pages.pt_BR/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> Este comando é um pseudônimo de `python`. + +- Ver documentação sobre o comando original: + +`tldr python` diff --git a/pages.pt_BR/common/rcat.md b/pages.pt_BR/common/rcat.md new file mode 100644 index 0000000000..0917154d72 --- /dev/null +++ b/pages.pt_BR/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> Este comando é um pseudônimo de `rc`. + +- Ver documentação sobre o comando original: + +`tldr rc` diff --git a/pages.pt_BR/common/ripgrep.md b/pages.pt_BR/common/ripgrep.md new file mode 100644 index 0000000000..c48e52eb5e --- /dev/null +++ b/pages.pt_BR/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> Este comando é um pseudônimo de `rg`. + +- Ver documentação sobre o comando original: + +`tldr rg` diff --git a/pages.pt_BR/common/rsync.md b/pages.pt_BR/common/rsync.md new file mode 100644 index 0000000000..0613cf76ad --- /dev/null +++ b/pages.pt_BR/common/rsync.md @@ -0,0 +1,37 @@ +# rsync + +> Transfira arquivos para ou de um host remote (mas não entre dois hosts remotos), usando SSH por padrão. +> para especificar um caminho remoto, use `host:caminho/para/arquivo_ou_diretório`. +> Mais informações: . + +- Transfere um arquivo: + +`rsync {{caminho/para/origem}} {{caminho/para/destino}}` + +- Usa o modo de arquivo (copia recursivamente diretórios, copia links simbólicos sem resolver e preserva permissões, propriedade e tempos de modificação): + +`rsync --archive {{caminho/para/origem}} {{caminho/para/destino}}` + +- Comprime os dados à medida que são enviados ao destino, exibe progresso detalhado e legível, e mantém arquivos parcialmente transferidos se forem interrompidos: + +`rsync --compress --verbose --human-readable --partial --progress {{caminho/para/origem}} {{caminho/para/destino}}` + +- Copia recursivamente diretórios: + +`rsync --recursive {{caminho/para/origem}} {{caminho/para/destino}}` + +- Transfere os conteúdos do diretório, mas não o diretório em si: + +`rsync --recursive {{caminho/para/origem}}/ {{caminho/para/destino}}` + +- Copia recursivamente diretórios, usa o modo de arquivamento, resolve links simbólicos e ignora arquivos que são mais recentes no destino: + +`rsync --recursive --archive --update --copy-links {{caminho/para/origem}} {{caminho/para/destino}}` + +- Transfere um diretório para um host remoto executando o `rsyncd` and exclui arquivos no destino que não existem na origem: + +`rsync --recursive --delete rsync://{{host}}:{{caminho/para/origem}} {{caminho/para/destino}}` + +- Transfere um arquivo por SSH usando uma porta diferente da padrão (22) e mostra o progresso global: + +`rsync --rsh 'ssh -p {{porta}}' --info=progress2 {{host}}:{{caminho/para/origem}} {{caminho/para/destino}}` diff --git a/pages.pt_BR/common/rustc.md b/pages.pt_BR/common/rustc.md index 69bf35c9e0..2bcd8a1e15 100644 --- a/pages.pt_BR/common/rustc.md +++ b/pages.pt_BR/common/rustc.md @@ -6,15 +6,15 @@ - Compila um único arquivo: -`rustc {{arquivo.rs}}` +`rustc {{caminho/para/arquivo.rs}}` - Compila com alta otimização: -`rustc -O {{arquivo.rs}}` +`rustc -O {{caminho/para/arquivo.rs}}` - Compila com informações de depuração: -`rustc -g {{arquivo.rs}}` +`rustc -g {{caminho/para/arquivo.rs}}` - Compila com otimizações específicas de arquitetura para a CPU atual: diff --git a/pages.pt_BR/common/sh.md b/pages.pt_BR/common/sh.md index 7eef6b9d5c..3556ab5c35 100644 --- a/pages.pt_BR/common/sh.md +++ b/pages.pt_BR/common/sh.md @@ -16,6 +16,6 @@ `sh {{caminho/para/script.sh}}` -- Leia e execute comandos da entrada stdin (entrada padrão): +- Leia e execute comandos da entrada `stdin` (entrada padrão): `sh -s` diff --git a/pages.pt_BR/common/ssh-add.md b/pages.pt_BR/common/ssh-add.md new file mode 100644 index 0000000000..a9d4fdfc8b --- /dev/null +++ b/pages.pt_BR/common/ssh-add.md @@ -0,0 +1,29 @@ +# ssh-add + +> Gerencia as chaves SSH carregadas no ssh-agent. +> Certifique-se de que o ssh-agent esteja em execução para que as chaves sejam carregadas nele. +> Mais informações: . + +- Adicionar as chaves SSH padrão em `~/.ssh` ao ssh-agent: + +`ssh-add` + +- Adicionar uma chave específica ao ssh-agent: + +`ssh-add {{caminho/para/chave_privada}}` + +- Listar as impressões digitais das chaves carregadas atualmente: + +`ssh-add -l` + +- Excluir uma chave do ssh-agent: + +`ssh-add -d {{caminho/para/chave_privada}}` + +- Excluir todas as chaves carregadas atualmente do ssh-agent: + +`ssh-add -D` + +- Adicionar uma chave ao ssh-agent e ao keychain: + +`ssh-add -K {{caminho/para/chave_privada}}` diff --git a/pages.pt_BR/common/ssh-agent.md b/pages.pt_BR/common/ssh-agent.md new file mode 100644 index 0000000000..37f8d02c31 --- /dev/null +++ b/pages.pt_BR/common/ssh-agent.md @@ -0,0 +1,14 @@ +# ssh-agent + +> Iniciar um processo do Agente SSH. +> Um Agente SSH mantém as chaves SSH descriptografadas na memória até serem removidas ou o processo ser encerrado. +> Veja também `ssh-add`, que pode adicionar e gerenciar chaves mantidas por um Agente SSH. +> Mais informações: . + +- Iniciar um Agente SSH para o shell atual: + +`eval $(ssh-agent)` + +- Encerrar o Agente em execução atualmente: + +`ssh-agent -k` diff --git a/pages.pt_BR/common/ssh-copy-id.md b/pages.pt_BR/common/ssh-copy-id.md new file mode 100644 index 0000000000..2a9ca2ecb2 --- /dev/null +++ b/pages.pt_BR/common/ssh-copy-id.md @@ -0,0 +1,16 @@ +# ssh-copy-id + +> Instala a sua chave pública no arquivo authorized_keys de uma máquina remota. +> Mais informações: . + +- Copiar suas chaves para a máquina remota: + +`ssh-copy-id {{nome_de_usuário@host_remoto}}` + +- Copiar a chave pública fornecida para o remoto: + +`ssh-copy-id -i {{caminho/para/certificado}} {{nome_de_usuário}}@{{host_remoto}}` + +- Copiar a chave pública fornecida para o remoto usando uma porta específica: + +`ssh-copy-id -i {{caminho/para/certificado}} -p {{porta}} {{nome_de_usuário}}@{{host_remoto}}` diff --git a/pages.pt_BR/common/ssh-keygen.md b/pages.pt_BR/common/ssh-keygen.md new file mode 100644 index 0000000000..36be8bfe36 --- /dev/null +++ b/pages.pt_BR/common/ssh-keygen.md @@ -0,0 +1,36 @@ +# ssh-keygen + +> Gera chaves SSH usadas para autenticação, logins sem senha e outras finalidades. +> Mais informações: . + +- Gerar uma chave interativamente: + +`ssh-keygen` + +- Gerar uma chave ed25519 com 32 rounds de função de derivação de chave e salvar a chave em um arquivo específico: + +`ssh-keygen -t {{ed25519}} -a {{32}} -f {{~/.ssh/nome_do_arquivo}}` + +- Gerar uma chave RSA de 4096 bits com um comentário de email: + +`ssh-keygen -t {{rsa}} -b {{4096}} -C "{{comentário|email}}"` + +- Remover as chaves de um host do arquivo known_hosts (útil quando um host conhecido tem uma nova chave): + +`ssh-keygen -R {{host_remoto}}` + +- Obter a impressão digital de uma chave em MD5 Hex: + +`ssh-keygen -l -E {{md5}} -f {{~/.ssh/nome_do_arquivo}}` + +- Alterar a senha de uma chave: + +`ssh-keygen -p -f {{~/.ssh/nome_do_arquivo}}` + +- Alterar o tipo de formato da chave (por exemplo, de formato OPENSSH para PEM), o arquivo será reescrito no local: + +`ssh-keygen -p -N "" -m {{PEM}} -f {{~/.ssh/chave_privada_OpenSSH}}` + +- Obter a chave pública a partir da chave secreta: + +`ssh-keygen -y -f {{~/.ssh/chave_privada_OpenSSH}}` diff --git a/pages.pt_BR/common/ssh-keyscan.md b/pages.pt_BR/common/ssh-keyscan.md new file mode 100644 index 0000000000..4a7e38da98 --- /dev/null +++ b/pages.pt_BR/common/ssh-keyscan.md @@ -0,0 +1,20 @@ +# ssh-keyscan + +> Obter as chaves públicas SSH de hosts remotos. +> Mais informações: . + +- Obter todas as chaves públicas SSH de um host remoto: + +`ssh-keyscan {{host}}` + +- Obter todas as chaves públicas SSH de um host remoto que esteja ouvindo em uma porta específica: + +`ssh-keyscan -p {{porta}} {{host}}` + +- Obter determinados tipos de chaves públicas SSH de um host remoto: + +`ssh-keyscan -t {{rsa,dsa,ecdsa,ed25519}} {{host}}` + +- Atualizar manualmente o arquivo known_hosts do SSH com a impressão digital de um determinado host: + +`ssh-keyscan -H {{host}} >> ~/.ssh/known_hosts` diff --git a/pages.pt_BR/common/ssh.md b/pages.pt_BR/common/ssh.md new file mode 100644 index 0000000000..82e6b2a527 --- /dev/null +++ b/pages.pt_BR/common/ssh.md @@ -0,0 +1,37 @@ +# ssh + +> O Secure Shell é um protocolo usado para fazer login de forma segura em sistemas remotos. +> Ele pode ser usado para fazer login ou executar comandos em um servidor remoto. +> Mais informações: . + +- Conectar-se a um servidor remoto: + +`ssh {{nome_do_usuário}}@{{host_remoto}}` + +- Conectar-se a um servidor remoto com uma identidade específica (chave privada): + +`ssh -i {{caminho/para/arquivo_de_chave}} {{nome_do_usuário}}@{{host_remoto}}` + +- Conectar-se a um servidor remoto usando uma porta específica: + +`ssh {{nome_do_usuário}}@{{host_remoto}} -p {{2222}}` + +- Executar um comando em um servidor remoto com uma alocação de [t]ty permitindo interação com o comando remoto: + +`ssh {{nome_do_usuário}}@{{host_remoto}} -t {{comando}} {{argumentos_do_comando}}` + +- Tunelamento SSH: Encaminhamento dinâmico de porta (proxy SOCKS em `localhost:1080`): + +`ssh -D {{1080}} {{nome_do_usuário}}@{{host_remoto}}` + +- Tunelamento SSH: Encaminhar uma porta específica (`localhost:9999` para `example.org:80`), desativar alocação de pseudo-[t]ty e execução de comandos remotos: + +`ssh -L {{9999}}:{{example.org}}:{{80}} -N -T {{nome_do_usuário}}@{{host_remoto}}` + +- Saltar com SSH: Conectar-se a um servidor remoto através de um host intermediário (vários saltos intermediários podem ser especificados separados por vírgula): + +`ssh -J {{nome_do_usuário}}@{{host_intermediário}} {{nome_do_usuário}}@{{host_remoto}}` + +- Encaminhamento do agente: Encaminhar as informações de autenticação para a máquina remota (consulte `man ssh_config` para opções disponíveis): + +`ssh -A {{nome_do_usuário}}@{{host_remoto}}` diff --git a/pages.pt_BR/common/sshd.md b/pages.pt_BR/common/sshd.md new file mode 100644 index 0000000000..2451e19243 --- /dev/null +++ b/pages.pt_BR/common/sshd.md @@ -0,0 +1,21 @@ +# sshd + +> Daemon do Secure Shell - permite que máquinas remotas façam login de forma segura na máquina atual. +> Máquinas remotas podem executar comandos como se estivessem sendo executados nesta máquina. +> Mais informações: . + +- Iniciar o daemon em segundo plano: + +`sshd` + +- Executar o sshd em primeiro plano: + +`sshd -D` + +- Executar com saída detalhada (para depuração): + +`sshd -D -d` + +- Executar em uma porta específica: + +`sshd -p {{porta}}` diff --git a/pages.pt_BR/common/sshfs.md b/pages.pt_BR/common/sshfs.md new file mode 100644 index 0000000000..27cd2c5b52 --- /dev/null +++ b/pages.pt_BR/common/sshfs.md @@ -0,0 +1,24 @@ +# sshfs + +> Cliente de sistema de arquivos baseado em SSH. +> Mais informações: . + +- Montar um diretório remoto: + +`sshfs {{nome_do_usuário}}@{{host_remoto}}:{{diretório_remoto}} {{ponto_de_montagem}}` + +- Desmontar um diretório remoto: + +`umount {{ponto_de_montagem}}` + +- Montar um diretório remoto de um servidor com uma porta específica: + +`sshfs {{nome_do_usuário}}@{{host_remoto}}:{{diretório_remoto}} -p {{2222}}` + +- Usar compressão: + +`sshfs {{nome_do_usuário}}@{{host_remoto}}:{{diretório_remoto}} -C` + +- Seguir links simbólicos: + +`sshfs -o follow_symlinks {{nome_do_usuário}}@{{host_remoto}}:{{diretório_remoto}} {{ponto_de_montagem}}` diff --git a/pages.pt_BR/common/sshpass.md b/pages.pt_BR/common/sshpass.md new file mode 100644 index 0000000000..2e46b9e47e --- /dev/null +++ b/pages.pt_BR/common/sshpass.md @@ -0,0 +1,17 @@ +# sshpass + +> Um provedor de senha SSH. +> Ele funciona criando um TTY, inserindo a senha nele e, em seguida, redirecionando `stdin` para a sessão SSH. +> Mais informações: . + +- Conectar-se a um servidor remoto usando uma senha fornecida em um descritor de arquivo (neste caso, `stdin`): + +`sshpass -d {{0}} ssh {{usuário}}@{{hostname}}` + +- Conectar-se a um servidor remoto com a senha fornecida como opção e aceitar automaticamente chaves SSH desconhecidas: + +`sshpass -p {{senha}} ssh -o StrictHostKeyChecking=no {{usuário}}@{{hostname}}` + +- Conectar-se a um servidor remoto usando a primeira linha de um arquivo como senha, aceitar automaticamente chaves SSH desconhecidas e executar um comando: + +`sshpass -f {{caminho/para/arquivo}} ssh -o StrictHostKeyChecking=no {{usuário}}@{{hostname}} "{{comando}}"` diff --git a/pages.pt_BR/common/tldr.md b/pages.pt_BR/common/tldr.md new file mode 100644 index 0000000000..3043dc9b1e --- /dev/null +++ b/pages.pt_BR/common/tldr.md @@ -0,0 +1,20 @@ +# tldr + +> Exibe páginas de ajuda simples para ferramentas de linha de comando do projeto tldr-pages. +> Mais informações: . + +- Imprime a página do tldr para um comando específico (dica: é assim que você chegou aqui!) + +`tldr {{comando}}` + +- Imprime a página do tldr para um subcomando específico: + +`tldr {{comando}}-{{subcomando}}` + +- Imprime a página do tldr para um comando para uma [p]lataforma específica: + +`tldr -p {{android|linux|osx|sunos|windows}} {{comando}}` + +- Atualiza o cache local das páginas do tldr: + +`tldr -u` diff --git a/pages.pt_BR/common/todoman.md b/pages.pt_BR/common/todoman.md new file mode 100644 index 0000000000..83dbb99e60 --- /dev/null +++ b/pages.pt_BR/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> Este comando é um pseudônimo de `todo`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr todo` diff --git a/pages.pt_BR/common/touch.md b/pages.pt_BR/common/touch.md index 6307d110c5..228a1e60d7 100644 --- a/pages.pt_BR/common/touch.md +++ b/pages.pt_BR/common/touch.md @@ -1,24 +1,20 @@ # touch -> Alterar os timestamps de acesso e de modificação (atime, mtime) de um arquivo. -> Mais informações: . +> Cria arquivos e define tempo de acesso/modificação. +> Mais informações: . -- Criar novo(s) arquivo(s) vazio(s) ou alterar os timestamps do(s) arquivo(s) para o timestamp atual: +- Cria arquivos especificados: -`touch {{caminho/para/arquivo}}` +`touch {{caminho/para/arquivo1 caminho/para/arquivo2 ...}}` -- Definir os timestamps de um arquivo para uma data e hora específica: +- Define o tempo de [a]cesso ou [m]odificação do arquivo como o atual e não [c]ria o arquivo se ele não existir: -`touch -t {{YYYYMMDDHHMM.SS}} {{caminho/para/arquivo}}` +`touch -c -{{a|m}} {{caminho/para/arquivo1 caminho/para/arquivo2 ...}}` -- Definir os timestamps de um arquivo para uma hora no passado: +- Define o [t]empo do arquivo para um valor especificado e não [c]ria o arquivo se ele não existir: -`touch -d "{{-1 hour}}" {{caminho/para/arquivo}}` +`touch -c -t {{YYYYMMDDHHMM.SS}} {{caminho/para/arquivo1 caminho/para/arquivo2 ...}}` -- Usar as timestamps de um arquivo para definir as timestamps de um segundo arquivo: +- Define o tempo de um arquivo específico para o tempo de out[r]o arquivo e não [c]ria o arquivo se ele não existir: -`touch -r {{caminho/para/arquivo1}} {{caminho/para/arquivo2}}` - -- Criar múltiplos arquivos: - -`touch -c {{caminho/para/arquivo{1,2,3}.txt}}` +`touch -c -r {{~/.emacs}} {{caminho/para/arquivo1 caminho/para/arquivo2 ...}}` diff --git a/pages.pt_BR/common/transmission.md b/pages.pt_BR/common/transmission.md new file mode 100644 index 0000000000..b6c4220168 --- /dev/null +++ b/pages.pt_BR/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> Este comando é um pseudônimo de `transmission-daemon`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr transmission-daemon` diff --git a/pages.pt_BR/common/uname.md b/pages.pt_BR/common/uname.md index e27d39fc1b..b8bf867bcf 100644 --- a/pages.pt_BR/common/uname.md +++ b/pages.pt_BR/common/uname.md @@ -1,21 +1,25 @@ # uname -> Apresenta detalhes sobre o hardware e sistema operacional do computador. -> Nota: Para maiores detalhes sobre o sistema operacional, utilize o comando `lsb_release`. +> Exibe detalhes sobre a máquina atual e o sistema operacional em execução nela. +> Veja também `lsb_release`. > Mais informações: . -- Exibir informações relacionadas ao hardware: arquitetura e tipo de processador: +- Exibe o nome do kernel: -`uname -mp` +`uname` -- Exibir informações relacionadas ao software: sistema operacional, número da release e versão: +- Exibe informações sobre a arquitetura e o processador: -`uname -srv` +`uname --machine --processor` -- Exibir o nome de rede do computador: +- Exibe nome do kernel, lançamento do kernel e versão do kernel: -`uname -n` +`uname --kernel-name --kernel-release --kernel-version` -- Exibir todas as informações disponíveis do sistema (hardware, software, nome de rede): +- Exibe o nome de rede do computador: -`uname -a` +`uname --nodename` + +- Exibe todas as informações disponíveis sobre o sistema: + +`uname --all` diff --git a/pages.pt_BR/common/unlzma.md b/pages.pt_BR/common/unlzma.md new file mode 100644 index 0000000000..dea65ab66d --- /dev/null +++ b/pages.pt_BR/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> Este comando é um pseudônimo de `xz`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr xz` diff --git a/pages.pt_BR/common/unxz.md b/pages.pt_BR/common/unxz.md new file mode 100644 index 0000000000..e46da9be4a --- /dev/null +++ b/pages.pt_BR/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> Este comando é um pseudônimo de `xz`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr xz` diff --git a/pages.pt_BR/common/virsh-connect.md b/pages.pt_BR/common/virsh-connect.md new file mode 100644 index 0000000000..d7fd3316f0 --- /dev/null +++ b/pages.pt_BR/common/virsh-connect.md @@ -0,0 +1,21 @@ +# virsh-connect + +> Conectar-se a um hipervisor de máquina virtual. +> Veja também: `virsh`. +> Mais informações: . + +- Conectar-se ao hipervisor padrão: + +`virsh connect` + +- Conectar-se como root ao hipervisor local QEMU/KVM: + +`virsh connect qemu:///system` + +- Iniciar uma nova instância do hipervisor e conectar-se a ela como usuário local: + +`virsh connect qemu:///session` + +- Conectar-se como root a um hipervisor remoto usando ssh: + +`virsh connect qemu+ssh://{{nome_do_usuário@nome_do_host}}/system` diff --git a/pages.pt_BR/common/virsh-domblklist.md b/pages.pt_BR/common/virsh-domblklist.md new file mode 100644 index 0000000000..efa58bd26a --- /dev/null +++ b/pages.pt_BR/common/virsh-domblklist.md @@ -0,0 +1,13 @@ +# virsh-domblklist + +> Listar informações sobre dispositivos de bloco associados a uma máquina virtual. +> Veja também: `virsh`. +> Mais informações: . + +- Listar o nome do destino e o caminho da origem dos dispositivos de bloco: + +`virsh domblklist --domain {{nome_da_vm}}` + +- Listar o tipo de disco e o valor do dispositivo, bem como o nome do destino e o caminho da origem: + +`virsh domblklist --domain {{nome_da_vm}} --details` diff --git a/pages.pt_BR/common/virsh-help.md b/pages.pt_BR/common/virsh-help.md new file mode 100644 index 0000000000..73b356275b --- /dev/null +++ b/pages.pt_BR/common/virsh-help.md @@ -0,0 +1,21 @@ +# virsh-help + +> Exibir informações sobre comandos ou grupos de comandos do `virsh`. +> Veja também: `virsh`. +> Mais informações: . + +- Listar os comandos do `virsh` agrupados em categorias relacionadas: + +`virsh help` + +- Listar as categorias de comandos: + +`virsh help | grep "palavra-chave"` + +- Listar os comandos de uma categoria: + +`virsh help {{palavra-chave_da_categoria}}` + +- Mostrar ajuda para um comando: + +`virsh help {{comando}}` diff --git a/pages.pt_BR/common/virsh-list.md b/pages.pt_BR/common/virsh-list.md new file mode 100644 index 0000000000..5ea7e36f99 --- /dev/null +++ b/pages.pt_BR/common/virsh-list.md @@ -0,0 +1,21 @@ +# virsh-list + +> Liste o ID, nome e estado das máquinas virtuais. +> Veja também: `virsh`. +> Mais informações: . + +- Listar informações sobre máquinas virtuais em execução: + +`virsh list` + +- Listar informações sobre máquinas virtuais independentemente do estado: + +`virsh list --all` + +- Listar informações sobre máquinas virtuais com autostart ativado ou desativado: + +`virsh list --all --{{autostart|no-autostart}}` + +- Listar informações sobre máquinas virtuais com ou sem snapshots: + +`virsh list --all --{{with-snapshot|without-snapshot}}` diff --git a/pages.pt_BR/common/virsh-pool-autostart.md b/pages.pt_BR/common/virsh-pool-autostart.md new file mode 100644 index 0000000000..c101187bc5 --- /dev/null +++ b/pages.pt_BR/common/virsh-pool-autostart.md @@ -0,0 +1,13 @@ +# virsh pool-autostart + +> Habilita ou desabilita a inicialização automática para um pool de armazenamento de máquina virtual. +> Veja também: `virsh`. +> Mais informações: . + +- Habilita a inicialização automática para o pool de armazenamento especificado pelo nome ou UUID (determinado usando `virsh pool-list`): + +`virsh pool-autostart --pool {{nome|uuid}}` + +- Desabilita a inicialização automática para o pool de armazenamento especificado pelo nome ou UUID: + +`virsh pool-autostart --pool {{nome|uuid}} --disable` diff --git a/pages.pt_BR/common/virsh-pool-build.md b/pages.pt_BR/common/virsh-pool-build.md new file mode 100644 index 0000000000..5776b041ee --- /dev/null +++ b/pages.pt_BR/common/virsh-pool-build.md @@ -0,0 +1,9 @@ +# virsh pool-build + +> Constrói o sistema de armazenamento subjacente para um pool de armazenamento de máquina virtual, conforme definido em seu arquivo de configuração em `/etc/libvirt/storage`. +> Veja também: `virsh`, `virsh-pool-define-as`, `virsh-pool-start`. +> Mais informações: . + +- Constrói o pool de armazenamento especificado pelo nome ou UUID (determinado usando `virsh pool-list`): + +`virsh pool-build --pool {{nome|uuid}}` diff --git a/pages.pt_BR/common/virsh-pool-define-as.md b/pages.pt_BR/common/virsh-pool-define-as.md new file mode 100644 index 0000000000..9bf59d8083 --- /dev/null +++ b/pages.pt_BR/common/virsh-pool-define-as.md @@ -0,0 +1,9 @@ +# virsh pool-define-as + +> Cria um arquivo de configuração em `/etc/libvirt/storage` para um pool de armazenamento persistente de máquina virtual a partir dos argumentos fornecidos. +> Veja também: `virsh`, `virsh-pool-build`, `virsh-pool-start`. +> Mais informações: . + +- Criar o arquivo de configuração para um pool de armazenamento chamado pool_name usando `/var/vms` como o sistema de armazenamento subjacente: + +`virsh pool-define-as --name {{nome_do_pool}} --type {{dir}} --target {{/var/vms}}` diff --git a/pages.pt_BR/common/virsh-pool-delete.md b/pages.pt_BR/common/virsh-pool-delete.md new file mode 100644 index 0000000000..cf7c1ebb7b --- /dev/null +++ b/pages.pt_BR/common/virsh-pool-delete.md @@ -0,0 +1,9 @@ +# virsh pool-delete + +> Exclui o sistema de armazenamento subjacente de um pool de armazenamento de máquina virtual inativo. +> Veja também: `virsh`, `virsh-pool-destroy`, `virsh-pool-undefine`. +> Mais informações: . + +- Exclui o sistema de armazenamento subjacente para o pool de armazenamento especificado pelo nome ou UUID (determinado usando `virsh pool-list`): + +`virsh pool-delete --pool {{nome|uuid}}` diff --git a/pages.pt_BR/common/virsh-pool-destroy.md b/pages.pt_BR/common/virsh-pool-destroy.md new file mode 100644 index 0000000000..adc96c8b52 --- /dev/null +++ b/pages.pt_BR/common/virsh-pool-destroy.md @@ -0,0 +1,9 @@ +# virsh pool-destroy + +> Interrompe um pool de armazenamento ativo de máquina virtual. +> Veja também: `virsh`, `virsh-pool-delete`. +> Mais informações: . + +- Interrompe um pool de armazenamento especificado pelo nome ou UUID (determinado usando `virsh pool-list`): + +`virsh pool-destroy --pool {{nome|uuid}}` diff --git a/pages.pt_BR/common/virsh-pool-info.md b/pages.pt_BR/common/virsh-pool-info.md new file mode 100644 index 0000000000..a15538de04 --- /dev/null +++ b/pages.pt_BR/common/virsh-pool-info.md @@ -0,0 +1,9 @@ +# virsh pool-info + +> Lista informações sobre um pool de armazenamento de máquina virtual. +> Veja também: `virsh`. +> Mais informações: . + +- Lista o nome, UUID, estado, tipo de persistência, status de inicialização automática, capacidade, espaço alocado e espaço disponível para o pool de armazenamento especificado pelo nome ou UUID (determinado usando `virsh pool-list`): + +`virsh pool-info --pool {{nome|uuid}}` diff --git a/pages.pt_BR/common/virsh-pool-list.md b/pages.pt_BR/common/virsh-pool-list.md new file mode 100644 index 0000000000..cd510e2447 --- /dev/null +++ b/pages.pt_BR/common/virsh-pool-list.md @@ -0,0 +1,29 @@ +# virsh pool-list + +> Lista informações sobre pools de armazenamento de máquinas virtuais. +> Veja também: `virsh`, `virsh-pool-autostart`, `virsh-pool-define-as`. +> Mais informações: . + +- Lista o nome, estado e se a inicialização automática está habilitada ou desabilitada para pools de armazenamento ativos: + +`virsh pool-list` + +- Lista informações para pools de armazenamento ativos e inativos ou apenas inativos: + +`virsh pool-list --{{all|inactive}}` + +- Lista informações estendidas sobre persistência, capacidade, alocação e espaço disponível para pools de armazenamento ativos: + +`virsh pool-list --details` + +- Lista informações para pools de armazenamento ativos com inicialização automática habilitada ou desabilitada: + +`virsh pool-list --{{autostart|no-autostart}}` + +- Lista informações para pools de armazenamento ativos que são persistentes ou transitórios: + +`virsh pool-list --{{persistent|transient}}` + +- Lista o nome e UUID dos pools de armazenamento ativos: + +`virsh pool-list --name --uuid` diff --git a/pages.pt_BR/common/virsh-pool-start.md b/pages.pt_BR/common/virsh-pool-start.md new file mode 100644 index 0000000000..fe53a0ed24 --- /dev/null +++ b/pages.pt_BR/common/virsh-pool-start.md @@ -0,0 +1,9 @@ +# virsh pool-start + +> Inicia um pool de armazenamento de máquina virtual previamente configurado, mas inativo. +> Veja também: `virsh`, `virsh-pool-define-as`, `virsh-pool-destroy`. +> Mais informações: . + +- Inicia o pool de armazenamento especificado pelo nome ou UUID (determinado usando `virsh pool-list`) e cria o sistema de armazenamento subjacente se ele não existir: + +`virsh pool-start --pool {{nome|uuid}} --build` diff --git a/pages.pt_BR/common/virsh-pool-undefine.md b/pages.pt_BR/common/virsh-pool-undefine.md new file mode 100644 index 0000000000..de08a2fd58 --- /dev/null +++ b/pages.pt_BR/common/virsh-pool-undefine.md @@ -0,0 +1,9 @@ +# virsh pool-undefine + +> Exclui o arquivo de configuração em `/etc/libvirt/storage` para um pool de armazenamento de máquina virtual parado. +> Veja também: `virsh`, `virsh-pool-destroy`. +> Mais informações: . + +- Excluir a configuração do pool de armazenamento pelo nome ou UUID especificado (determinado usando `virsh pool-list`): + +`virsh pool-undefine --pool {{nome|uuid}}` diff --git a/pages.pt_BR/common/virsh-undefine.md b/pages.pt_BR/common/virsh-undefine.md new file mode 100644 index 0000000000..98c7af40d6 --- /dev/null +++ b/pages.pt_BR/common/virsh-undefine.md @@ -0,0 +1,16 @@ +# virsh-undefine + +> Excluir uma máquina virtual. +> Mais informações: . + +- Excluir apenas o arquivo de configuração da máquina virtual: + +`virsh undefine --domain {{nome_da_vm}}` + +- Excluir o arquivo de configuração e todos os volumes de armazenamento associados: + +`virsh undefine --domain {{nome_da_vm}} --remove-all-storage` + +- Excluir o arquivo de configuração e os volumes de armazenamento especificados usando o nome de destino ou o nome de origem (obtido a partir do comando `virsh domblklist`): + +`virsh undefine --domain {{nome_da_vm}} --storage {{sda,caminho/para/origem}}` diff --git a/pages.pt_BR/common/virsh.md b/pages.pt_BR/common/virsh.md new file mode 100644 index 0000000000..5a42f5ca85 --- /dev/null +++ b/pages.pt_BR/common/virsh.md @@ -0,0 +1,37 @@ +# virsh + +> Gerenciar domínios de convidados do virsh. (NOTA: 'guest_id' pode ser o ID, nome ou UUID do convidado). +> Alguns subcomandos, como `virsh list`, têm sua própria documentação de uso. +> Mais informações: . + +- Conectar-se a uma sessão do hipervisor: + +`virsh connect {{qemu:///system}}` + +- Listar todos os domínios: + +`virsh list --all` + +- Despejar arquivo de configuração do convidado: + +`virsh dumpxml {{guest_id}} > {{caminho/para/convidado.xml}}` + +- Criar um convidado a partir de um arquivo de configuração: + +`virsh create {{caminho/para/arquivo_de_configuracao.xml}}` + +- Editar o arquivo de configuração de um convidado (o editor pode ser alterado com $EDITOR): + +`virsh edit {{guest_id}}` + +- Iniciar/reiniciar/desligar/suspender/resumir um convidado: + +`virsh {{comando}} {{guest_id}}` + +- Salvar o estado atual de um convidado em um arquivo: + +`virsh save {{guest_id}} {{nome_do_arquivo}}` + +- Excluir um convidado em execução: + +`virsh destroy {{guest_id}} && virsh undefine {{guest_id}}` diff --git a/pages.pt_BR/common/while.md b/pages.pt_BR/common/while.md index a9da9fe09e..a836c8c067 100644 --- a/pages.pt_BR/common/while.md +++ b/pages.pt_BR/common/while.md @@ -3,7 +3,7 @@ > Loop simples da shell. > Mais informações: . -- Lê a entrada default (stdin) e realiza uma ação a cada linha: +- Lê a entrada default (`stdin`) e realiza uma ação a cada linha: `while read line; do echo "$line"; done` diff --git a/pages.pt_BR/common/x11docker.md b/pages.pt_BR/common/x11docker.md new file mode 100644 index 0000000000..7c154a704c --- /dev/null +++ b/pages.pt_BR/common/x11docker.md @@ -0,0 +1,25 @@ +# x11docker + +> Executar aplicativos de GUI e interfaces de desktop seguramente em contêineres do Docker. +> Veja também `xephyr`. +> Mais informações: . + +- Iniciar o VLC em um contêiner: + +`x11docker --pulseaudio --share={{$HOME/Videos}} {{jess/vlc}}` + +- Iniciar o Xfce em uma janela: + +`x11docker --desktop {{x11docker/xfce}}` + +- Iniciar o GNOME em uma janela: + +`x11docker --desktop --gpu --init={{systemd}} {{x11docker/gnome}}` + +- Iniciar o KDE Plasma em uma janela: + +`x11docker --desktop --gpu --init={{systemd}} {{x11docker/kde-plasma}}` + +- Exibir ajuda: + +`x11docker --help` diff --git a/pages.pt_BR/common/xzcat.md b/pages.pt_BR/common/xzcat.md new file mode 100644 index 0000000000..06624535ae --- /dev/null +++ b/pages.pt_BR/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> Este comando é um pseudônimo de `xz`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr xz` diff --git a/pages.pt_BR/common/zsh.md b/pages.pt_BR/common/zsh.md index dc60aebaa5..a6b7de9858 100644 --- a/pages.pt_BR/common/zsh.md +++ b/pages.pt_BR/common/zsh.md @@ -1,25 +1,37 @@ # zsh > Z SHell, um interpretador de linha de comando compatível com o Bash. -> Veja também `histexpand` para um histórico expandido. +> Veja também `bash`, `histexpand`. > Mais informações: . - Inicie uma sessão shell interativa: `zsh` -- Execute um comando e depois saia da shell: +- Execute [c]omandos específicos: -`zsh -c "{{comando}}"` +`zsh -c "{{echo Olá Mundo}}"` -- Execute um script: +- Execute um script específico: `zsh {{caminho/para/script.zsh}}` -- Execute um script, imprimindo cada comando antes de executá-lo: +- Verifica um script específico por erros de sintaxe sem executá-lo: + +`zsh --no-exec {{caminho/para/script.zsh}}` + +- Executa comandos específicos da `stdin`: + +`{{echo Olá Mundo}} | zsh` + +- Execute um script específico, imprimindo cada comando do script antes de executá-lo: `zsh --xtrace {{caminho/para/script.zsh}}` - Inicie uma sessão shell interativa no modo verboso, imprimindo cada comando antes de executá-lo: `zsh --verbose` + +- Executa um comando específico dentro do `zsh` com padrões glob desativados: + +`noglob {{comando}}` diff --git a/pages.pt_BR/linux/abroot.md b/pages.pt_BR/linux/abroot.md new file mode 100644 index 0000000000..7b4a47b0e8 --- /dev/null +++ b/pages.pt_BR/linux/abroot.md @@ -0,0 +1,33 @@ +# abroot + +> O utilitário ABRoot fornece total imutabiliodade e atomicidade ao transacionar entre 2 estados da partição raíz (A⟺B). +> Isso também permite transações sob demanda via um shell transacional. +> Mais informações: . + +- Saída do estado da partição raiz atual ou futuro: + +`sudo abroot get {{present|future}}` + +- Insira um shell transacional na futura partição raiz e alterne o root na próxima inicialização: + +`sudo abroot shell` + +- Executa um comando específico no shell transacional na partição raíz futura e troca para ela na próxima inicialização: + +`sudo abroot exec "{{comando}}"` + +- Instala pacotes específicos no servidor dentro do shell transacional na partição raíz futura e troca para ela na próxima inicialização: + +`sudo abroot exec apt install {{pacote1 pacote2 ...}}` + +- Atualiza a partição de inicialização (apenas para usuários avançados): + +`sudo abroot _update-boot` + +- Exibe ajuda: + +`abroot --help` + +- Exibe versão: + +`abroot --version` diff --git a/pages.pt_BR/linux/acountry.md b/pages.pt_BR/linux/acountry.md new file mode 100644 index 0000000000..dce5e6d003 --- /dev/null +++ b/pages.pt_BR/linux/acountry.md @@ -0,0 +1,16 @@ +# acountry + +> Imprime o país onde um endereço IPv4 ou nome do servidor estão localizados. +> Mais informação: . + +- Imprime um país onde um endereço IPv4 ou host está localizado: + +`acountry {{examplo.com}}` + +- Imprime uma saída de [d]epuração extra: + +`acountry -d {{examplo.com}}` + +- Imprime informações mais [v]erbosas: + +`acountry -v {{examplo.com}}` diff --git a/pages.pt_BR/linux/acpi.md b/pages.pt_BR/linux/acpi.md index bd1853c06c..0fa461d728 100644 --- a/pages.pt_BR/linux/acpi.md +++ b/pages.pt_BR/linux/acpi.md @@ -1,7 +1,7 @@ # acpi > Exibe status da bateria ou informações térmicas. -> Mais informação: . +> Mais informações: . - Exibe informações sobre a bateria: diff --git a/pages.pt_BR/linux/adig.md b/pages.pt_BR/linux/adig.md new file mode 100644 index 0000000000..7e9436b7e2 --- /dev/null +++ b/pages.pt_BR/linux/adig.md @@ -0,0 +1,24 @@ +# adig + +> Imprime informações recebidas dos servidores do Sistema de Domínio de Nome(DNS). +> Mais informações: . + +- Exibe uma gravação A (padrão) do DNS por nome(s) de servidor(es): + +`adig {{examplo.com}}` + +- Exibe uma saída de [d]epuração extra: + +`adig -d {{examplo.com}}` + +- Conecte-se a um servidor DNS específico: + +`adig -s {{1.2.3.4}} {{examplo.com}}` + +- Use uma porta TCP específica para se conectar ao servidor DNS: + +`adig -T {{port}} {{examplo.com}}` + +- Use uma porta UDP específica para se conectar ao servidor DNS: + +`adig -U {{port}} {{examplo.com}}` diff --git a/pages.pt_BR/linux/alternatives.md b/pages.pt_BR/linux/alternatives.md new file mode 100644 index 0000000000..d36d026ad9 --- /dev/null +++ b/pages.pt_BR/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> Este comando é um pseudônimo de `update-alternatives`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr update-alternatives` diff --git a/pages.pt_BR/linux/bspwm.md b/pages.pt_BR/linux/bspwm.md new file mode 100644 index 0000000000..b70f9365f4 --- /dev/null +++ b/pages.pt_BR/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> Este comando é um pseudônimo de `bspc`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr bspc` diff --git a/pages.pt_BR/linux/btrfs-restore.md b/pages.pt_BR/linux/btrfs-restore.md new file mode 100644 index 0000000000..885704e444 --- /dev/null +++ b/pages.pt_BR/linux/btrfs-restore.md @@ -0,0 +1,24 @@ +# btrfs restore + +> Tenta salvar arquivos de um sistema de arquivos btrfs danificado. +> Mais informações: . + +- Restaurar todos os arquivos de um sistema de arquivos btrfs para um determinado diretório: + +`sudo btrfs restore {{caminho/para/dispositivo_btrfs}} {{caminho/para/diretório_alvo}}` + +- Listar (sem escrever) os arquivos a serem restaurados de um sistema de arquivos btrfs: + +`sudo btrfs restore --dry-run {{caminho/para/dispositivo_btrfs}} {{caminho/para/diretório_alvo}}` + +- Restaurar arquivos correspondentes a determinados padrões regex ([c]ase-insensitive) de um sistema de arquivos btrfs (todos os diretórios pai do(s) arquivo(s) de destino também devem corresponder): + +`sudo btrfs restore --path-regex {{regex}} -c {{caminho/para/dispositivo_btrfs}} {{caminho/para/diretório_alvo}}` + +- Restaurar arquivos de um sistema de arquivos btrfs usando um `bytenr` específico da árvore raiz (consulte `btrfs-find-root`): + +`sudo btrfs restore -t {{bytenr}} {{caminho/para/dispositivo_btrfs}} {{caminho/para/diretório_alvo}}` + +- Restaurar arquivos de um sistema de arquivos btrfs (juntamente com metadados, atributos estendidos e Symlinks), sobrescrevendo arquivos no destino: + +`sudo btrfs restore --metadata --xattr --symlinks --overwrite {{caminho/para/dispositivo_btrfs}} {{caminho/para/diretório_alvo}}` diff --git a/pages.pt_BR/linux/btrfs-scrub.md b/pages.pt_BR/linux/btrfs-scrub.md new file mode 100644 index 0000000000..2fa18343cb --- /dev/null +++ b/pages.pt_BR/linux/btrfs-scrub.md @@ -0,0 +1,29 @@ +# btrfs scrub + +> Varre os sistemas de arquivos btrfs para verificar a integridade dos dados. +> Recomenda-se fazer uma varredura uma vez por mês. +> Mais informações: . + +- Começar uma varredura: + +`sudo btrfs scrub start {{caminho/para/ponto_de_montagem_btrfs}}` + +- Mostrar o status de uma varredura em andamento ou concluída: + +`sudo btrfs scrub status {{caminho/para/ponto_de_montagem_btrfs}}` + +- Cancelar uma varredura em andamento: + +`sudo btrfs scrub cancel {{caminho/para/ponto_de_montagem_btrfs}}` + +- Retomar uma varredura cancelada anteriormente: + +`sudo btrfs scrub resume {{caminho/para/ponto_de_montagem_btrfs}}` + +- Iniciar uma varredura, mas espera até que a varredura termine antes de sair: + +`sudo btrfs scrub start -B {{caminho/para/ponto_de_montagem_btrfs}}` + +- Iniciar uma varredura no modo silencioso (não imprime erros ou estatísticas): + +`sudo btrfs scrub start -q {{caminho/para/ponto_de_montagem_btrfs}}` diff --git a/pages.pt_BR/linux/btrfs-version.md b/pages.pt_BR/linux/btrfs-version.md new file mode 100644 index 0000000000..01d1d5ae36 --- /dev/null +++ b/pages.pt_BR/linux/btrfs-version.md @@ -0,0 +1,12 @@ +# btrfs version + +> Exibe a versão do btrfs-progs. +> Mais informações: . + +- Exibir a versão do btrfs-progs: + +`btrfs version` + +- Exibir a ajuda: + +`btrfs version --help` diff --git a/pages.pt_BR/linux/cat.md b/pages.pt_BR/linux/cat.md new file mode 100644 index 0000000000..284d15e62d --- /dev/null +++ b/pages.pt_BR/linux/cat.md @@ -0,0 +1,32 @@ +# cat + +> Imprime e concatena arquivos. +> Mais informações: . + +- Imprime o conteúdo de um arquivo na `stdout`: + +`cat {{caminho/para/arquivo}}` + +- Concatena vários arquivos em um arquivo de saída: + +`cat {{caminho/para/arquivo1 caminho/para/arquivo2 ...}} > {{caminho/para/arquivo_de_saída}}` + +- Anexa vários arquivos a um arquivo de saída: + +`cat {{caminho/para/arquivo1 caminho/para/arquivo2 ...}} >> {{caminho/para/arquivo_de_saída}}` + +- Copia o conteúdo de um arquivo para um arquivo de saída no modo sem buffer: + +`cat -u {{/dev/tty12}} > {{/dev/tty13}}` + +- Escreve a `stdin` em um arquivo: + +`cat - > {{caminho/para/arquivo}}` + +- [n]umera todas as linhas de saída: + +`cat -n {{caminho/para/arquivo}}` + +- Exibe caracteres não imprimíveis e espaço em branco (com o prefixo `M-` se não for ASCII): + +`cat -v -t -e {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/linux/cc.md b/pages.pt_BR/linux/cc.md new file mode 100644 index 0000000000..8f9ff19aee --- /dev/null +++ b/pages.pt_BR/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> Este comando é um pseudônimo de `gcc`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr gcc` diff --git a/pages.pt_BR/linux/cgroups.md b/pages.pt_BR/linux/cgroups.md new file mode 100644 index 0000000000..4439ae98bf --- /dev/null +++ b/pages.pt_BR/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> Este comando é um pseudônimo de `cgclassify`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr cgclassify` diff --git a/pages.pt_BR/linux/daemon.md b/pages.pt_BR/linux/daemon.md new file mode 100644 index 0000000000..c8aef50d5b --- /dev/null +++ b/pages.pt_BR/linux/daemon.md @@ -0,0 +1,28 @@ +# daemon + +> Roda processos em daemons. +> Mais informações: . + +- Roda um comando como um daemon: + +`daemon --name="{{nome}}" {{comando}}` + +- Roda um comando como um daemon que será reiniciado se o comando falhar: + +`daemon --name="{{nome}}" --respawn {{comando}}` + +- Roda um comando como um daemon que será reiniciado se falar, com duas tentativas a cada 10 segundos: + +`daemon --name="{{nome}}" --respawn --attempts=2 --delay=10 {{comando}}` + +- Roda um comando como um daemon, gravando registros em um arquivo específico: + +`daemon --name="{{nome}}" --errlog={{caminho/para/arquivo.log}} {{comando}}` + +- Elimina um daemon (SIGTERM): + +`daemon --name="{{nome}}" --stop` + +- Lista os daemons: + +`daemon --list` diff --git a/pages.pt_BR/linux/dconf-read.md b/pages.pt_BR/linux/dconf-read.md new file mode 100644 index 0000000000..d6ff3573c9 --- /dev/null +++ b/pages.pt_BR/linux/dconf-read.md @@ -0,0 +1,13 @@ +# dconf read + +> Lê valores de chave dos bancos de dados dconf. +> Veja também: `dconf`. +> Mais informações: . + +- Imprime um valor de chave específico: + +`dconf read {{/caminho/para/chave}}` + +- Imprime o valor padrão de uma chave específica: + +`dconf read -d {{/caminho/para/chave}}` diff --git a/pages.pt_BR/linux/dconf-reset.md b/pages.pt_BR/linux/dconf-reset.md new file mode 100644 index 0000000000..d24153bfbb --- /dev/null +++ b/pages.pt_BR/linux/dconf-reset.md @@ -0,0 +1,13 @@ +# dconf reset + +> Redefine chaves valores nos bancos de dados dconf. +> Veja também: `dconf`. +> Mais informações: . + +- Redefine um valor de chave específico: + +`dconf read {{/caminho/para/chave}}` + +- Redefine um diretório específico: + +`dconf read -d {{/caminho/para/diretório/}}` diff --git a/pages.pt_BR/linux/dconf-write.md b/pages.pt_BR/linux/dconf-write.md new file mode 100644 index 0000000000..20c29fb611 --- /dev/null +++ b/pages.pt_BR/linux/dconf-write.md @@ -0,0 +1,29 @@ +# dconf write + +> Escreve valores de chave nos bancos de dados dconf. +> Veja também: `dconf`. +> Mais informações: . + +- Escreve um valor de chave específico: + +`dconf write {{/caminho/para/chave}} "{{valor}}"` + +- Escreve uma string específica como valor de chave: + +`dconf write {{/caminho/para/chave}} "'{{string}}'"` + +- Escreve um inteiro específico como valor de chave: + +`dconf write {{/caminho/para/chave}} "{{5}}"` + +- Escreve um booleano específico como valor de chave: + +`dconf write {{/caminho/para/chave}} "{{true|false}}"` + +- Escreve um array específico como valor de chave: + +`dconf write {{/caminho/para/chave}} "[{{'primeiro', 'segundo', ...}}]"` + +- Escreve um array vazio específico como valor de chave: + +`dconf write {{/caminho/para/chave}} "@as []"` diff --git a/pages.pt_BR/linux/dconf.md b/pages.pt_BR/linux/dconf.md new file mode 100644 index 0000000000..b64891409a --- /dev/null +++ b/pages.pt_BR/linux/dconf.md @@ -0,0 +1,29 @@ +# dconf + +> Gerencia banco de dados dconf. +> Veja também: `dconf-read`, `dconf-reset`, `dconf-write`, `gsettings`. +> Mais informações: . + +- Imprime um valor de chave específico: + +`dconf read {{/caminho/para/chave}}` + +- Imprime sub-diretórios e sub-chaves de um caminho específico: + +`dconf list {{/caminho/para/diretório/}}` + +- Grava um valor de chave específico: + +`dconf write {{/caminho/para/chave}} "{{valor}}"` + +- Redefine um valor de chave específico: + +`dconf reset {{/caminho/para/chave}}` + +- Observa alterações em uma chave/diretório específico: + +`dconf watch {{/caminho/para/chave|/caminho/para/diretório/}}` + +- Despeja um diretório específico no formato de arquivo INI: + +`dconf dump {{/caminho/para/diretório/}}` diff --git a/pages.pt_BR/linux/diff3.md b/pages.pt_BR/linux/diff3.md index b8daa9b599..8f63b5334a 100644 --- a/pages.pt_BR/linux/diff3.md +++ b/pages.pt_BR/linux/diff3.md @@ -5,8 +5,8 @@ - Comparar os arquivos: -`diff3 {{arquivo1}} {{arquivo2}} {{arquivo3}}` +`diff3 {{caminho/para/arquivo1}} {{caminho/para/arquivo2}} {{caminho/para/arquivo3}}` - Exibir todas as diferenças, destacando os conflitos: -`diff3 --show-all {{arquivo1}} {{arquivo2}} {{arquivo3}}` +`diff3 --show-all {{caminho/para/arquivo1}} {{caminho/para/arquivo2}} {{caminho/para/arquivo3}}` diff --git a/pages.pt_BR/linux/distrobox-create.md b/pages.pt_BR/linux/distrobox-create.md new file mode 100644 index 0000000000..a5ad7f6621 --- /dev/null +++ b/pages.pt_BR/linux/distrobox-create.md @@ -0,0 +1,13 @@ +# distrobox-create + +> Criar um contêiner distrobox. Veja também: `tldr distrobox`. +> O contêiner criado será integrado ao sistema host, permitindo o compartilhamento do diretório HOME do usuário, armazenamento externo, dispositivos USB externos, aplicativos gráficos (X11/Wayland) e áudio. +> Mais informações: . + +- Criar um contêiner distrobox usando a imagem do Ubuntu: + +`distrobox-create {{nome_do_contêiner}} --image {{ubuntu:latest}}` + +- Clonar um contêiner distrobox: + +`distrobox-create --clone {{nome_do_contêiner}} {{nome_do_contêiner_clonado}}` diff --git a/pages.pt_BR/linux/distrobox-enter.md b/pages.pt_BR/linux/distrobox-enter.md new file mode 100644 index 0000000000..25a4c44537 --- /dev/null +++ b/pages.pt_BR/linux/distrobox-enter.md @@ -0,0 +1,18 @@ +# distrobox-enter + +> Entrar em um contêiner distrobox. Veja também: `tldr distrobox`. +> O comando padrão executado é o seu SHELL, mas você pode especificar shells diferentes ou comandos completos para serem executados. +> Se usado dentro de um script, um aplicativo ou um serviço, você pode usar o modo `--headless` para desabilitar o tty e a interatividade. +> Mais informações: . + +- Entrar em um contêiner distrobox: + +`distrobox-enter {{nome_do_contêiner}}` + +- Entrar em um contêiner distrobox e executar um comando no login: + +`distrobox-enter {{nome_do_contêiner}} -- {{sh -l}}` + +- Entrar em um contêiner distrobox sem instanciar um tty: + +`distrobox-enter --name {{nome_do_contêiner}} -- {{uptime -p}}` diff --git a/pages.pt_BR/linux/distrobox-export.md b/pages.pt_BR/linux/distrobox-export.md new file mode 100644 index 0000000000..bb5d750bec --- /dev/null +++ b/pages.pt_BR/linux/distrobox-export.md @@ -0,0 +1,25 @@ +# distrobox-export + +> Exportar um aplicativo/serviço/binário do contêiner para o sistema operacional host. +> Subcomando de `distrobox`. Veja também: `tldr distrobox`. +> Mais informações: . + +- Exportar um aplicativo do contêiner para o host (a entrada e o ícone do aplicativo aparecerão na lista de aplicativos do seu sistema host): + +`distrobox-export --app {{nome_do_pacote}} --extra-flags "--foreground"` + +- Exportar um binário do contêiner para o host: + +`distrobox-export --bin {{caminho/para/binário}} --export-path {{caminho/para/binário_no_host}}` + +- Exportar um binário do contêiner para o host (por exemplo, `$HOME/.local/bin`): + +`distrobox-export --bin {{caminho/para/binário}} --export-path {{caminho/de/exportação}}` + +- Exportar um serviço do contêiner para o host (`--sudo` executará o serviço como root dentro do contêiner): + +`distrobox-export --service {{pacote}} --extra-flags "--allow-newer-config" --sudo` + +- Desexportar/deletar um aplicativo exportado: + +`distrobox-export --app {{pacote}} --delete` diff --git a/pages.pt_BR/linux/distrobox-host-exec.md b/pages.pt_BR/linux/distrobox-host-exec.md new file mode 100644 index 0000000000..b4eb222d9f --- /dev/null +++ b/pages.pt_BR/linux/distrobox-host-exec.md @@ -0,0 +1,13 @@ +# distrobox-host-exec + +> Executar um comando no sistema host a partir do interior de um contêiner distrobox. +> Subcomando de `distrobox`. Veja também: `tldr distrobox`. +> Mais informações: . + +- Executar um comando no sistema host a partir do interior do contêiner distrobox: + +`distrobox-host-exec "{{comando}}"` + +- Executar o comando `ls` no sistema host a partir do interior do contêiner: + +`distrobox-host-exec ls` diff --git a/pages.pt_BR/linux/distrobox-list.md b/pages.pt_BR/linux/distrobox-list.md new file mode 100644 index 0000000000..a194ce7f17 --- /dev/null +++ b/pages.pt_BR/linux/distrobox-list.md @@ -0,0 +1,13 @@ +# distrobox-list + +> Listar todos os contêineres distrobox. Veja também: `tldr distrobox`. +> Os contêineres distrobox são listados separadamente dos demais contêineres normais do Podman ou Docker. +> Mais informações: . + +- Listar todos os contêineres distrobox: + +`distrobox-list` + +- Listar todos os contêineres distrobox com informações detalhadas: + +`distrobox-list --verbose` diff --git a/pages.pt_BR/linux/distrobox-rm.md b/pages.pt_BR/linux/distrobox-rm.md new file mode 100644 index 0000000000..53a1d156ae --- /dev/null +++ b/pages.pt_BR/linux/distrobox-rm.md @@ -0,0 +1,13 @@ +# distrobox-rm + +> Remover um contêiner distrobox. +> Subcomando de `distrobox`. Veja também: `tldr distrobox`. +> Mais informações: . + +- Remover um contêiner distrobox (Dica: Pare o contêiner antes de removê-lo): + +`distrobox-rm {{nome_do_contêiner}}` + +- Remover um contêiner distrobox forçadamente: + +`distrobox-rm {{nome_do_contêiner}} --force` diff --git a/pages.pt_BR/linux/distrobox-stop.md b/pages.pt_BR/linux/distrobox-stop.md new file mode 100644 index 0000000000..ca87a14d06 --- /dev/null +++ b/pages.pt_BR/linux/distrobox-stop.md @@ -0,0 +1,13 @@ +# distrobox-stop + +> Parar um contêiner distrobox. +> Subcomando de `distrobox`. Veja também: `tldr distrobox`. +> Mais informações: . + +- Parar um contêiner distrobox: + +`distrobox-stop {{nome_do_contêiner}}` + +- Parar um contêiner distrobox de forma não interativa (sem confirmação): + +`distrobox-stop --name {{nome_do_contêiner}} --yes` diff --git a/pages.pt_BR/linux/distrobox-upgrade.md b/pages.pt_BR/linux/distrobox-upgrade.md new file mode 100644 index 0000000000..7e9e9697d0 --- /dev/null +++ b/pages.pt_BR/linux/distrobox-upgrade.md @@ -0,0 +1,17 @@ +# distrobox-upgrade + +> Atualizar um ou vários contêineres distrobox. +> Subcomando de `distrobox`. Veja também: `tldr distrobox`. +> Mais informações: . + +- Atualizar um contêiner usando o gerenciador de pacotes nativo do contêiner: + +`distrobox-upgrade {{nome_do_contêiner}}` + +- Atualizar todos os contêineres usando os gerenciadores de pacotes nativos dos contêineres: + +`distrobox-upgrade --all` + +- Atualizar contêineres específicos via o gerenciador de pacotes nativo do contêiner: + +`distrobox-upgrade {{contêiner1 contêiner2 ...}}` diff --git a/pages.pt_BR/linux/distrobox.md b/pages.pt_BR/linux/distrobox.md new file mode 100644 index 0000000000..20bbe1a9b6 --- /dev/null +++ b/pages.pt_BR/linux/distrobox.md @@ -0,0 +1,37 @@ +# distrobox + +> Use qualquer distribuição Linux dentro do seu terminal em um contêiner. Instale e use pacotes dentro dele, integrando-se perfeitamente ao sistema operacional host, compartilhando armazenamento (diretório "home") e hardware. +> Ele utiliza o Podman ou Docker para criar seus contêineres. +> Mais informações: . + +- Visualizar a documentação para criar contêineres: + +`tldr distrobox-create` + +- Visualizar a documentação para listar informações do contêiner: + +`tldr distrobox-list` + +- Visualizar a documentação para entrar no contêiner: + +`tldr distrobox-enter` + +- Visualizar a documentação para executar um comando no host a partir do interior de um contêiner: + +`tldr distrobox-host-exec` + +- Visualizar a documentação para exportar aplicativos/serviços/binários do contêiner para o host: + +`tldr distrobox-export` + +- Visualizar a documentação para atualizar contêineres: + +`tldr distrobox-upgrade` + +- Visualizar a documentação para parar os contêineres: + +`tldr distrobox-stop` + +- Visualizar a documentação para remover os contêineres: + +`tldr distrobox-rm` diff --git a/pages.pt_BR/linux/dockerd.md b/pages.pt_BR/linux/dockerd.md new file mode 100644 index 0000000000..263c852ab2 --- /dev/null +++ b/pages.pt_BR/linux/dockerd.md @@ -0,0 +1,24 @@ +# dockerd + +> Um processo persistente para iniciar e gerenciar contêineres Docker. +> Mais informações: . + +- Executar o daemon do Docker: + +`dockerd` + +- Executar o daemon do Docker e configurá-lo para escutar em sockets específicos (UNIX e TCP): + +`dockerd --host unix://{{caminho/para/tmp.sock}} --host tcp://{{ip}}` + +- Executar com um arquivo PID específico para o daemon: + +`dockerd --pidfile {{caminho/para/arquivo_pid}}` + +- Executar no modo de depuração: + +`dockerd --debug` + +- Executar e definir um nível de log específico: + +`dockerd --log-level={{debug|info|warn|error|fatal}}` diff --git a/pages.pt_BR/linux/genisoimage.md b/pages.pt_BR/linux/genisoimage.md new file mode 100644 index 0000000000..f512fad440 --- /dev/null +++ b/pages.pt_BR/linux/genisoimage.md @@ -0,0 +1,12 @@ +# genisoimage + +> Programa de pré-masterização para gerar sistemas de arquivos híbridos ISO9660/Joliet/HFS. +> Mais informações: . + +- Criar uma imagem ISO a partir do diretório de origem fornecido: + +`genisoimage -o {{minhaimagem.iso}} {{caminho/para/diretório_origem}` + +- Criar uma imagem ISO com arquivos maiores que 2GiB, relatando um tamanho aparente menor para o sistema de arquivos ISO9660: + +`genisoimage -o -allow-limited-size {{minhaimagem.iso}} {{caminho/para/diretório_origem}}` diff --git a/pages.pt_BR/linux/gsettings.md b/pages.pt_BR/linux/gsettings.md new file mode 100644 index 0000000000..eac3756530 --- /dev/null +++ b/pages.pt_BR/linux/gsettings.md @@ -0,0 +1,32 @@ +# gsettings + +> Consulta e modifica configurações do dconf com validação de esquema. +> Mais informações: . + +- Define o valor de uma chave. Falha se a chave não existe ou o valor está fora do intervalo: + +`gsettings set {{org.exemplo.esquema}} {{chave-exemplo}} {{valor}}` + +- Imprime o valor de uma chave ou o padrão fornecido pelo esquema se a chave não foi definida no `dconf`: + +`gsettings get {{org.exemplo.esquema}} {{chave-exemplo}}` + +- Desfaz a definição de uma chave, para que o valor padrão do esquema seja usado: + +`gsettings reset {{org.exemplo.esquema}} {{chave-exemplo}}` + +- Exibe todos os esquemas, chaves e valores (não realocáveis): + +`gsettings list-recursively` + +- Exibe todas as chaves e valores (padrão se não definido) de um esquema: + +`gsettings list-recursively {{org.exemplo.esquema}}` + +- Exibe valores permitidos pelo esquema para uma chave (útil com chaves enumeráveis): + +`gsettings range {{org.exemplo.esquema}} {{chave-exemplo}}` + +- Exibe a descrição legível por humanos de uma chave: + +`gsettings describe {{org.exemplo.esquema}} {{chave-exemplo}}` diff --git a/pages.pt_BR/linux/ip-route-list.md b/pages.pt_BR/linux/ip-route-list.md new file mode 100644 index 0000000000..d1da796cb5 --- /dev/null +++ b/pages.pt_BR/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> Este comando é um pseudônimo de `ip-route-show`. + +- Ver documentação sobre o comando original: + +`tldr ip-route-show` diff --git a/pages.pt_BR/linux/ip.md b/pages.pt_BR/linux/ip.md index 781974b7fb..e7d3713e84 100644 --- a/pages.pt_BR/linux/ip.md +++ b/pages.pt_BR/linux/ip.md @@ -2,7 +2,7 @@ > Mostra / manipula roteamento, dispositivos, roteamento baseado em póliticas e túneis. > Alguns subcomandos como `ip address` têm suas pŕoprias documentações de uso. -> Mais informação: . +> Mais informações: . - Lista interfaces com informações detalhadas: diff --git a/pages.pt_BR/linux/kdocker.md b/pages.pt_BR/linux/kdocker.md new file mode 100644 index 0000000000..de30504a10 --- /dev/null +++ b/pages.pt_BR/linux/kdocker.md @@ -0,0 +1,28 @@ +# kdocker + +> Ancorar facilmente aplicativos à bandeja do sistema. +> Mais informações: . + +- Exibir um cursor para enviar uma janela para a bandeja do sistema ao pressionar o botão esquerdo do mouse (pressione qualquer outro botão do mouse para cancelar): + +`kdocker` + +- Abrir um aplicativo e enviá-lo para a bandeja do sistema: + +`kdocker {{aplicativo}}` + +- Enviar a janela com foco para a bandeja do sistema: + +`kdocker -f` + +- Exibir um cursor para enviar uma janela para a bandeja do sistema com um ícone personalizado ao pressionar o botão esquerdo do mouse: + +`kdocker -i {{/caminho/para/ícone}}` + +- Abrir um aplicativo, enviá-lo para a bandeja do sistema e, se perder o foco, minimizá-lo: + +`kdocker -l {{aplicativo}}` + +- Exibir a versão: + +`kdocker --version` diff --git a/pages.pt_BR/linux/locale.md b/pages.pt_BR/linux/locale.md new file mode 100644 index 0000000000..e8ef07fd41 --- /dev/null +++ b/pages.pt_BR/linux/locale.md @@ -0,0 +1,20 @@ +# locale + +> Obtém informações específicas da localidade. +> Mais informações: . + +- Lista todas as variáveis globais de ambiente que descrevem a localidade do usuário: + +`locale` + +- Lista todas as localidades disponíveis: + +`locale --all-locales` + +- Exibe todas as localidades disponíveis e os metadados associados: + +`locale --all-locales --verbose` + +- Exibe o formato da data atual: + +`locale date_fmt` diff --git a/pages.pt_BR/linux/lscpu.md b/pages.pt_BR/linux/lscpu.md new file mode 100644 index 0000000000..89e2fa9ffc --- /dev/null +++ b/pages.pt_BR/linux/lscpu.md @@ -0,0 +1,16 @@ +# lscpu + +> Exibe informações sobre a arquitetura da CPU. +> Mais informações: . + +- Exibe informações sobre todas as CPUs: + +`lscpu` + +- Exibe informações em uma tabela: + +`lscpu --extended` + +- Exibe apenas informações sobre CPUs desligadas em uma tabela: + +`lscpu --extended --offline` diff --git a/pages.pt_BR/linux/man.md b/pages.pt_BR/linux/man.md new file mode 100644 index 0000000000..383af4d1dd --- /dev/null +++ b/pages.pt_BR/linux/man.md @@ -0,0 +1,32 @@ +# man + +> Formata e exibe páginas do manual. +> Mais informações: . + +- Exibe a página do manual para um comando: + +`man {{comando}}` + +- Exibe a página do manual para um comando da seção 7: + +`man {{7}} {{comando}}` + +- Lista todas as seções disponíveis para um comando: + +`man --whatis {{comando}}` + +- Exibe o caminho pesquisado para páginas do manual: + +`man --path` + +- Exibe a localização de uma página do manual em vez da página em si: + +`man --where {{comando}}` + +- Exibe a página do manual usando uma localização específica: + +`man --locale={{localização}} {{comando}}` + +- Procura por páginas do manual que contenham uma certa string: + +`man --apropos "{{string_buscada}}"` diff --git a/pages.pt_BR/linux/megadl.md b/pages.pt_BR/linux/megadl.md new file mode 100644 index 0000000000..5ec1c3840d --- /dev/null +++ b/pages.pt_BR/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> Este comando é um pseudônimo de `megatools-dl`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr megatools-dl` diff --git a/pages.pt_BR/linux/mkfs.btrfs.md b/pages.pt_BR/linux/mkfs.btrfs.md new file mode 100644 index 0000000000..2f6304becc --- /dev/null +++ b/pages.pt_BR/linux/mkfs.btrfs.md @@ -0,0 +1,17 @@ +# mkfs.btrfs + +> Crie um sistema de arquivos btrfs. +> O padrão é `raid1`, que especifica 2 cópias de um determinado bloco de dados espalhados por 2 dispositivos diferentes. +> Mais informações: . + +- Criar um sistema de arquivos btrfs em um único dispositivo: + +`sudo mkfs.btrfs --metadata single --data single {{/dev/sda}}` + +- Criar um sistema de arquivos btrfs em vários dispositivos com raid1: + +`sudo mkfs.btrfs --metadata raid1 --data raid1 {{/dev/sda}} {{/dev/sdb}} {{/dev/sdN}}` + +- Definir um rótulo para o sistema de arquivos: + +`sudo mkfs.btrfs --label "{{rótulo}}" {{/dev/sda}} [{{/dev/sdN}}]` diff --git a/pages.pt_BR/linux/mkfs.ext4.md b/pages.pt_BR/linux/mkfs.ext4.md new file mode 100644 index 0000000000..c8fde841b3 --- /dev/null +++ b/pages.pt_BR/linux/mkfs.ext4.md @@ -0,0 +1,12 @@ +# mkfs.ext4 + +> Cria um sistema de arquivos ext4 dentro de uma partição. +> Mais informações: . + +- Cria um sistema de arquivos ext4 dentro da partição 1 no dispositivo b (`sdb1`): + +`sudo mkfs.ext4 {{/dev/sdb1}}` + +- Cria um sistema de arquivo ext4 com um rótulo de volume: + +`sudo mkfs.ext4 -L {{rótulo_de_volume}} {{/dev/sdb1}}` diff --git a/pages.pt_BR/linux/mkfs.fat.md b/pages.pt_BR/linux/mkfs.fat.md new file mode 100644 index 0000000000..6738b9bb28 --- /dev/null +++ b/pages.pt_BR/linux/mkfs.fat.md @@ -0,0 +1,20 @@ +# mkfs.fat + +> Cria um sistema de arquivos MS-DOS dentro de uma partição. +> Mais informações: . + +- Cria um sistema de arquivos fat dentro da partição 1 do dispositivo b (`sdb1`): + +`mkfs.fat {{/dev/sdb1}}` + +- Cria um sistema de arquivos com um nome de volume: + +`mkfs.fat -n {{nome_de_volume}} {{/dev/sdb1}}` + +- Cria um sistema de arquivos com um id de volume: + +`mkfs.fat -i {{id_de_volume}} {{/dev/sdb1}}` + +- Usa 5 em vez de 2 tabelas de alocação de arquivos: + +`mkfs.fat -f 5 {{/dev/sdb1}}` diff --git a/pages.pt_BR/linux/mkfs.md b/pages.pt_BR/linux/mkfs.md new file mode 100644 index 0000000000..231d27830d --- /dev/null +++ b/pages.pt_BR/linux/mkfs.md @@ -0,0 +1,17 @@ +# mkfs + +> Cria um sistema de arquivos Linux em uma partição do disco rígido. +> Esse comando está obsoleto em favor dos utilitários mkfs. específicos de sistema de arquivos. +> Mais informações: . + +- Cria um sistema de arquivo ext2 do Linux em uma partição: + +`mkfs {{caminho/para/partição}}` + +- Cria um sistema de arquivos de um tipo especificado: + +`mkfs -t {{ext4}} {{caminho/para/partição}}` + +- Cria um sistema de arquivos de um tipo especificado e verifica por blocos ruins: + +`mkfs -c -t {{ntfs}} {{caminho/para/partição}}` diff --git a/pages.pt_BR/linux/mv.md b/pages.pt_BR/linux/mv.md index 7a857a2de3..1ab2e03f31 100644 --- a/pages.pt_BR/linux/mv.md +++ b/pages.pt_BR/linux/mv.md @@ -5,24 +5,24 @@ - Move um arquivo para um diretório arbitrário: -`mv {{arquivo}} {{destino}}` +`mv {{percorso/del/arquivo}} {{percorso/del/destino}}` - Move arquivos para outro diretório, mantendo os nomes dos arquivos: -`mv {{arquivo_1}} {{arquivo_2}} {{arquivo_3}} {{destino}}` +`mv {{percorso/del/arquivo_1 percorso/del/arquivo_2 ...}} {{percorso/del/destino}}` - Não requisitar confirmação para sobrescrição de arquivos: -`mv -f {{arquivo}} {{destino}}` +`mv -f {{percorso/del/arquivo}} {{percorso/del/destino}}` - Requisita confirmação para sobrescrição de arquivos, independentemente das permissões de arquivo: -`mv -i {{arquivo}} {{destino}}` +`mv -i {{percorso/del/arquivo}} {{percorso/del/destino}}` - Não sobrescrita arquivos existentes no diretório de destino: -`mv -n {{arquivo}} {{destino}}` +`mv -n {{percorso/del/arquivo}} {{percorso/del/destino}}` - Move os arquivos em modo Verbose, mostrando os arquivos após sua movimentação: -`mv -v {{arquivo}} {{destino}}` +`mv -v {{percorso/del/arquivo}} {{percorso/del/destino}}` diff --git a/pages.pt_BR/linux/pacman-mirrors.md b/pages.pt_BR/linux/pacman-mirrors.md new file mode 100644 index 0000000000..60ffcee3d8 --- /dev/null +++ b/pages.pt_BR/linux/pacman-mirrors.md @@ -0,0 +1,26 @@ +# pacman-mirrors + +> Gera uma lista de mirrors do pacman para o Manjaro Linux. +> Toda execução do pacman-mirrors requer que você sincronize seu bando de dados e atualize seu sistema usado `sudo pacman -Syyu`. +> Veja também: `pacman`. +> Mais informações: . + +- Gera uma lista de mirrors usando as configurações padrão: + +`sudo pacman-mirrors --fasttrack` + +- Obtém o status dos mirrors atuais: + +`pacman-mirrors --status` + +- Exibe a branch atual: + +`pacman-mirrors --get-branch` + +- Muda para uma branch diferente: + +`sudo pacman-mirrors --api --set-branch {{stable|unstable|testing}}` + +- Gera uma lista de mirror, usando apenas mirrors em seu país: + +`sudo pacman-mirrors --geoip` diff --git a/pages.pt_BR/linux/pacman.md b/pages.pt_BR/linux/pacman.md index a2aa71d751..cfc6531592 100644 --- a/pages.pt_BR/linux/pacman.md +++ b/pages.pt_BR/linux/pacman.md @@ -1,7 +1,7 @@ # pacman > Utilitário de Arch Linux para gerenciamento de pacotes. -> Alguns subcomandos como `pacman sync` possuem sua própria documentação de uso. +> Veja também: `pacman-database`, `pacman-deptest`, `pacman-files`, `pacman-key`, `pacman-mirrors`, `pacman-query`, `pacman-remove`, `pacman-sync`, `pacman-upgrade`. > Mais informações: . - Sincroniza e atualiza todos os pacotes: diff --git a/pages.pt_BR/linux/poweroff.md b/pages.pt_BR/linux/poweroff.md new file mode 100644 index 0000000000..25c12dce8b --- /dev/null +++ b/pages.pt_BR/linux/poweroff.md @@ -0,0 +1,24 @@ +# poweroff + +> Desliga o sistema. +> Mais informações: . + +- Desliga o sistema: + +`poweroff` + +- Para o sistema (mesmo que `halt`): + +`poweroff --halt` + +- Reinicia o sistema (mesmo que `reboot`): + +`poweroff --reboot` + +- Desliga imediatamente sem contato com o gerenciador do sistema: + +`poweroff --force --force` + +- Grava a entrada de desligamento wtmp sem desligar o sistema: + +`poweroff --wtmp-only` diff --git a/pages.pt_BR/linux/pwd.md b/pages.pt_BR/linux/pwd.md new file mode 100644 index 0000000000..0061240cfc --- /dev/null +++ b/pages.pt_BR/linux/pwd.md @@ -0,0 +1,16 @@ +# pwd + +> Imprime o nome do diretório atual/trabalho. +> Mais informações: . + +- Imprime o diretório atual: + +`pwd` + +- Imprime o diretório atual, e resolve todos os links simbólicos (ou seja, mostra o caminho "físico"): + +`pwd --physical` + +- Imprime o diretório lógico atual: + +`pwd --logical` diff --git a/pages.pt_BR/linux/rename.md b/pages.pt_BR/linux/rename.md new file mode 100644 index 0000000000..da31760b3d --- /dev/null +++ b/pages.pt_BR/linux/rename.md @@ -0,0 +1,31 @@ +# rename + +> Renomeia múltiplos arquivos. +> Nota: essa página refere-se ao comando do pacote `util-linux`. +> Para a versão em Perl, veja `file-rename` ou `perl-rename`. +> Aviso: Esse comando não tem nenhuma proteção e sobrescreverá arquivos sem aviso prévio. +> Mais informações: . + +- Renomeia arquivos usando substituições simples (substitui 'foo' por 'bar' onde quer que se encontre): + +`rename {{foo}} {{bar}} {{*}}` + +- Dry-run - exibe quais renomeações ocorreriam sem executá-las: + +`rename -vn {{foo}} {{bar}} {{*}}` + +- Não sobrescreve os arquivos existentes: + +`rename -o {{foo}} {{bar}} {{*}}` + +- Altera as extensões dos arquivos: + +`rename {{.ext}} {{.bak}} {{*.ext}}` + +- Acrescenta "foo" no início de todos os nomes de arquivos no diretório atual: + +`rename {{''}} {{'foo'}} {{*}}` + +- Renomeia um grupo de arquivos com numerações crescente acrescentando zeros aos números até terem 3 dígitos: + +`rename {{foo}} {{foo00}} {{foo?}} && rename {{foo}} {{foo0}} {{foo??}}` diff --git a/pages.pt_BR/linux/rm.md b/pages.pt_BR/linux/rm.md new file mode 100644 index 0000000000..83aaa7d59f --- /dev/null +++ b/pages.pt_BR/linux/rm.md @@ -0,0 +1,25 @@ +# rm + +> Remove arquivos ou diretórios. +> Veja também: `rmdir`. +> Mais informações: . + +- Remove arquivos específicos: + +`rm {{caminho/para/arquivo1 caminho/para/arquivo2 ...}}` + +- Remove arquivos específicos ignorando os inexistentes: + +`rm --force {{caminho/para/arquivo1 caminho/para/arquivo2 ...}}` + +- Remove arquivos específicos interativamente avisando antes de cada remoção: + +`rm --interactive {{caminho/para/arquivo1 caminho/para/arquivo2 ...}}` + +- Remove arquivos específicos imprimindo informações sobre cada remoção: + +`rm --verbose {{caminho/para/arquivo1 caminho/para/arquivo2 ...}}` + +- Remove arquivos e diretórios específicos recursivamente: + +`rm --recursive {{caminho/para/arquivo_ou_diretório1 caminho/para/arquivo_ou_diretório2 ...}}` diff --git a/pages.pt_BR/linux/rmdir.md b/pages.pt_BR/linux/rmdir.md new file mode 100644 index 0000000000..c0cf0132bc --- /dev/null +++ b/pages.pt_BR/linux/rmdir.md @@ -0,0 +1,13 @@ +# rmdir + +> Remove diretórios sem arquivos. +> Veja também: `rm`. +> Mais informações: . + +- Remove diretórios específicos: + +`rmdir {{caminho/para/diretório1 caminho/para/diretório2 ...}}` + +- Remove diretórios aninhados específicos recursivamente: + +`rmdir --parents {{caminho/para/diretório1 caminho/para/diretório2 ...}}` diff --git a/pages.pt_BR/linux/sed.md b/pages.pt_BR/linux/sed.md new file mode 100644 index 0000000000..7a1e63c8d6 --- /dev/null +++ b/pages.pt_BR/linux/sed.md @@ -0,0 +1,25 @@ +# sed + +> Edita texto de uma maneira programável. +> Veja também: `awk`, `ed`. +> Mais informações: . + +- Substitui todas as ocorrências de `apple` (regex básica) por `mango` (regex básica) em todas as linhas de entrada e imprime o resultado na `stdout`: + +`{{comando}} | sed 's/apple/mango/g'` + +- Executa um arquivo de script específico e imprime o resultado na `stdout`: + +`{{comando}} | sed -f {{caminho/para/script.sed}}` + +- Substitui todas as ocorrências de `apple` (regex estendida) por `APPLE` (regex estendida) em todas as linhas de entrada e imprime o resultado na `stdout`: + +`{{comando}} | sed -E 's/(apple)/\U\1/g'` + +- Imprime apenas uma primeira linha na `stdout`: + +`{{comando}} | sed -n '1p'` + +- Substitui todas as ocorrências de `apple` (regex básica) por `mango` (regex básica) em um arquivo específico e sobrescreve o arquivo original no lugar: + +`sed -i 's/apple/mango/g' {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/linux/systemctl.md b/pages.pt_BR/linux/systemctl.md new file mode 100644 index 0000000000..48e9dcab3e --- /dev/null +++ b/pages.pt_BR/linux/systemctl.md @@ -0,0 +1,36 @@ +# systemctl + +> Controla o sistema systemd e o gerenciador de serviços. +> Mais informações: . + +- Mostra todos os serviços em execução: + +`systemctl status` + +- Lista unidades com falha: + +`systemctl --failed` + +- Inicia/Para/Reinicia/Recarrega um serviço: + +`systemctl {{start|stop|restart|reload}} {{unidade}}` + +- Mostra o status de uma unidade: + +`systemctl status {{unidade}}` + +- Ativa/Desativa uma unidade a ser iniciada na inicialização: + +`systemctl {{enable|disable}} {{unidade}}` + +- Mascara/Desmascara uma unidade para impedir ativação e ativação manual: + +`systemctl {{mask|unmask}} {{unidade}}` + +- Recarrega o systemd, verificando por unidades novas ou alteradas: + +`systemctl daemon-reload` + +- Verifica se uma unidades está ativada: + +`systemctl is-enabled {{unidade}}` diff --git a/pages.pt_BR/linux/ubuntu-bug.md b/pages.pt_BR/linux/ubuntu-bug.md new file mode 100644 index 0000000000..24e681f281 --- /dev/null +++ b/pages.pt_BR/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> Este comando é um pseudônimo de `apport-bug`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr apport-bug` diff --git a/pages.pt_BR/linux/ufw.md b/pages.pt_BR/linux/ufw.md new file mode 100644 index 0000000000..7f2a4f9fb3 --- /dev/null +++ b/pages.pt_BR/linux/ufw.md @@ -0,0 +1,37 @@ +# ufw + +> Firewall Descomplicado. +> Frontend para `iptables` com o objetivo de facilitar a configuração de um firewall. +> Mais informações: . + +- Habilitar ufw: + +`ufw enable` + +- Desabilitar ufw: + +`ufw disable` + +- Mostrar regras ufw, juntamente com seus números: + +`ufw status numbered` + +- Permitir tráfego de entrada na porta 5432 nesse host com um que identifique o serviço: + +`ufw allow {{5432}} comment "{{Service}}"` + +- Permitir apenas tráfego TCP de 192.168.0.4 pra qualquer endereço deste host, na porta 22 : + +`ufw allow proto {{tcp}} from {{192.168.0.4}} to {{any}} port {{22}}` + +- Negar tráfego na porta 80 desse host : + +`ufw deny {{80}}` + +- Negar todo o tráfego UDP para portas no intervalo 8412:8500: + +`ufw deny proto {{udp}} from {{any}} to {{any}} port {{8412:8500}}` + +- Deletar uma regra particular. O número da regra pode ser recuperado com o `ufw status numbered` comando: + +`ufw delete {{rule_number}}` diff --git a/pages.pt_BR/linux/wtf.md b/pages.pt_BR/linux/wtf.md index 810ddcdba4..dd5f2ece72 100644 --- a/pages.pt_BR/linux/wtf.md +++ b/pages.pt_BR/linux/wtf.md @@ -1,7 +1,7 @@ # wtf > Mostra a expansão de acrônimos. -> Mais informações: . +> Mais informações: . - Expande um acrônimo: diff --git a/pages.pt_BR/osx/base64.md b/pages.pt_BR/osx/base64.md index 70cf104ad3..30c7f2646a 100644 --- a/pages.pt_BR/osx/base64.md +++ b/pages.pt_BR/osx/base64.md @@ -11,10 +11,10 @@ `base64 --decode --input={{arquivo_base64}}` -- Codificar de stdin: +- Codificar de `stdin`: `echo -n "{{texto}}" | base64` -- Decodificar de stdin: +- Decodificar de `stdin`: `echo -n {{texto_base64}} | base64 --decode` diff --git a/pages.pt_BR/osx/cut.md b/pages.pt_BR/osx/cut.md index a61c60bdc2..ba0d32c6e9 100644 --- a/pages.pt_BR/osx/cut.md +++ b/pages.pt_BR/osx/cut.md @@ -1,6 +1,6 @@ # cut -> Recorta campos de stdin ou arquivos. +> Recorta campos de `stdin` ou arquivos. > Mais informações: . - Imprime um intervalo específico de caracteres/campos de cada linha: diff --git a/pages.pt_BR/osx/g[.md b/pages.pt_BR/osx/g[.md new file mode 100644 index 0000000000..99ebaf59ef --- /dev/null +++ b/pages.pt_BR/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> Este comando é um pseudônimo de `-p linux [`. + +- Ver documentação sobre o comando original: + +`tldr -p linux [` diff --git a/pages.pt_BR/osx/gawk.md b/pages.pt_BR/osx/gawk.md new file mode 100644 index 0000000000..a4e500139e --- /dev/null +++ b/pages.pt_BR/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> Este comando é um pseudônimo de `-p linux awk`. + +- Ver documentação sobre o comando original: + +`tldr -p linux awk` diff --git a/pages.pt_BR/osx/gb2sum.md b/pages.pt_BR/osx/gb2sum.md new file mode 100644 index 0000000000..1c3e83a412 --- /dev/null +++ b/pages.pt_BR/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> Este comando é um pseudônimo de `-p linux b2sum`. + +- Ver documentação sobre o comando original: + +`tldr -p linux b2sum` diff --git a/pages.pt_BR/osx/gbase32.md b/pages.pt_BR/osx/gbase32.md new file mode 100644 index 0000000000..e91e514432 --- /dev/null +++ b/pages.pt_BR/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> Este comando é um pseudônimo de `-p linux base32`. + +- Ver documentação sobre o comando original: + +`tldr -p linux base32` diff --git a/pages.pt_BR/osx/gbase64.md b/pages.pt_BR/osx/gbase64.md new file mode 100644 index 0000000000..9ad1187d8d --- /dev/null +++ b/pages.pt_BR/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> Este comando é um pseudônimo de `-p linux base64`. + +- Ver documentação sobre o comando original: + +`tldr -p linux base64` diff --git a/pages.pt_BR/osx/gbasename.md b/pages.pt_BR/osx/gbasename.md new file mode 100644 index 0000000000..31c1ebc9e4 --- /dev/null +++ b/pages.pt_BR/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> Este comando é um pseudônimo de `-p linux basename`. + +- Ver documentação sobre o comando original: + +`tldr -p linux basename` diff --git a/pages.pt_BR/osx/gbasenc.md b/pages.pt_BR/osx/gbasenc.md new file mode 100644 index 0000000000..d0bbecc851 --- /dev/null +++ b/pages.pt_BR/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> Este comando é um pseudônimo de `-p linux basenc`. + +- Ver documentação sobre o comando original: + +`tldr -p linux basenc` diff --git a/pages.pt_BR/osx/gcat.md b/pages.pt_BR/osx/gcat.md new file mode 100644 index 0000000000..c809f97825 --- /dev/null +++ b/pages.pt_BR/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> Este comando é um pseudônimo de `-p linux cat`. + +- Ver documentação sobre o comando original: + +`tldr -p linux cat` diff --git a/pages.pt_BR/osx/gchcon.md b/pages.pt_BR/osx/gchcon.md new file mode 100644 index 0000000000..edfb1ed737 --- /dev/null +++ b/pages.pt_BR/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> Este comando é um pseudônimo de `-p linux chcon`. + +- Ver documentação sobre o comando original: + +`tldr -p linux chcon` diff --git a/pages.pt_BR/osx/gchgrp.md b/pages.pt_BR/osx/gchgrp.md new file mode 100644 index 0000000000..05ec610aaa --- /dev/null +++ b/pages.pt_BR/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> Este comando é um pseudônimo de `-p linux chgrp`. + +- Ver documentação sobre o comando original: + +`tldr -p linux chgrp` diff --git a/pages.pt_BR/osx/gchmod.md b/pages.pt_BR/osx/gchmod.md new file mode 100644 index 0000000000..4add0882cf --- /dev/null +++ b/pages.pt_BR/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> Este comando é um pseudônimo de `-p linux chmod`. + +- Ver documentação sobre o comando original: + +`tldr -p linux chmod` diff --git a/pages.pt_BR/osx/gchown.md b/pages.pt_BR/osx/gchown.md new file mode 100644 index 0000000000..4d8a958704 --- /dev/null +++ b/pages.pt_BR/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> Este comando é um pseudônimo de `-p linux chown`. + +- Ver documentação sobre o comando original: + +`tldr -p linux chown` diff --git a/pages.pt_BR/osx/gchroot.md b/pages.pt_BR/osx/gchroot.md new file mode 100644 index 0000000000..2e62a2070b --- /dev/null +++ b/pages.pt_BR/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> Este comando é um pseudônimo de `-p linux chroot`. + +- Ver documentação sobre o comando original: + +`tldr -p linux chroot` diff --git a/pages.pt_BR/osx/gcksum.md b/pages.pt_BR/osx/gcksum.md new file mode 100644 index 0000000000..76cc9762a6 --- /dev/null +++ b/pages.pt_BR/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> Este comando é um pseudônimo de `-p linux cksum`. + +- Ver documentação sobre o comando original: + +`tldr -p linux cksum` diff --git a/pages.pt_BR/osx/gcomm.md b/pages.pt_BR/osx/gcomm.md new file mode 100644 index 0000000000..8e321b528c --- /dev/null +++ b/pages.pt_BR/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> Este comando é um pseudônimo de `-p linux comm`. + +- Ver documentação sobre o comando original: + +`tldr -p linux comm` diff --git a/pages.pt_BR/osx/gcp.md b/pages.pt_BR/osx/gcp.md new file mode 100644 index 0000000000..220761b432 --- /dev/null +++ b/pages.pt_BR/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> Este comando é um pseudônimo de `-p linux cp`. + +- Ver documentação sobre o comando original: + +`tldr -p linux cp` diff --git a/pages.pt_BR/osx/gcsplit.md b/pages.pt_BR/osx/gcsplit.md new file mode 100644 index 0000000000..61f4b8f5e9 --- /dev/null +++ b/pages.pt_BR/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> Este comando é um pseudônimo de `-p linux csplit`. + +- Ver documentação sobre o comando original: + +`tldr -p linux csplit` diff --git a/pages.pt_BR/osx/gcut.md b/pages.pt_BR/osx/gcut.md new file mode 100644 index 0000000000..1a2f35ad24 --- /dev/null +++ b/pages.pt_BR/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> Este comando é um pseudônimo de `-p linux cut`. + +- Ver documentação sobre o comando original: + +`tldr -p linux cut` diff --git a/pages.pt_BR/osx/gdate.md b/pages.pt_BR/osx/gdate.md new file mode 100644 index 0000000000..be072b3816 --- /dev/null +++ b/pages.pt_BR/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> Este comando é um pseudônimo de `-p linux date`. + +- Ver documentação sobre o comando original: + +`tldr -p linux date` diff --git a/pages.pt_BR/osx/gdd.md b/pages.pt_BR/osx/gdd.md new file mode 100644 index 0000000000..3736615b97 --- /dev/null +++ b/pages.pt_BR/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> Este comando é um pseudônimo de `-p linux dd`. + +- Ver documentação sobre o comando original: + +`tldr -p linux dd` diff --git a/pages.pt_BR/osx/gdf.md b/pages.pt_BR/osx/gdf.md new file mode 100644 index 0000000000..f344ac4a28 --- /dev/null +++ b/pages.pt_BR/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> Este comando é um pseudônimo de `-p linux df`. + +- Ver documentação sobre o comando original: + +`tldr -p linux df` diff --git a/pages.pt_BR/osx/gdir.md b/pages.pt_BR/osx/gdir.md new file mode 100644 index 0000000000..deb975282e --- /dev/null +++ b/pages.pt_BR/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> Este comando é um pseudônimo de `-p linux dir`. + +- Ver documentação sobre o comando original: + +`tldr -p linux dir` diff --git a/pages.pt_BR/osx/gdircolors.md b/pages.pt_BR/osx/gdircolors.md new file mode 100644 index 0000000000..e1b48a78f7 --- /dev/null +++ b/pages.pt_BR/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> Este comando é um pseudônimo de `-p linux dircolors`. + +- Ver documentação sobre o comando original: + +`tldr -p linux dircolors` diff --git a/pages.pt_BR/osx/gdirname.md b/pages.pt_BR/osx/gdirname.md new file mode 100644 index 0000000000..620a2c1fc9 --- /dev/null +++ b/pages.pt_BR/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> Este comando é um pseudônimo de `-p linux dirname`. + +- Ver documentação sobre o comando original: + +`tldr -p linux dirname` diff --git a/pages.pt_BR/osx/gdnsdomainname.md b/pages.pt_BR/osx/gdnsdomainname.md new file mode 100644 index 0000000000..02efac8818 --- /dev/null +++ b/pages.pt_BR/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> Este comando é um pseudônimo de `-p linux dnsdomainname`. + +- Ver documentação sobre o comando original: + +`tldr -p linux dnsdomainname` diff --git a/pages.pt_BR/osx/gecho.md b/pages.pt_BR/osx/gecho.md new file mode 100644 index 0000000000..d024664573 --- /dev/null +++ b/pages.pt_BR/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> Este comando é um pseudônimo de `-p linux echo`. + +- Ver documentação sobre o comando original: + +`tldr -p linux echo` diff --git a/pages.pt_BR/osx/ged.md b/pages.pt_BR/osx/ged.md new file mode 100644 index 0000000000..c96a3b0ca1 --- /dev/null +++ b/pages.pt_BR/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> Este comando é um pseudônimo de `-p linux ed`. + +- Ver documentação sobre o comando original: + +`tldr -p linux ed` diff --git a/pages.pt_BR/osx/gegrep.md b/pages.pt_BR/osx/gegrep.md new file mode 100644 index 0000000000..7881678991 --- /dev/null +++ b/pages.pt_BR/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> Este comando é um pseudônimo de `-p linux egrep`. + +- Ver documentação sobre o comando original: + +`tldr -p linux egrep` diff --git a/pages.pt_BR/osx/genv.md b/pages.pt_BR/osx/genv.md new file mode 100644 index 0000000000..37154f204b --- /dev/null +++ b/pages.pt_BR/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> Este comando é um pseudônimo de `-p linux env`. + +- Ver documentação sobre o comando original: + +`tldr -p linux env` diff --git a/pages.pt_BR/osx/gexpand.md b/pages.pt_BR/osx/gexpand.md new file mode 100644 index 0000000000..bc34f8bfe2 --- /dev/null +++ b/pages.pt_BR/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> Este comando é um pseudônimo de `-p linux expand`. + +- Ver documentação sobre o comando original: + +`tldr -p linux expand` diff --git a/pages.pt_BR/osx/gexpr.md b/pages.pt_BR/osx/gexpr.md new file mode 100644 index 0000000000..18897fdf9e --- /dev/null +++ b/pages.pt_BR/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> Este comando é um pseudônimo de `-p linux expr`. + +- Ver documentação sobre o comando original: + +`tldr -p linux expr` diff --git a/pages.pt_BR/osx/gfactor.md b/pages.pt_BR/osx/gfactor.md new file mode 100644 index 0000000000..baaea52a20 --- /dev/null +++ b/pages.pt_BR/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> Este comando é um pseudônimo de `-p linux factor`. + +- Ver documentação sobre o comando original: + +`tldr -p linux factor` diff --git a/pages.pt_BR/osx/gfalse.md b/pages.pt_BR/osx/gfalse.md new file mode 100644 index 0000000000..5a50801eec --- /dev/null +++ b/pages.pt_BR/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> Este comando é um pseudônimo de `-p linux false`. + +- Ver documentação sobre o comando original: + +`tldr -p linux false` diff --git a/pages.pt_BR/osx/gfgrep.md b/pages.pt_BR/osx/gfgrep.md new file mode 100644 index 0000000000..7fa01a3a9a --- /dev/null +++ b/pages.pt_BR/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> Este comando é um pseudônimo de `-p linux fgrep`. + +- Ver documentação sobre o comando original: + +`tldr -p linux fgrep` diff --git a/pages.pt_BR/osx/gfind.md b/pages.pt_BR/osx/gfind.md new file mode 100644 index 0000000000..ee768832b4 --- /dev/null +++ b/pages.pt_BR/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> Este comando é um pseudônimo de `-p linux find`. + +- Ver documentação sobre o comando original: + +`tldr -p linux find` diff --git a/pages.pt_BR/osx/gfmt.md b/pages.pt_BR/osx/gfmt.md new file mode 100644 index 0000000000..9fb92cf4e6 --- /dev/null +++ b/pages.pt_BR/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> Este comando é um pseudônimo de `-p linux fmt`. + +- Ver documentação sobre o comando original: + +`tldr -p linux fmt` diff --git a/pages.pt_BR/osx/gfold.md b/pages.pt_BR/osx/gfold.md new file mode 100644 index 0000000000..d511000254 --- /dev/null +++ b/pages.pt_BR/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> Este comando é um pseudônimo de `-p linux fold`. + +- Ver documentação sobre o comando original: + +`tldr -p linux fold` diff --git a/pages.pt_BR/osx/gftp.md b/pages.pt_BR/osx/gftp.md new file mode 100644 index 0000000000..f4b3f0461e --- /dev/null +++ b/pages.pt_BR/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> Este comando é um pseudônimo de `-p linux ftp`. + +- Ver documentação sobre o comando original: + +`tldr -p linux ftp` diff --git a/pages.pt_BR/osx/ggrep.md b/pages.pt_BR/osx/ggrep.md new file mode 100644 index 0000000000..fd12e8d432 --- /dev/null +++ b/pages.pt_BR/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> Este comando é um pseudônimo de `-p linux grep`. + +- Ver documentação sobre o comando original: + +`tldr -p linux grep` diff --git a/pages.pt_BR/osx/ggroups.md b/pages.pt_BR/osx/ggroups.md new file mode 100644 index 0000000000..59feec8b98 --- /dev/null +++ b/pages.pt_BR/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> Este comando é um pseudônimo de `-p linux groups`. + +- Ver documentação sobre o comando original: + +`tldr -p linux groups` diff --git a/pages.pt_BR/osx/ghead.md b/pages.pt_BR/osx/ghead.md new file mode 100644 index 0000000000..25b055fd8f --- /dev/null +++ b/pages.pt_BR/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> Este comando é um pseudônimo de `-p linux head`. + +- Ver documentação sobre o comando original: + +`tldr -p linux head` diff --git a/pages.pt_BR/osx/ghostid.md b/pages.pt_BR/osx/ghostid.md new file mode 100644 index 0000000000..608350d8a4 --- /dev/null +++ b/pages.pt_BR/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> Este comando é um pseudônimo de `-p linux hostid`. + +- Ver documentação sobre o comando original: + +`tldr -p linux hostid` diff --git a/pages.pt_BR/osx/ghostname.md b/pages.pt_BR/osx/ghostname.md new file mode 100644 index 0000000000..9a5aa99a65 --- /dev/null +++ b/pages.pt_BR/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> Este comando é um pseudônimo de `-p linux hostname`. + +- Ver documentação sobre o comando original: + +`tldr -p linux hostname` diff --git a/pages.pt_BR/osx/gid.md b/pages.pt_BR/osx/gid.md new file mode 100644 index 0000000000..a3e80beca4 --- /dev/null +++ b/pages.pt_BR/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> Este comando é um pseudônimo de `-p linux id`. + +- Ver documentação sobre o comando original: + +`tldr -p linux id` diff --git a/pages.pt_BR/osx/gifconfig.md b/pages.pt_BR/osx/gifconfig.md new file mode 100644 index 0000000000..dd90fd9f9c --- /dev/null +++ b/pages.pt_BR/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> Este comando é um pseudônimo de `-p linux ifconfig`. + +- Ver documentação sobre o comando original: + +`tldr -p linux ifconfig` diff --git a/pages.pt_BR/osx/gindent.md b/pages.pt_BR/osx/gindent.md new file mode 100644 index 0000000000..9662b6c490 --- /dev/null +++ b/pages.pt_BR/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> Este comando é um pseudônimo de `-p linux indent`. + +- Ver documentação sobre o comando original: + +`tldr -p linux indent` diff --git a/pages.pt_BR/osx/ginstall.md b/pages.pt_BR/osx/ginstall.md new file mode 100644 index 0000000000..ce9cebe61e --- /dev/null +++ b/pages.pt_BR/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> Este comando é um pseudônimo de `-p linux install`. + +- Ver documentação sobre o comando original: + +`tldr -p linux install` diff --git a/pages.pt_BR/osx/gjoin.md b/pages.pt_BR/osx/gjoin.md new file mode 100644 index 0000000000..ca7c579548 --- /dev/null +++ b/pages.pt_BR/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> Este comando é um pseudônimo de `-p linux join`. + +- Ver documentação sobre o comando original: + +`tldr -p linux join` diff --git a/pages.pt_BR/osx/gkill.md b/pages.pt_BR/osx/gkill.md new file mode 100644 index 0000000000..1abe04e11d --- /dev/null +++ b/pages.pt_BR/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> Este comando é um pseudônimo de `-p linux kill`. + +- Ver documentação sobre o comando original: + +`tldr -p linux kill` diff --git a/pages.pt_BR/osx/glibtool.md b/pages.pt_BR/osx/glibtool.md new file mode 100644 index 0000000000..7be03dbcad --- /dev/null +++ b/pages.pt_BR/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> Este comando é um pseudônimo de `-p linux libtool`. + +- Ver documentação sobre o comando original: + +`tldr -p linux libtool` diff --git a/pages.pt_BR/osx/glibtoolize.md b/pages.pt_BR/osx/glibtoolize.md new file mode 100644 index 0000000000..7f17aa768d --- /dev/null +++ b/pages.pt_BR/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> Este comando é um pseudônimo de `-p linux libtoolize`. + +- Ver documentação sobre o comando original: + +`tldr -p linux libtoolize` diff --git a/pages.pt_BR/osx/glink.md b/pages.pt_BR/osx/glink.md new file mode 100644 index 0000000000..095e55f992 --- /dev/null +++ b/pages.pt_BR/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> Este comando é um pseudônimo de `-p linux link`. + +- Ver documentação sobre o comando original: + +`tldr -p linux link` diff --git a/pages.pt_BR/osx/gln.md b/pages.pt_BR/osx/gln.md new file mode 100644 index 0000000000..5ce4aea5a1 --- /dev/null +++ b/pages.pt_BR/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> Este comando é um pseudônimo de `-p linux ln`. + +- Ver documentação sobre o comando original: + +`tldr -p linux ln` diff --git a/pages.pt_BR/osx/glocate.md b/pages.pt_BR/osx/glocate.md new file mode 100644 index 0000000000..806b58b3f4 --- /dev/null +++ b/pages.pt_BR/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> Este comando é um pseudônimo de `-p linux locate`. + +- Ver documentação sobre o comando original: + +`tldr -p linux locate` diff --git a/pages.pt_BR/osx/glogger.md b/pages.pt_BR/osx/glogger.md new file mode 100644 index 0000000000..2f482f5610 --- /dev/null +++ b/pages.pt_BR/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> Este comando é um pseudônimo de `-p linux logger`. + +- Ver documentação sobre o comando original: + +`tldr -p linux logger` diff --git a/pages.pt_BR/osx/glogname.md b/pages.pt_BR/osx/glogname.md new file mode 100644 index 0000000000..976f4f6a1a --- /dev/null +++ b/pages.pt_BR/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> Este comando é um pseudônimo de `-p linux logname`. + +- Ver documentação sobre o comando original: + +`tldr -p linux logname` diff --git a/pages.pt_BR/osx/gls.md b/pages.pt_BR/osx/gls.md new file mode 100644 index 0000000000..d07d89a2ff --- /dev/null +++ b/pages.pt_BR/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> Este comando é um pseudônimo de `-p linux ls`. + +- Ver documentação sobre o comando original: + +`tldr -p linux ls` diff --git a/pages.pt_BR/osx/gmake.md b/pages.pt_BR/osx/gmake.md new file mode 100644 index 0000000000..7e7ad314cd --- /dev/null +++ b/pages.pt_BR/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> Este comando é um pseudônimo de `-p linux make`. + +- Ver documentação sobre o comando original: + +`tldr -p linux make` diff --git a/pages.pt_BR/osx/gmd5sum.md b/pages.pt_BR/osx/gmd5sum.md new file mode 100644 index 0000000000..a7edcd6403 --- /dev/null +++ b/pages.pt_BR/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> Este comando é um pseudônimo de `-p linux md5sum`. + +- Ver documentação sobre o comando original: + +`tldr -p linux md5sum` diff --git a/pages.pt_BR/osx/gmkdir.md b/pages.pt_BR/osx/gmkdir.md new file mode 100644 index 0000000000..a7396a61a7 --- /dev/null +++ b/pages.pt_BR/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> Este comando é um pseudônimo de `-p linux mkdir`. + +- Ver documentação sobre o comando original: + +`tldr -p linux mkdir` diff --git a/pages.pt_BR/osx/gmkfifo.md b/pages.pt_BR/osx/gmkfifo.md new file mode 100644 index 0000000000..c36ff73aa1 --- /dev/null +++ b/pages.pt_BR/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> Este comando é um pseudônimo de `-p linux mkfifo`. + +- Ver documentação sobre o comando original: + +`tldr -p linux mkfifo` diff --git a/pages.pt_BR/osx/gmknod.md b/pages.pt_BR/osx/gmknod.md new file mode 100644 index 0000000000..5e0dd9e2eb --- /dev/null +++ b/pages.pt_BR/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> Este comando é um pseudônimo de `-p linux mknod`. + +- Ver documentação sobre o comando original: + +`tldr -p linux mknod` diff --git a/pages.pt_BR/osx/gmktemp.md b/pages.pt_BR/osx/gmktemp.md new file mode 100644 index 0000000000..62cc2b4952 --- /dev/null +++ b/pages.pt_BR/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> Este comando é um pseudônimo de `-p linux mktemp`. + +- Ver documentação sobre o comando original: + +`tldr -p linux mktemp` diff --git a/pages.pt_BR/osx/gmv.md b/pages.pt_BR/osx/gmv.md new file mode 100644 index 0000000000..285554999a --- /dev/null +++ b/pages.pt_BR/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> Este comando é um pseudônimo de `-p linux mv`. + +- Ver documentação sobre o comando original: + +`tldr -p linux mv` diff --git a/pages.pt_BR/osx/gnice.md b/pages.pt_BR/osx/gnice.md new file mode 100644 index 0000000000..f5617ce91c --- /dev/null +++ b/pages.pt_BR/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> Este comando é um pseudônimo de `-p linux nice`. + +- Ver documentação sobre o comando original: + +`tldr -p linux nice` diff --git a/pages.pt_BR/osx/gnl.md b/pages.pt_BR/osx/gnl.md new file mode 100644 index 0000000000..60bc7d2e4c --- /dev/null +++ b/pages.pt_BR/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> Este comando é um pseudônimo de `-p linux nl`. + +- Ver documentação sobre o comando original: + +`tldr -p linux nl` diff --git a/pages.pt_BR/osx/gnohup.md b/pages.pt_BR/osx/gnohup.md new file mode 100644 index 0000000000..e09bd5575c --- /dev/null +++ b/pages.pt_BR/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> Este comando é um pseudônimo de `-p linux nohup`. + +- Ver documentação sobre o comando original: + +`tldr -p linux nohup` diff --git a/pages.pt_BR/osx/gnproc.md b/pages.pt_BR/osx/gnproc.md new file mode 100644 index 0000000000..3c3de57032 --- /dev/null +++ b/pages.pt_BR/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> Este comando é um pseudônimo de `-p linux nproc`. + +- Ver documentação sobre o comando original: + +`tldr -p linux nproc` diff --git a/pages.pt_BR/osx/gnumfmt.md b/pages.pt_BR/osx/gnumfmt.md new file mode 100644 index 0000000000..bf9301d70b --- /dev/null +++ b/pages.pt_BR/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> Este comando é um pseudônimo de `-p linux numfmt`. + +- Ver documentação sobre o comando original: + +`tldr -p linux numfmt` diff --git a/pages.pt_BR/osx/god.md b/pages.pt_BR/osx/god.md new file mode 100644 index 0000000000..67f5c1c7dd --- /dev/null +++ b/pages.pt_BR/osx/god.md @@ -0,0 +1,7 @@ +# god + +> Este comando é um pseudônimo de `-p linux od`. + +- Ver documentação sobre o comando original: + +`tldr -p linux od` diff --git a/pages.pt_BR/osx/gpaste.md b/pages.pt_BR/osx/gpaste.md new file mode 100644 index 0000000000..f48d0bf4f2 --- /dev/null +++ b/pages.pt_BR/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> Este comando é um pseudônimo de `-p linux paste`. + +- Ver documentação sobre o comando original: + +`tldr -p linux paste` diff --git a/pages.pt_BR/osx/gpathchk.md b/pages.pt_BR/osx/gpathchk.md new file mode 100644 index 0000000000..f2e48f95b4 --- /dev/null +++ b/pages.pt_BR/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> Este comando é um pseudônimo de `-p linux pathchk`. + +- Ver documentação sobre o comando original: + +`tldr -p linux pathchk` diff --git a/pages.pt_BR/osx/gping.md b/pages.pt_BR/osx/gping.md new file mode 100644 index 0000000000..9069279fe1 --- /dev/null +++ b/pages.pt_BR/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> Este comando é um pseudônimo de `-p linux ping`. + +- Ver documentação sobre o comando original: + +`tldr -p linux ping` diff --git a/pages.pt_BR/osx/gping6.md b/pages.pt_BR/osx/gping6.md new file mode 100644 index 0000000000..3632f63424 --- /dev/null +++ b/pages.pt_BR/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> Este comando é um pseudônimo de `-p linux ping6`. + +- Ver documentação sobre o comando original: + +`tldr -p linux ping6` diff --git a/pages.pt_BR/osx/gpinky.md b/pages.pt_BR/osx/gpinky.md new file mode 100644 index 0000000000..ad4853a29c --- /dev/null +++ b/pages.pt_BR/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> Este comando é um pseudônimo de `-p linux pinky`. + +- Ver documentação sobre o comando original: + +`tldr -p linux pinky` diff --git a/pages.pt_BR/osx/gpr.md b/pages.pt_BR/osx/gpr.md new file mode 100644 index 0000000000..e9e6a08f41 --- /dev/null +++ b/pages.pt_BR/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> Este comando é um pseudônimo de `-p linux pr`. + +- Ver documentação sobre o comando original: + +`tldr -p linux pr` diff --git a/pages.pt_BR/osx/gprintenv.md b/pages.pt_BR/osx/gprintenv.md new file mode 100644 index 0000000000..967f265079 --- /dev/null +++ b/pages.pt_BR/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> Este comando é um pseudônimo de `-p linux printenv`. + +- Ver documentação sobre o comando original: + +`tldr -p linux printenv` diff --git a/pages.pt_BR/osx/gprintf.md b/pages.pt_BR/osx/gprintf.md new file mode 100644 index 0000000000..7d8e37fb73 --- /dev/null +++ b/pages.pt_BR/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> Este comando é um pseudônimo de `-p linux printf`. + +- Ver documentação sobre o comando original: + +`tldr -p linux printf` diff --git a/pages.pt_BR/osx/gptx.md b/pages.pt_BR/osx/gptx.md new file mode 100644 index 0000000000..f4c2128cce --- /dev/null +++ b/pages.pt_BR/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> Este comando é um pseudônimo de `-p linux ptx`. + +- Ver documentação sobre o comando original: + +`tldr -p linux ptx` diff --git a/pages.pt_BR/osx/gpwd.md b/pages.pt_BR/osx/gpwd.md new file mode 100644 index 0000000000..1d15326eba --- /dev/null +++ b/pages.pt_BR/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> Este comando é um pseudônimo de `-p linux pwd`. + +- Ver documentação sobre o comando original: + +`tldr -p linux pwd` diff --git a/pages.pt_BR/osx/grcp.md b/pages.pt_BR/osx/grcp.md new file mode 100644 index 0000000000..112f4a9f77 --- /dev/null +++ b/pages.pt_BR/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> Este comando é um pseudônimo de `-p linux rcp`. + +- Ver documentação sobre o comando original: + +`tldr -p linux rcp` diff --git a/pages.pt_BR/osx/greadlink.md b/pages.pt_BR/osx/greadlink.md new file mode 100644 index 0000000000..b6d868296d --- /dev/null +++ b/pages.pt_BR/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> Este comando é um pseudônimo de `-p linux readlink`. + +- Ver documentação sobre o comando original: + +`tldr -p linux readlink` diff --git a/pages.pt_BR/osx/grealpath.md b/pages.pt_BR/osx/grealpath.md new file mode 100644 index 0000000000..41f920860b --- /dev/null +++ b/pages.pt_BR/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> Este comando é um pseudônimo de `-p linux realpath`. + +- Ver documentação sobre o comando original: + +`tldr -p linux realpath` diff --git a/pages.pt_BR/osx/grexec.md b/pages.pt_BR/osx/grexec.md new file mode 100644 index 0000000000..425e239083 --- /dev/null +++ b/pages.pt_BR/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> Este comando é um pseudônimo de `-p linux rexec`. + +- Ver documentação sobre o comando original: + +`tldr -p linux rexec` diff --git a/pages.pt_BR/osx/grlogin.md b/pages.pt_BR/osx/grlogin.md new file mode 100644 index 0000000000..4926833aa3 --- /dev/null +++ b/pages.pt_BR/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> Este comando é um pseudônimo de `-p linux rlogin`. + +- Ver documentação sobre o comando original: + +`tldr -p linux rlogin` diff --git a/pages.pt_BR/osx/grm.md b/pages.pt_BR/osx/grm.md new file mode 100644 index 0000000000..18a1ff5d75 --- /dev/null +++ b/pages.pt_BR/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> Este comando é um pseudônimo de `-p linux rm`. + +- Ver documentação sobre o comando original: + +`tldr -p linux rm` diff --git a/pages.pt_BR/osx/grmdir.md b/pages.pt_BR/osx/grmdir.md new file mode 100644 index 0000000000..58c29a9ccd --- /dev/null +++ b/pages.pt_BR/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> Este comando é um pseudônimo de `-p linux rmdir`. + +- Ver documentação sobre o comando original: + +`tldr -p linux rmdir` diff --git a/pages.pt_BR/osx/grsh.md b/pages.pt_BR/osx/grsh.md new file mode 100644 index 0000000000..131550b5a4 --- /dev/null +++ b/pages.pt_BR/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> Este comando é um pseudônimo de `-p linux rsh`. + +- Ver documentação sobre o comando original: + +`tldr -p linux rsh` diff --git a/pages.pt_BR/osx/gruncon.md b/pages.pt_BR/osx/gruncon.md new file mode 100644 index 0000000000..a239ec395e --- /dev/null +++ b/pages.pt_BR/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> Este comando é um pseudônimo de `-p linux runcon`. + +- Ver documentação sobre o comando original: + +`tldr -p linux runcon` diff --git a/pages.pt_BR/osx/gsed.md b/pages.pt_BR/osx/gsed.md new file mode 100644 index 0000000000..a8ca48d4a0 --- /dev/null +++ b/pages.pt_BR/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> Este comando é um pseudônimo de `-p linux sed`. + +- Ver documentação sobre o comando original: + +`tldr -p linux sed` diff --git a/pages.pt_BR/osx/gseq.md b/pages.pt_BR/osx/gseq.md new file mode 100644 index 0000000000..f48e1f195a --- /dev/null +++ b/pages.pt_BR/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> Este comando é um pseudônimo de `-p linux seq`. + +- Ver documentação sobre o comando original: + +`tldr -p linux seq` diff --git a/pages.pt_BR/osx/gsha1sum.md b/pages.pt_BR/osx/gsha1sum.md new file mode 100644 index 0000000000..12a6969b06 --- /dev/null +++ b/pages.pt_BR/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> Este comando é um pseudônimo de `-p linux sha1sum`. + +- Ver documentação sobre o comando original: + +`tldr -p linux sha1sum` diff --git a/pages.pt_BR/osx/gsha224sum.md b/pages.pt_BR/osx/gsha224sum.md new file mode 100644 index 0000000000..abc58de067 --- /dev/null +++ b/pages.pt_BR/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> Este comando é um pseudônimo de `-p linux sha224sum`. + +- Ver documentação sobre o comando original: + +`tldr -p linux sha224sum` diff --git a/pages.pt_BR/osx/gsha256sum.md b/pages.pt_BR/osx/gsha256sum.md new file mode 100644 index 0000000000..0d04181571 --- /dev/null +++ b/pages.pt_BR/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> Este comando é um pseudônimo de `-p linux sha256sum`. + +- Ver documentação sobre o comando original: + +`tldr -p linux sha256sum` diff --git a/pages.pt_BR/osx/gsha384sum.md b/pages.pt_BR/osx/gsha384sum.md new file mode 100644 index 0000000000..2ffe8b0671 --- /dev/null +++ b/pages.pt_BR/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> Este comando é um pseudônimo de `-p linux sha384sum`. + +- Ver documentação sobre o comando original: + +`tldr -p linux sha384sum` diff --git a/pages.pt_BR/osx/gsha512sum.md b/pages.pt_BR/osx/gsha512sum.md new file mode 100644 index 0000000000..ca12dfbebc --- /dev/null +++ b/pages.pt_BR/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> Este comando é um pseudônimo de `-p linux sha512sum`. + +- Ver documentação sobre o comando original: + +`tldr -p linux sha512sum` diff --git a/pages.pt_BR/osx/gshred.md b/pages.pt_BR/osx/gshred.md new file mode 100644 index 0000000000..098bf85629 --- /dev/null +++ b/pages.pt_BR/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> Este comando é um pseudônimo de `-p linux shred`. + +- Ver documentação sobre o comando original: + +`tldr -p linux shred` diff --git a/pages.pt_BR/osx/gshuf.md b/pages.pt_BR/osx/gshuf.md new file mode 100644 index 0000000000..be5cc93c1d --- /dev/null +++ b/pages.pt_BR/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> Este comando é um pseudônimo de `-p linux shuf`. + +- Ver documentação sobre o comando original: + +`tldr -p linux shuf` diff --git a/pages.pt_BR/osx/gsleep.md b/pages.pt_BR/osx/gsleep.md new file mode 100644 index 0000000000..a0f30b408b --- /dev/null +++ b/pages.pt_BR/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> Este comando é um pseudônimo de `-p linux sleep`. + +- Ver documentação sobre o comando original: + +`tldr -p linux sleep` diff --git a/pages.pt_BR/osx/gsort.md b/pages.pt_BR/osx/gsort.md new file mode 100644 index 0000000000..81c400f237 --- /dev/null +++ b/pages.pt_BR/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> Este comando é um pseudônimo de `-p linux sort`. + +- Ver documentação sobre o comando original: + +`tldr -p linux sort` diff --git a/pages.pt_BR/osx/gsplit.md b/pages.pt_BR/osx/gsplit.md new file mode 100644 index 0000000000..de8f4a73f7 --- /dev/null +++ b/pages.pt_BR/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> Este comando é um pseudônimo de `-p linux split`. + +- Ver documentação sobre o comando original: + +`tldr -p linux split` diff --git a/pages.pt_BR/osx/gstat.md b/pages.pt_BR/osx/gstat.md new file mode 100644 index 0000000000..92168492c0 --- /dev/null +++ b/pages.pt_BR/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> Este comando é um pseudônimo de `-p linux stat`. + +- Ver documentação sobre o comando original: + +`tldr -p linux stat` diff --git a/pages.pt_BR/osx/gstdbuf.md b/pages.pt_BR/osx/gstdbuf.md new file mode 100644 index 0000000000..5796d2f381 --- /dev/null +++ b/pages.pt_BR/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> Este comando é um pseudônimo de `-p linux stdbuf`. + +- Ver documentação sobre o comando original: + +`tldr -p linux stdbuf` diff --git a/pages.pt_BR/osx/gstty.md b/pages.pt_BR/osx/gstty.md new file mode 100644 index 0000000000..350b3e093b --- /dev/null +++ b/pages.pt_BR/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> Este comando é um pseudônimo de `-p linux stty`. + +- Ver documentação sobre o comando original: + +`tldr -p linux stty` diff --git a/pages.pt_BR/osx/gsum.md b/pages.pt_BR/osx/gsum.md new file mode 100644 index 0000000000..4c16aef37d --- /dev/null +++ b/pages.pt_BR/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> Este comando é um pseudônimo de `-p linux sum`. + +- Ver documentação sobre o comando original: + +`tldr -p linux sum` diff --git a/pages.pt_BR/osx/gsync.md b/pages.pt_BR/osx/gsync.md new file mode 100644 index 0000000000..c21dba02b9 --- /dev/null +++ b/pages.pt_BR/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> Este comando é um pseudônimo de `-p linux sync`. + +- Ver documentação sobre o comando original: + +`tldr -p linux sync` diff --git a/pages.pt_BR/osx/gtac.md b/pages.pt_BR/osx/gtac.md new file mode 100644 index 0000000000..2350d65f94 --- /dev/null +++ b/pages.pt_BR/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> Este comando é um pseudônimo de `-p linux tac`. + +- Ver documentação sobre o comando original: + +`tldr -p linux tac` diff --git a/pages.pt_BR/osx/gtail.md b/pages.pt_BR/osx/gtail.md new file mode 100644 index 0000000000..0dff2ac915 --- /dev/null +++ b/pages.pt_BR/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> Este comando é um pseudônimo de `-p linux tail`. + +- Ver documentação sobre o comando original: + +`tldr -p linux tail` diff --git a/pages.pt_BR/osx/gtalk.md b/pages.pt_BR/osx/gtalk.md new file mode 100644 index 0000000000..e72c39c1c9 --- /dev/null +++ b/pages.pt_BR/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> Este comando é um pseudônimo de `-p linux talk`. + +- Ver documentação sobre o comando original: + +`tldr -p linux talk` diff --git a/pages.pt_BR/osx/gtar.md b/pages.pt_BR/osx/gtar.md new file mode 100644 index 0000000000..014311445a --- /dev/null +++ b/pages.pt_BR/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> Este comando é um pseudônimo de `-p linux tar`. + +- Ver documentação sobre o comando original: + +`tldr -p linux tar` diff --git a/pages.pt_BR/osx/gtee.md b/pages.pt_BR/osx/gtee.md new file mode 100644 index 0000000000..ae9d02665b --- /dev/null +++ b/pages.pt_BR/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> Este comando é um pseudônimo de `-p linux tee`. + +- Ver documentação sobre o comando original: + +`tldr -p linux tee` diff --git a/pages.pt_BR/osx/gtelnet.md b/pages.pt_BR/osx/gtelnet.md new file mode 100644 index 0000000000..a850aa9f67 --- /dev/null +++ b/pages.pt_BR/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> Este comando é um pseudônimo de `-p linux telnet`. + +- Ver documentação sobre o comando original: + +`tldr -p linux telnet` diff --git a/pages.pt_BR/osx/gtest.md b/pages.pt_BR/osx/gtest.md new file mode 100644 index 0000000000..6ba1920eb4 --- /dev/null +++ b/pages.pt_BR/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> Este comando é um pseudônimo de `-p linux test`. + +- Ver documentação sobre o comando original: + +`tldr -p linux test` diff --git a/pages.pt_BR/osx/gtftp.md b/pages.pt_BR/osx/gtftp.md new file mode 100644 index 0000000000..db11b09c1a --- /dev/null +++ b/pages.pt_BR/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> Este comando é um pseudônimo de `-p linux tftp`. + +- Ver documentação sobre o comando original: + +`tldr -p linux tftp` diff --git a/pages.pt_BR/osx/gtime.md b/pages.pt_BR/osx/gtime.md new file mode 100644 index 0000000000..4c738f012f --- /dev/null +++ b/pages.pt_BR/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> Este comando é um pseudônimo de `-p linux time`. + +- Ver documentação sobre o comando original: + +`tldr -p linux time` diff --git a/pages.pt_BR/osx/gtimeout.md b/pages.pt_BR/osx/gtimeout.md new file mode 100644 index 0000000000..4c968909a4 --- /dev/null +++ b/pages.pt_BR/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> Este comando é um pseudônimo de `-p linux timeout`. + +- Ver documentação sobre o comando original: + +`tldr -p linux timeout` diff --git a/pages.pt_BR/osx/gtouch.md b/pages.pt_BR/osx/gtouch.md new file mode 100644 index 0000000000..d1f7d542fa --- /dev/null +++ b/pages.pt_BR/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> Este comando é um pseudônimo de `-p linux touch`. + +- Ver documentação sobre o comando original: + +`tldr -p linux touch` diff --git a/pages.pt_BR/osx/gtr.md b/pages.pt_BR/osx/gtr.md new file mode 100644 index 0000000000..8eb951dcd5 --- /dev/null +++ b/pages.pt_BR/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> Este comando é um pseudônimo de `-p linux tr`. + +- Ver documentação sobre o comando original: + +`tldr -p linux tr` diff --git a/pages.pt_BR/osx/gtraceroute.md b/pages.pt_BR/osx/gtraceroute.md new file mode 100644 index 0000000000..cdf332da90 --- /dev/null +++ b/pages.pt_BR/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> Este comando é um pseudônimo de `-p linux traceroute`. + +- Ver documentação sobre o comando original: + +`tldr -p linux traceroute` diff --git a/pages.pt_BR/osx/gtrue.md b/pages.pt_BR/osx/gtrue.md new file mode 100644 index 0000000000..6adfa0f0a2 --- /dev/null +++ b/pages.pt_BR/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> Este comando é um pseudônimo de `-p linux true`. + +- Ver documentação sobre o comando original: + +`tldr -p linux true` diff --git a/pages.pt_BR/osx/gtruncate.md b/pages.pt_BR/osx/gtruncate.md new file mode 100644 index 0000000000..8a71737eab --- /dev/null +++ b/pages.pt_BR/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> Este comando é um pseudônimo de `-p linux truncate`. + +- Ver documentação sobre o comando original: + +`tldr -p linux truncate` diff --git a/pages.pt_BR/osx/gtsort.md b/pages.pt_BR/osx/gtsort.md new file mode 100644 index 0000000000..56a66ba342 --- /dev/null +++ b/pages.pt_BR/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> Este comando é um pseudônimo de `-p linux tsort`. + +- Ver documentação sobre o comando original: + +`tldr -p linux tsort` diff --git a/pages.pt_BR/osx/gtty.md b/pages.pt_BR/osx/gtty.md new file mode 100644 index 0000000000..0781255d1d --- /dev/null +++ b/pages.pt_BR/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> Este comando é um pseudônimo de `-p linux tty`. + +- Ver documentação sobre o comando original: + +`tldr -p linux tty` diff --git a/pages.pt_BR/osx/guname.md b/pages.pt_BR/osx/guname.md new file mode 100644 index 0000000000..f4fc403d77 --- /dev/null +++ b/pages.pt_BR/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> Este comando é um pseudônimo de `-p linux uname`. + +- Ver documentação sobre o comando original: + +`tldr -p linux uname` diff --git a/pages.pt_BR/osx/gunexpand.md b/pages.pt_BR/osx/gunexpand.md new file mode 100644 index 0000000000..d61d51eb20 --- /dev/null +++ b/pages.pt_BR/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> Este comando é um pseudônimo de `-p linux unexpand`. + +- Ver documentação sobre o comando original: + +`tldr -p linux unexpand` diff --git a/pages.pt_BR/osx/guniq.md b/pages.pt_BR/osx/guniq.md new file mode 100644 index 0000000000..83c03b112c --- /dev/null +++ b/pages.pt_BR/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> Este comando é um pseudônimo de `-p linux uniq`. + +- Ver documentação sobre o comando original: + +`tldr -p linux uniq` diff --git a/pages.pt_BR/osx/gunits.md b/pages.pt_BR/osx/gunits.md new file mode 100644 index 0000000000..f74d38cea8 --- /dev/null +++ b/pages.pt_BR/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> Este comando é um pseudônimo de `-p linux units`. + +- Ver documentação sobre o comando original: + +`tldr -p linux units` diff --git a/pages.pt_BR/osx/gunlink.md b/pages.pt_BR/osx/gunlink.md new file mode 100644 index 0000000000..9327a079f6 --- /dev/null +++ b/pages.pt_BR/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> Este comando é um pseudônimo de `-p linux unlink`. + +- Ver documentação sobre o comando original: + +`tldr -p linux unlink` diff --git a/pages.pt_BR/osx/gupdatedb.md b/pages.pt_BR/osx/gupdatedb.md new file mode 100644 index 0000000000..b667991336 --- /dev/null +++ b/pages.pt_BR/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> Este comando é um pseudônimo de `-p linux updatedb`. + +- Ver documentação sobre o comando original: + +`tldr -p linux updatedb` diff --git a/pages.pt_BR/osx/guptime.md b/pages.pt_BR/osx/guptime.md new file mode 100644 index 0000000000..c4f56547df --- /dev/null +++ b/pages.pt_BR/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> Este comando é um pseudônimo de `-p linux uptime`. + +- Ver documentação sobre o comando original: + +`tldr -p linux uptime` diff --git a/pages.pt_BR/osx/gusers.md b/pages.pt_BR/osx/gusers.md new file mode 100644 index 0000000000..7cbf287649 --- /dev/null +++ b/pages.pt_BR/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> Este comando é um pseudônimo de `-p linux users`. + +- Ver documentação sobre o comando original: + +`tldr -p linux users` diff --git a/pages.pt_BR/osx/gvdir.md b/pages.pt_BR/osx/gvdir.md new file mode 100644 index 0000000000..af91450e45 --- /dev/null +++ b/pages.pt_BR/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> Este comando é um pseudônimo de `-p linux vdir`. + +- Ver documentação sobre o comando original: + +`tldr -p linux vdir` diff --git a/pages.pt_BR/osx/gwc.md b/pages.pt_BR/osx/gwc.md new file mode 100644 index 0000000000..543f9ae118 --- /dev/null +++ b/pages.pt_BR/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> Este comando é um pseudônimo de `-p linux wc`. + +- Ver documentação sobre o comando original: + +`tldr -p linux wc` diff --git a/pages.pt_BR/osx/gwhich.md b/pages.pt_BR/osx/gwhich.md new file mode 100644 index 0000000000..0982d09c50 --- /dev/null +++ b/pages.pt_BR/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> Este comando é um pseudônimo de `-p linux which`. + +- Ver documentação sobre o comando original: + +`tldr -p linux which` diff --git a/pages.pt_BR/osx/gwho.md b/pages.pt_BR/osx/gwho.md new file mode 100644 index 0000000000..9d91b611d9 --- /dev/null +++ b/pages.pt_BR/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> Este comando é um pseudônimo de `-p linux who`. + +- Ver documentação sobre o comando original: + +`tldr -p linux who` diff --git a/pages.pt_BR/osx/gwhoami.md b/pages.pt_BR/osx/gwhoami.md new file mode 100644 index 0000000000..0c86cdd287 --- /dev/null +++ b/pages.pt_BR/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> Este comando é um pseudônimo de `-p linux whoami`. + +- Ver documentação sobre o comando original: + +`tldr -p linux whoami` diff --git a/pages.pt_BR/osx/gwhois.md b/pages.pt_BR/osx/gwhois.md new file mode 100644 index 0000000000..49fddb982e --- /dev/null +++ b/pages.pt_BR/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> Este comando é um pseudônimo de `-p linux whois`. + +- Ver documentação sobre o comando original: + +`tldr -p linux whois` diff --git a/pages.pt_BR/osx/gxargs.md b/pages.pt_BR/osx/gxargs.md new file mode 100644 index 0000000000..4e617ceb8f --- /dev/null +++ b/pages.pt_BR/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> Este comando é um pseudônimo de `-p linux xargs`. + +- Ver documentação sobre o comando original: + +`tldr -p linux xargs` diff --git a/pages.pt_BR/osx/gyes.md b/pages.pt_BR/osx/gyes.md new file mode 100644 index 0000000000..2f8b09c965 --- /dev/null +++ b/pages.pt_BR/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> Este comando é um pseudônimo de `-p linux yes`. + +- Ver documentação sobre o comando original: + +`tldr -p linux yes` diff --git a/pages.pt_BR/osx/launchd.md b/pages.pt_BR/osx/launchd.md new file mode 100644 index 0000000000..9c31c05c29 --- /dev/null +++ b/pages.pt_BR/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> Este comando é um pseudônimo de `launchctl`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr launchctl` diff --git a/pages.pt_BR/osx/xcodes-runtimes.md b/pages.pt_BR/osx/xcodes-runtimes.md new file mode 100644 index 0000000000..13cfb5ceea --- /dev/null +++ b/pages.pt_BR/osx/xcodes-runtimes.md @@ -0,0 +1,16 @@ +# xcodes runtimes + +> Gerencia runtimes do Simulador Xcode. +> Mais informações: . + +- Lista todos os runtimes do Simulador disponíveis: + +`xcodes runtimes --include-betas` + +- Baixa um runtime do Simulador: + +`xcodes runtimes download {{nome-do-runtime}}` + +- Baixa e instala um runtime do Simulador: + +`xcodes runtimes install {{nome-do-runtime}}` diff --git a/pages.pt_BR/osx/xcodes.md b/pages.pt_BR/osx/xcodes.md new file mode 100644 index 0000000000..192023b2b1 --- /dev/null +++ b/pages.pt_BR/osx/xcodes.md @@ -0,0 +1,29 @@ +# xcodes + +> Baixe, instale e gerencie várias versões do Xcode. +> Veja também: `xcodes runtimes`. +> Mais informações: . + +- Lista todas as versões do Xcode instaladas: + +`xcodes installed` + +- Lista todas as versões do Xcode disponíveis: + +`xcodes list` + +- Seleciona uma versão do Xcode especificando o número da versão ou um caminho: + +`xcodes select {{versao-do-xcode|caminho/para/Xcode.app}}` + +- Baixa e instala uma versão específica do Xcode: + +`xcodes install {{versao-do-xcode}}` + +- Baixa, instala e seleciona a versão mais recente do Xcode: + +`xcodes install --latest --select` + +- Baixa uma versão específica do Xcode para um diretório específico sem instalá-la: + +`xcodes download {{versao-do-xcode}} --directory {{caminho/para/diretorio}}` diff --git a/pages.pt_BR/windows/chrome.md b/pages.pt_BR/windows/chrome.md new file mode 100644 index 0000000000..e378f8439b --- /dev/null +++ b/pages.pt_BR/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> Este comando é um pseudônimo de `chromium`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr chromium` diff --git a/pages.pt_BR/windows/cpush.md b/pages.pt_BR/windows/cpush.md new file mode 100644 index 0000000000..cbff922ab3 --- /dev/null +++ b/pages.pt_BR/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> Este comando é um pseudônimo de `choco-push`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr choco-push` diff --git a/pages.pt_BR/windows/curl.md b/pages.pt_BR/windows/curl.md new file mode 100644 index 0000000000..a891ea8562 --- /dev/null +++ b/pages.pt_BR/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> Este comando é um pseudônimo de `curl -p common`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr curl -p common` diff --git a/pages.pt_BR/windows/iwr.md b/pages.pt_BR/windows/iwr.md new file mode 100644 index 0000000000..6f9b79fe54 --- /dev/null +++ b/pages.pt_BR/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> Este comando é um pseudônimo de `invoke-webrequest`. + +- Ver documentação sobre o comando original: + +`tldr invoke-webrequest` diff --git a/pages.pt_BR/windows/pwsh-where.md b/pages.pt_BR/windows/pwsh-where.md new file mode 100644 index 0000000000..da3ecb2363 --- /dev/null +++ b/pages.pt_BR/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> Este comando é um pseudônimo de `Where-Object`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr Where-Object` diff --git a/pages.pt_BR/windows/rd.md b/pages.pt_BR/windows/rd.md new file mode 100644 index 0000000000..64dfbb7810 --- /dev/null +++ b/pages.pt_BR/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> Este comando é um pseudônimo de `rmdir`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr rmdir` diff --git a/pages.pt_BR/windows/sls.md b/pages.pt_BR/windows/sls.md new file mode 100644 index 0000000000..0a49ea1fe7 --- /dev/null +++ b/pages.pt_BR/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> Este comando é um pseudônimo de `where-object`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr where-object` diff --git a/pages.pt_BR/windows/wget.md b/pages.pt_BR/windows/wget.md new file mode 100644 index 0000000000..cf848114c0 --- /dev/null +++ b/pages.pt_BR/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> Este comando é um pseudônimo de `wget -p common`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr wget -p common` diff --git a/pages.pt_PT/android/bugreport.md b/pages.pt_PT/android/bugreport.md index 11007255b1..b546fbcfb0 100644 --- a/pages.pt_PT/android/bugreport.md +++ b/pages.pt_PT/android/bugreport.md @@ -2,7 +2,7 @@ > Mostra um relatório de bugs do Android. > Este comando só pode ser utilizado com a `adb shell`. -> Mais informações: . +> Mais informações: . - Mostrar um relatório completo de bugs de um dispositivo Android: diff --git a/pages.pt_PT/android/bugreportz.md b/pages.pt_PT/android/bugreportz.md index 8df6adb658..098067cd90 100644 --- a/pages.pt_PT/android/bugreportz.md +++ b/pages.pt_PT/android/bugreportz.md @@ -2,7 +2,7 @@ > Gera um relatório de bugs do Android em formato .zip. > Este comando só pode ser utilizado com a `adb shell`. -> Mais informações: . +> Mais informações: . - Mostrar um relatório completo de bugs de um dispositivo Android em formato .zip: diff --git a/pages.pt_PT/android/cmd.md b/pages.pt_PT/android/cmd.md index b79c4aa332..c9cd21d57c 100644 --- a/pages.pt_PT/android/cmd.md +++ b/pages.pt_PT/android/cmd.md @@ -1,7 +1,7 @@ # cmd > Gestor de serviços (service manager) do Android. -> Mais informações: . +> Mais informações: . - Listar todos os serviços em execução: diff --git a/pages.pt_PT/common/7z.md b/pages.pt_PT/common/7z.md new file mode 100644 index 0000000000..5b5f3e4f1d --- /dev/null +++ b/pages.pt_PT/common/7z.md @@ -0,0 +1,36 @@ +# 7z + +> Compactador de arquivos com uma alta taxa de compressão. +> Mais informação: . + +- Adicionar um ficheiro ou diretório a um novo ou existente arquivo: + +`7z a {{diretório/arquivo_compactado.7z}} {{diretório/ficheiro_ou_diretório}}` + +- Encripa um arquivo existente (incluindo filenames): + +`7z a {{diretório/ficheiro_encriptado.7z}} -p{{palavra-passe}} -mhe=on {{diretório/arquivo_compactado.7z}}` + +- Descompactar um arquivo mantendo a estrutura de diretórios original: + +`7z x {{diretório/arquivo_compactado.7z}}` + +- Descompactar um arquivo para um diretório especificado pelo utilizador: + +`7z x {{diretório/arquivo_compactado.7z}} -o{{localização/do/directório}}` + +- Descompactar um arquivo para a saída padrão (stdout): + +`7z x {{diretório/arquivo_compactado.7z}} -so` + +- Compactar utilizando um tipo específico de arquivamento/compressão: + +`7z a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{diretório/arquivo_compactado.7z}} {{diretório/ficheiro_ou_diretório}}` + +- Listar os conteúdos de um arquivo: + +`7z l {{diretório/arquivo_compactado.7z}}` + +- Listar todos os tipos de arquivamento/compressão disponíveis: + +`7z i` diff --git a/pages.pt_PT/common/7za.md b/pages.pt_PT/common/7za.md new file mode 100644 index 0000000000..1f863fa4f8 --- /dev/null +++ b/pages.pt_PT/common/7za.md @@ -0,0 +1,37 @@ +# 7za + +> Compactador de arquivos com uma alta taxa de compressão. +> Semelhante to '7z', a principal diferença é que este suporta menos tipos de arquivamento/compressão. +> Mais informações: . + +- Compactar um ficheiro ou diretório: + +`7za a {{diretório/arquivo_compactado.7z}} {{diretório/ficheiro_ou_diretório}}` + +- Encriptar um arquivo existente (incluindo os nomes dos ficheiros): + +`7za a {{diretório/ficheiro_encriptado.7z}} -p{{palavra-passe}} -mhe={{on}} {{diretório/arquivo_compactado.7z}}` + +- Descompactar um arquivo mantendo a estrutura de diretórios original: + +`7za x {{diretório/arquivo_compactado.7z}}` + +- Descompactar um arquivo para uma diretório especificado pelo utilizador: + +`7za x {{diretório/arquivo_compactado.7z}} -o{{localização/do/diretório}}` + +- Descompactar um arquivo para a saída padrão (stdout): + +`7za x {{diretório/arquivo_compactado.7z}} -so` + +- Compactar utilizando um tipo específico de arquivamento/compressão: + +`7za a -t{{7z|bzip2|gzip|lzip|tar|...}} {{diretório/arquivo_compactado.7z}} {{diretório/ficheiro_ou_diretório}}` + +- Listar os conteúdos de um arquivo: + +`7za l {{diretório/arquivo_compactado.7z}}` + +- Listar todos os tipos de arquivamento/compressão disponíveis: + +`7za i` diff --git a/pages.pt_PT/common/7zr.md b/pages.pt_PT/common/7zr.md new file mode 100644 index 0000000000..9ce1b4adb6 --- /dev/null +++ b/pages.pt_PT/common/7zr.md @@ -0,0 +1,33 @@ +# 7z + +> Compactador de arquivos com uma alta taxa de compressão. +> Semelhante ao '7z', com a diferença que suporta apenas ficheiros '.7z'. +> Mais informações: . + +- Adicionar um ficheiro ou diretório a um novo ou existente arquivo: + +`7z a {{diretório/arquivo_compactado.7z}} {{diretório/ficheiro_ou_diretório}}` + +- Encripa um arquivo existente (incluindo filenames): + +`7z a {{diretório/ficheiro_encriptado.7z}} -p{{palavra-passe}} -mhe=on {{diretório/arquivo_compactado.7z}}` + +- Descompactar um arquivo mantendo a estrutura de diretórios original: + +`7z x {{diretório/arquivo_compactado.7z}}` + +- Descompactar um arquivo para um diretório especificado pelo utilizador: + +`7z x {{diretório/arquivo_compactado.7z}} -o{{localização/do/directório}}` + +- Descompactar um arquivo para a saída padrão (stdout): + +`7z x {{diretório/arquivo_compactado.7z}} -so` + +- Listar os conteúdos de um arquivo: + +`7z l {{diretório/arquivo_compactado.7z}}` + +- Listar todos os tipos de arquivamento/compressão disponíveis: + +`7z i` diff --git a/pages.pt_PT/common/aapt.md b/pages.pt_PT/common/aapt.md new file mode 100644 index 0000000000..c53f56fdda --- /dev/null +++ b/pages.pt_PT/common/aapt.md @@ -0,0 +1,17 @@ +# aapt + +> Android Asset Packaging Tool. +> Compila e empacotar os recursos de uma aplicação Android." +> Mais informação: . + +- Listar os ficheiros contidos num arquivo APK: + +`aapt list {{path/to/app.apk}}` + +- Exibir os metadados da aplicação (versão, permissões, etc.): + +`aapt dump badging {{path/to/app.apk}}` + +- Criar um novo arquivo APK com os arquivos do directório especificado: + +`aapt package -F {{path/to/app.apk}} {{path/to/directory}}` diff --git a/pages.pt_PT/common/bundler.md b/pages.pt_PT/common/bundler.md new file mode 100644 index 0000000000..e0b87edf06 --- /dev/null +++ b/pages.pt_PT/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> Este comando é um alias de `bundle`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr bundle` diff --git a/pages.pt_PT/common/clamav.md b/pages.pt_PT/common/clamav.md new file mode 100644 index 0000000000..137f37bf57 --- /dev/null +++ b/pages.pt_PT/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> Este comando é um alias de `clamdscan`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr clamdscan` diff --git a/pages.pt_PT/common/clang-cpp.md b/pages.pt_PT/common/clang-cpp.md new file mode 100644 index 0000000000..69f53e4e0d --- /dev/null +++ b/pages.pt_PT/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> Este comando é um alias de `clang++`. + +- Ver documentação do comando original: + +`tldr clang++` diff --git a/pages.pt_PT/common/clojure.md b/pages.pt_PT/common/clojure.md new file mode 100644 index 0000000000..eb78c6d966 --- /dev/null +++ b/pages.pt_PT/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> Este comando é um alias de `clj`. + +- Ver documentação do comando original: + +`tldr clj` diff --git a/pages.pt_PT/common/cola.md b/pages.pt_PT/common/cola.md new file mode 100644 index 0000000000..6c548d0aa6 --- /dev/null +++ b/pages.pt_PT/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> Este comando é um alias de `git-cola`. + +- Ver documentação do comando original: + +`tldr git-cola` diff --git a/pages.pt_PT/common/cron.md b/pages.pt_PT/common/cron.md new file mode 100644 index 0000000000..11e9764149 --- /dev/null +++ b/pages.pt_PT/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> Este comando é um alias de `crontab`. + +- Ver documentação do comando original: + +`tldr crontab` diff --git a/pages.pt_PT/common/fossil-ci.md b/pages.pt_PT/common/fossil-ci.md new file mode 100644 index 0000000000..3c0af04052 --- /dev/null +++ b/pages.pt_PT/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> Este comando é um alias de `fossil-commit`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr fossil-commit` diff --git a/pages.pt_PT/common/fossil-delete.md b/pages.pt_PT/common/fossil-delete.md new file mode 100644 index 0000000000..278d85c10e --- /dev/null +++ b/pages.pt_PT/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> Este comando é um alias de `fossil rm`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr fossil rm` diff --git a/pages.pt_PT/common/fossil-forget.md b/pages.pt_PT/common/fossil-forget.md new file mode 100644 index 0000000000..afc1061f4f --- /dev/null +++ b/pages.pt_PT/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> Este comando é um alias de `fossil rm`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr fossil rm` diff --git a/pages.pt_PT/common/fossil-new.md b/pages.pt_PT/common/fossil-new.md new file mode 100644 index 0000000000..9a0661332b --- /dev/null +++ b/pages.pt_PT/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> Este comando é um alias de `fossil-init`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr fossil-init` diff --git a/pages.pt_PT/common/gh-cs.md b/pages.pt_PT/common/gh-cs.md new file mode 100644 index 0000000000..20baefabba --- /dev/null +++ b/pages.pt_PT/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> Este comando é um alias de `gh-codespace`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr gh-codespace` diff --git a/pages.pt_PT/common/gnmic-sub.md b/pages.pt_PT/common/gnmic-sub.md new file mode 100644 index 0000000000..b9e14e8199 --- /dev/null +++ b/pages.pt_PT/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> Este comando é um alias de `gnmic subscribe`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr gnmic subscribe` diff --git a/pages.pt_PT/common/google-chrome.md b/pages.pt_PT/common/google-chrome.md new file mode 100644 index 0000000000..a739ea447e --- /dev/null +++ b/pages.pt_PT/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> Este comando é um alias de `chromium`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr chromium` diff --git a/pages.pt_PT/common/hx.md b/pages.pt_PT/common/hx.md new file mode 100644 index 0000000000..29928b5b10 --- /dev/null +++ b/pages.pt_PT/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> Este comando é um alias de `helix`. + +- Ver documentação do comando original: + +`tldr helix` diff --git a/pages.pt_PT/common/kafkacat.md b/pages.pt_PT/common/kafkacat.md new file mode 100644 index 0000000000..6bbbfe1bf2 --- /dev/null +++ b/pages.pt_PT/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> Este comando é um alias de `kcat`. + +- Ver documentação do comando original: + +`tldr kcat` diff --git a/pages.pt_PT/common/llvm-ar.md b/pages.pt_PT/common/llvm-ar.md new file mode 100644 index 0000000000..7d3c668055 --- /dev/null +++ b/pages.pt_PT/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> Este comando é um alias de `ar`. + +- Ver documentação do comando original: + +`tldr ar` diff --git a/pages.pt_PT/common/llvm-g++.md b/pages.pt_PT/common/llvm-g++.md new file mode 100644 index 0000000000..1be4aa5adc --- /dev/null +++ b/pages.pt_PT/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> Este comando é um alias de `clang++`. + +- Ver documentação do comando original: + +`tldr clang++` diff --git a/pages.pt_PT/common/llvm-gcc.md b/pages.pt_PT/common/llvm-gcc.md new file mode 100644 index 0000000000..1ca4806b1c --- /dev/null +++ b/pages.pt_PT/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> Este comando é um alias de `clang`. + +- Ver documentação do comando original: + +`tldr clang` diff --git a/pages.pt_PT/common/llvm-nm.md b/pages.pt_PT/common/llvm-nm.md new file mode 100644 index 0000000000..bf294ffadb --- /dev/null +++ b/pages.pt_PT/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> Este comando é um alias de `nm`. + +- Ver documentação do comando original: + +`tldr nm` diff --git a/pages.pt_PT/common/llvm-objdump.md b/pages.pt_PT/common/llvm-objdump.md new file mode 100644 index 0000000000..86d220d6f3 --- /dev/null +++ b/pages.pt_PT/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> Este comando é um alias de `objdump`. + +- Ver documentação do comando original: + +`tldr objdump` diff --git a/pages.pt_PT/common/llvm-strings.md b/pages.pt_PT/common/llvm-strings.md new file mode 100644 index 0000000000..148e7641ac --- /dev/null +++ b/pages.pt_PT/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> Este comando é um alias de `strings`. + +- Ver documentação do comando original: + +`tldr strings` diff --git a/pages.pt_PT/common/lzcat.md b/pages.pt_PT/common/lzcat.md new file mode 100644 index 0000000000..42ccc13304 --- /dev/null +++ b/pages.pt_PT/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> Este comando é um alias de `xz`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr xz` diff --git a/pages.pt_PT/common/lzma.md b/pages.pt_PT/common/lzma.md new file mode 100644 index 0000000000..dee9d6bcce --- /dev/null +++ b/pages.pt_PT/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> Este comando é um alias de `xz`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr xz` diff --git a/pages.pt_PT/common/mscore.md b/pages.pt_PT/common/mscore.md new file mode 100644 index 0000000000..db3c1343c5 --- /dev/null +++ b/pages.pt_PT/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> Este comando é um alias de `musescore`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr musescore` diff --git a/pages.pt_PT/common/nm-classic.md b/pages.pt_PT/common/nm-classic.md new file mode 100644 index 0000000000..ae429d3a10 --- /dev/null +++ b/pages.pt_PT/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> Este comando é um alias de `nm`. + +- Ver documentação do comando original: + +`tldr nm` diff --git a/pages.pt_PT/common/ntl.md b/pages.pt_PT/common/ntl.md new file mode 100644 index 0000000000..1493a3e239 --- /dev/null +++ b/pages.pt_PT/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> Este comando é um alias de `netlify`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr netlify` diff --git a/pages.pt_PT/common/pio-init.md b/pages.pt_PT/common/pio-init.md new file mode 100644 index 0000000000..3aeb70a6de --- /dev/null +++ b/pages.pt_PT/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> Este comando é um alias de `pio project`. + +- Ver documentação do comando original: + +`tldr pio project` diff --git a/pages.pt_PT/common/piodebuggdb.md b/pages.pt_PT/common/piodebuggdb.md new file mode 100644 index 0000000000..b0bc373469 --- /dev/null +++ b/pages.pt_PT/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> Este comando é um alias de `pio debug`. + +- Ver documentação do comando original: + +`tldr pio debug` diff --git a/pages.pt_PT/common/platformio.md b/pages.pt_PT/common/platformio.md new file mode 100644 index 0000000000..b1f7b533b4 --- /dev/null +++ b/pages.pt_PT/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> Este comando é um alias de `pio`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr pio` diff --git a/pages.pt_PT/common/ptpython3.md b/pages.pt_PT/common/ptpython3.md new file mode 100644 index 0000000000..772d759a62 --- /dev/null +++ b/pages.pt_PT/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> Este comando é um alias de `ptpython`. + +- Ver documentação do comando original: + +`tldr ptpython` diff --git a/pages.pt_PT/common/python3.md b/pages.pt_PT/common/python3.md new file mode 100644 index 0000000000..90b105e81a --- /dev/null +++ b/pages.pt_PT/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> Este comando é um alias de `python`. + +- Ver documentação do comando original: + +`tldr python` diff --git a/pages.pt_PT/common/r2.md b/pages.pt_PT/common/r2.md new file mode 100644 index 0000000000..d5a2818ced --- /dev/null +++ b/pages.pt_PT/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> Este comando é um alias de `radare2`. + +- Ver documentação do comando original: + +`tldr radare2` diff --git a/pages.pt_PT/common/rcat.md b/pages.pt_PT/common/rcat.md new file mode 100644 index 0000000000..771b16bfdf --- /dev/null +++ b/pages.pt_PT/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> Este comando é um alias de `rc`. + +- Ver documentação do comando original: + +`tldr rc` diff --git a/pages.pt_PT/common/ripgrep.md b/pages.pt_PT/common/ripgrep.md new file mode 100644 index 0000000000..a5623ad3f2 --- /dev/null +++ b/pages.pt_PT/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> Este comando é um alias de `rg`. + +- Ver documentação do comando original: + +`tldr rg` diff --git a/pages.pt_PT/common/tldrl.md b/pages.pt_PT/common/tldrl.md new file mode 100644 index 0000000000..c7d67d577a --- /dev/null +++ b/pages.pt_PT/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> Este comando é um alias de `tldr-lint`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr tldr-lint` diff --git a/pages.pt_PT/common/tlmgr-arch.md b/pages.pt_PT/common/tlmgr-arch.md new file mode 100644 index 0000000000..46584e4cda --- /dev/null +++ b/pages.pt_PT/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> Este comando é um alias de `tlmgr platform`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr tlmgr platform` diff --git a/pages.pt_PT/common/todoman.md b/pages.pt_PT/common/todoman.md new file mode 100644 index 0000000000..faa733d768 --- /dev/null +++ b/pages.pt_PT/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> Este comando é um alias de `todo`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr todo` diff --git a/pages.pt_PT/common/touch.md b/pages.pt_PT/common/touch.md index f48bd16538..b9c5bff9f7 100644 --- a/pages.pt_PT/common/touch.md +++ b/pages.pt_PT/common/touch.md @@ -2,7 +2,7 @@ > Atualizar as timestamps de um ficheiro para a hora atual. > Se o ficheiro não existir, cria um ficheiro vazio, a menos que seja passado o parâmetro -c ou -h. -> Mais informações: . +> Mais informações: . - Criar um novo ficheiro vazio, ou atualizar as timestamps para a hora atual: diff --git a/pages.pt_PT/common/transmission.md b/pages.pt_PT/common/transmission.md new file mode 100644 index 0000000000..9a4e0dfd6f --- /dev/null +++ b/pages.pt_PT/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> Este comando é um alias de `transmission-daemon`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr transmission-daemon` diff --git a/pages.pt_PT/common/unlzma.md b/pages.pt_PT/common/unlzma.md new file mode 100644 index 0000000000..d977bc5bf0 --- /dev/null +++ b/pages.pt_PT/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> Este comando é um alias de `xz`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr xz` diff --git a/pages.pt_PT/common/unxz.md b/pages.pt_PT/common/unxz.md new file mode 100644 index 0000000000..f2b0163f19 --- /dev/null +++ b/pages.pt_PT/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> Este comando é um alias de `xz`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr xz` diff --git a/pages.pt_PT/common/vi.md b/pages.pt_PT/common/vi.md new file mode 100644 index 0000000000..c23557a385 --- /dev/null +++ b/pages.pt_PT/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> Este comando é um alias de `vim`. + +- Ver documentação do comando original: + +`tldr vim` diff --git a/pages.pt_PT/common/xzcat.md b/pages.pt_PT/common/xzcat.md new file mode 100644 index 0000000000..38b50ff9b1 --- /dev/null +++ b/pages.pt_PT/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> Este comando é um alias de `xz`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr xz` diff --git a/pages.pt_PT/linux/alternatives.md b/pages.pt_PT/linux/alternatives.md new file mode 100644 index 0000000000..a46aa3ec4e --- /dev/null +++ b/pages.pt_PT/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> Este comando é um alias de `update-alternatives`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr update-alternatives` diff --git a/pages.pt_PT/linux/batcat.md b/pages.pt_PT/linux/batcat.md new file mode 100644 index 0000000000..74c66857ff --- /dev/null +++ b/pages.pt_PT/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> Este comando é um alias de `bat`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr bat` diff --git a/pages.pt_PT/linux/bspwm.md b/pages.pt_PT/linux/bspwm.md new file mode 100644 index 0000000000..4dcde6a301 --- /dev/null +++ b/pages.pt_PT/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> Este comando é um alias de `bspc`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr bspc` diff --git a/pages.pt_PT/linux/cc.md b/pages.pt_PT/linux/cc.md new file mode 100644 index 0000000000..e9899784c7 --- /dev/null +++ b/pages.pt_PT/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> Este comando é um alias de `gcc`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr gcc` diff --git a/pages.pt_PT/linux/cgroups.md b/pages.pt_PT/linux/cgroups.md new file mode 100644 index 0000000000..4c2304fa58 --- /dev/null +++ b/pages.pt_PT/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> Este comando é um alias de `cgclassify`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr cgclassify` diff --git a/pages.pt_PT/linux/ip-route-list.md b/pages.pt_PT/linux/ip-route-list.md new file mode 100644 index 0000000000..b079347d5d --- /dev/null +++ b/pages.pt_PT/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> Este comando é um alias de `ip-route-show`. + +- Ver documentação do comando original: + +`tldr ip-route-show` diff --git a/pages.pt_PT/linux/megadl.md b/pages.pt_PT/linux/megadl.md new file mode 100644 index 0000000000..f6fbaa623a --- /dev/null +++ b/pages.pt_PT/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> Este comando é um alias de `megatools-dl`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr megatools-dl` diff --git a/pages.pt_PT/linux/ncal.md b/pages.pt_PT/linux/ncal.md new file mode 100644 index 0000000000..fa6fa3badd --- /dev/null +++ b/pages.pt_PT/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> Este comando é um alias de `cal`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr cal` diff --git a/pages.pt_PT/linux/pacman.md b/pages.pt_PT/linux/pacman.md index bfa853dd41..2c6c765bdd 100644 --- a/pages.pt_PT/linux/pacman.md +++ b/pages.pt_PT/linux/pacman.md @@ -1,7 +1,7 @@ # pacman > Utilitário para gerir pacotes Arch Linux. -> Sub comandos como `pacman sync` tem a sua própria documentação. +> Veja também: `pacman-database`, `pacman-deptest`, `pacman-files`, `pacman-key`, `pacman-mirrors`, `pacman-query`, `pacman-remove`, `pacman-sync`, `pacman-upgrade`. > Mais informações: . - Sincronizar e actualizar todos os pacotes: diff --git a/pages.pt_PT/linux/ubuntu-bug.md b/pages.pt_PT/linux/ubuntu-bug.md new file mode 100644 index 0000000000..b918a80546 --- /dev/null +++ b/pages.pt_PT/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> Este comando é um alias de `apport-bug`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr apport-bug` diff --git a/pages.pt_PT/osx/aa.md b/pages.pt_PT/osx/aa.md new file mode 100644 index 0000000000..b3832b7cb8 --- /dev/null +++ b/pages.pt_PT/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> Este comando é um alias de `yaa`. + +- Ver documentação do comando original: + +`tldr yaa` diff --git a/pages.pt_PT/osx/g[.md b/pages.pt_PT/osx/g[.md new file mode 100644 index 0000000000..53cc73d0a6 --- /dev/null +++ b/pages.pt_PT/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> Este comando é um alias de `-p linux [`. + +- Ver documentação do comando original: + +`tldr -p linux [` diff --git a/pages.pt_PT/osx/gawk.md b/pages.pt_PT/osx/gawk.md new file mode 100644 index 0000000000..41ef4d3ea4 --- /dev/null +++ b/pages.pt_PT/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> Este comando é um alias de `-p linux awk`. + +- Ver documentação do comando original: + +`tldr -p linux awk` diff --git a/pages.pt_PT/osx/gb2sum.md b/pages.pt_PT/osx/gb2sum.md new file mode 100644 index 0000000000..bcc1949c45 --- /dev/null +++ b/pages.pt_PT/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> Este comando é um alias de `-p linux b2sum`. + +- Ver documentação do comando original: + +`tldr -p linux b2sum` diff --git a/pages.pt_PT/osx/gbase32.md b/pages.pt_PT/osx/gbase32.md new file mode 100644 index 0000000000..fffc207ba4 --- /dev/null +++ b/pages.pt_PT/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> Este comando é um alias de `-p linux base32`. + +- Ver documentação do comando original: + +`tldr -p linux base32` diff --git a/pages.pt_PT/osx/gbase64.md b/pages.pt_PT/osx/gbase64.md new file mode 100644 index 0000000000..ceaaff2474 --- /dev/null +++ b/pages.pt_PT/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> Este comando é um alias de `-p linux base64`. + +- Ver documentação do comando original: + +`tldr -p linux base64` diff --git a/pages.pt_PT/osx/gbasename.md b/pages.pt_PT/osx/gbasename.md new file mode 100644 index 0000000000..a0927b4c7b --- /dev/null +++ b/pages.pt_PT/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> Este comando é um alias de `-p linux basename`. + +- Ver documentação do comando original: + +`tldr -p linux basename` diff --git a/pages.pt_PT/osx/gbasenc.md b/pages.pt_PT/osx/gbasenc.md new file mode 100644 index 0000000000..b77a7ebb51 --- /dev/null +++ b/pages.pt_PT/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> Este comando é um alias de `-p linux basenc`. + +- Ver documentação do comando original: + +`tldr -p linux basenc` diff --git a/pages.pt_PT/osx/gcat.md b/pages.pt_PT/osx/gcat.md new file mode 100644 index 0000000000..d1286d77f5 --- /dev/null +++ b/pages.pt_PT/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> Este comando é um alias de `-p linux cat`. + +- Ver documentação do comando original: + +`tldr -p linux cat` diff --git a/pages.pt_PT/osx/gchcon.md b/pages.pt_PT/osx/gchcon.md new file mode 100644 index 0000000000..8f5e3b453e --- /dev/null +++ b/pages.pt_PT/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> Este comando é um alias de `-p linux chcon`. + +- Ver documentação do comando original: + +`tldr -p linux chcon` diff --git a/pages.pt_PT/osx/gchgrp.md b/pages.pt_PT/osx/gchgrp.md new file mode 100644 index 0000000000..dfe12067d7 --- /dev/null +++ b/pages.pt_PT/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> Este comando é um alias de `-p linux chgrp`. + +- Ver documentação do comando original: + +`tldr -p linux chgrp` diff --git a/pages.pt_PT/osx/gchmod.md b/pages.pt_PT/osx/gchmod.md new file mode 100644 index 0000000000..48b34bafde --- /dev/null +++ b/pages.pt_PT/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> Este comando é um alias de `-p linux chmod`. + +- Ver documentação do comando original: + +`tldr -p linux chmod` diff --git a/pages.pt_PT/osx/gchown.md b/pages.pt_PT/osx/gchown.md new file mode 100644 index 0000000000..38c0e590dd --- /dev/null +++ b/pages.pt_PT/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> Este comando é um alias de `-p linux chown`. + +- Ver documentação do comando original: + +`tldr -p linux chown` diff --git a/pages.pt_PT/osx/gchroot.md b/pages.pt_PT/osx/gchroot.md new file mode 100644 index 0000000000..beb1cb01ff --- /dev/null +++ b/pages.pt_PT/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> Este comando é um alias de `-p linux chroot`. + +- Ver documentação do comando original: + +`tldr -p linux chroot` diff --git a/pages.pt_PT/osx/gcksum.md b/pages.pt_PT/osx/gcksum.md new file mode 100644 index 0000000000..9a440aac2a --- /dev/null +++ b/pages.pt_PT/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> Este comando é um alias de `-p linux cksum`. + +- Ver documentação do comando original: + +`tldr -p linux cksum` diff --git a/pages.pt_PT/osx/gcomm.md b/pages.pt_PT/osx/gcomm.md new file mode 100644 index 0000000000..267dce803f --- /dev/null +++ b/pages.pt_PT/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> Este comando é um alias de `-p linux comm`. + +- Ver documentação do comando original: + +`tldr -p linux comm` diff --git a/pages.pt_PT/osx/gcp.md b/pages.pt_PT/osx/gcp.md new file mode 100644 index 0000000000..b044e764ce --- /dev/null +++ b/pages.pt_PT/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> Este comando é um alias de `-p linux cp`. + +- Ver documentação do comando original: + +`tldr -p linux cp` diff --git a/pages.pt_PT/osx/gcsplit.md b/pages.pt_PT/osx/gcsplit.md new file mode 100644 index 0000000000..b731d179f5 --- /dev/null +++ b/pages.pt_PT/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> Este comando é um alias de `-p linux csplit`. + +- Ver documentação do comando original: + +`tldr -p linux csplit` diff --git a/pages.pt_PT/osx/gcut.md b/pages.pt_PT/osx/gcut.md new file mode 100644 index 0000000000..e45fd63c9b --- /dev/null +++ b/pages.pt_PT/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> Este comando é um alias de `-p linux cut`. + +- Ver documentação do comando original: + +`tldr -p linux cut` diff --git a/pages.pt_PT/osx/gdate.md b/pages.pt_PT/osx/gdate.md new file mode 100644 index 0000000000..9d7e82ee10 --- /dev/null +++ b/pages.pt_PT/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> Este comando é um alias de `-p linux date`. + +- Ver documentação do comando original: + +`tldr -p linux date` diff --git a/pages.pt_PT/osx/gdd.md b/pages.pt_PT/osx/gdd.md new file mode 100644 index 0000000000..527d12af33 --- /dev/null +++ b/pages.pt_PT/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> Este comando é um alias de `-p linux dd`. + +- Ver documentação do comando original: + +`tldr -p linux dd` diff --git a/pages.pt_PT/osx/gdf.md b/pages.pt_PT/osx/gdf.md new file mode 100644 index 0000000000..ce067585fe --- /dev/null +++ b/pages.pt_PT/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> Este comando é um alias de `-p linux df`. + +- Ver documentação do comando original: + +`tldr -p linux df` diff --git a/pages.pt_PT/osx/gdir.md b/pages.pt_PT/osx/gdir.md new file mode 100644 index 0000000000..9e7b5124dd --- /dev/null +++ b/pages.pt_PT/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> Este comando é um alias de `-p linux dir`. + +- Ver documentação do comando original: + +`tldr -p linux dir` diff --git a/pages.pt_PT/osx/gdircolors.md b/pages.pt_PT/osx/gdircolors.md new file mode 100644 index 0000000000..507fb792c3 --- /dev/null +++ b/pages.pt_PT/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> Este comando é um alias de `-p linux dircolors`. + +- Ver documentação do comando original: + +`tldr -p linux dircolors` diff --git a/pages.pt_PT/osx/gdirname.md b/pages.pt_PT/osx/gdirname.md new file mode 100644 index 0000000000..d04f183bec --- /dev/null +++ b/pages.pt_PT/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> Este comando é um alias de `-p linux dirname`. + +- Ver documentação do comando original: + +`tldr -p linux dirname` diff --git a/pages.pt_PT/osx/gdnsdomainname.md b/pages.pt_PT/osx/gdnsdomainname.md new file mode 100644 index 0000000000..5d284c1f9d --- /dev/null +++ b/pages.pt_PT/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> Este comando é um alias de `-p linux dnsdomainname`. + +- Ver documentação do comando original: + +`tldr -p linux dnsdomainname` diff --git a/pages.pt_PT/osx/gecho.md b/pages.pt_PT/osx/gecho.md new file mode 100644 index 0000000000..f2735ad319 --- /dev/null +++ b/pages.pt_PT/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> Este comando é um alias de `-p linux echo`. + +- Ver documentação do comando original: + +`tldr -p linux echo` diff --git a/pages.pt_PT/osx/ged.md b/pages.pt_PT/osx/ged.md new file mode 100644 index 0000000000..457563c7bd --- /dev/null +++ b/pages.pt_PT/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> Este comando é um alias de `-p linux ed`. + +- Ver documentação do comando original: + +`tldr -p linux ed` diff --git a/pages.pt_PT/osx/gegrep.md b/pages.pt_PT/osx/gegrep.md new file mode 100644 index 0000000000..13cb7cb51a --- /dev/null +++ b/pages.pt_PT/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> Este comando é um alias de `-p linux egrep`. + +- Ver documentação do comando original: + +`tldr -p linux egrep` diff --git a/pages.pt_PT/osx/genv.md b/pages.pt_PT/osx/genv.md new file mode 100644 index 0000000000..e86bea9aca --- /dev/null +++ b/pages.pt_PT/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> Este comando é um alias de `-p linux env`. + +- Ver documentação do comando original: + +`tldr -p linux env` diff --git a/pages.pt_PT/osx/gexpand.md b/pages.pt_PT/osx/gexpand.md new file mode 100644 index 0000000000..1779c5641f --- /dev/null +++ b/pages.pt_PT/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> Este comando é um alias de `-p linux expand`. + +- Ver documentação do comando original: + +`tldr -p linux expand` diff --git a/pages.pt_PT/osx/gexpr.md b/pages.pt_PT/osx/gexpr.md new file mode 100644 index 0000000000..7b943a36a7 --- /dev/null +++ b/pages.pt_PT/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> Este comando é um alias de `-p linux expr`. + +- Ver documentação do comando original: + +`tldr -p linux expr` diff --git a/pages.pt_PT/osx/gfactor.md b/pages.pt_PT/osx/gfactor.md new file mode 100644 index 0000000000..c2d5b0e7aa --- /dev/null +++ b/pages.pt_PT/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> Este comando é um alias de `-p linux factor`. + +- Ver documentação do comando original: + +`tldr -p linux factor` diff --git a/pages.pt_PT/osx/gfalse.md b/pages.pt_PT/osx/gfalse.md new file mode 100644 index 0000000000..f652d011fb --- /dev/null +++ b/pages.pt_PT/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> Este comando é um alias de `-p linux false`. + +- Ver documentação do comando original: + +`tldr -p linux false` diff --git a/pages.pt_PT/osx/gfgrep.md b/pages.pt_PT/osx/gfgrep.md new file mode 100644 index 0000000000..4e0d94c699 --- /dev/null +++ b/pages.pt_PT/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> Este comando é um alias de `-p linux fgrep`. + +- Ver documentação do comando original: + +`tldr -p linux fgrep` diff --git a/pages.pt_PT/osx/gfind.md b/pages.pt_PT/osx/gfind.md new file mode 100644 index 0000000000..1e4df6c79e --- /dev/null +++ b/pages.pt_PT/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> Este comando é um alias de `-p linux find`. + +- Ver documentação do comando original: + +`tldr -p linux find` diff --git a/pages.pt_PT/osx/gfmt.md b/pages.pt_PT/osx/gfmt.md new file mode 100644 index 0000000000..9a28adf996 --- /dev/null +++ b/pages.pt_PT/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> Este comando é um alias de `-p linux fmt`. + +- Ver documentação do comando original: + +`tldr -p linux fmt` diff --git a/pages.pt_PT/osx/gfold.md b/pages.pt_PT/osx/gfold.md new file mode 100644 index 0000000000..37447775d6 --- /dev/null +++ b/pages.pt_PT/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> Este comando é um alias de `-p linux fold`. + +- Ver documentação do comando original: + +`tldr -p linux fold` diff --git a/pages.pt_PT/osx/gftp.md b/pages.pt_PT/osx/gftp.md new file mode 100644 index 0000000000..7343d86c37 --- /dev/null +++ b/pages.pt_PT/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> Este comando é um alias de `-p linux ftp`. + +- Ver documentação do comando original: + +`tldr -p linux ftp` diff --git a/pages.pt_PT/osx/ggrep.md b/pages.pt_PT/osx/ggrep.md new file mode 100644 index 0000000000..cbab70bceb --- /dev/null +++ b/pages.pt_PT/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> Este comando é um alias de `-p linux grep`. + +- Ver documentação do comando original: + +`tldr -p linux grep` diff --git a/pages.pt_PT/osx/ggroups.md b/pages.pt_PT/osx/ggroups.md new file mode 100644 index 0000000000..6d6c88b4c8 --- /dev/null +++ b/pages.pt_PT/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> Este comando é um alias de `-p linux groups`. + +- Ver documentação do comando original: + +`tldr -p linux groups` diff --git a/pages.pt_PT/osx/ghead.md b/pages.pt_PT/osx/ghead.md new file mode 100644 index 0000000000..0bae06941b --- /dev/null +++ b/pages.pt_PT/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> Este comando é um alias de `-p linux head`. + +- Ver documentação do comando original: + +`tldr -p linux head` diff --git a/pages.pt_PT/osx/ghostid.md b/pages.pt_PT/osx/ghostid.md new file mode 100644 index 0000000000..5463b424ef --- /dev/null +++ b/pages.pt_PT/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> Este comando é um alias de `-p linux hostid`. + +- Ver documentação do comando original: + +`tldr -p linux hostid` diff --git a/pages.pt_PT/osx/ghostname.md b/pages.pt_PT/osx/ghostname.md new file mode 100644 index 0000000000..d7d7cf5042 --- /dev/null +++ b/pages.pt_PT/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> Este comando é um alias de `-p linux hostname`. + +- Ver documentação do comando original: + +`tldr -p linux hostname` diff --git a/pages.pt_PT/osx/gid.md b/pages.pt_PT/osx/gid.md new file mode 100644 index 0000000000..681c85d25b --- /dev/null +++ b/pages.pt_PT/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> Este comando é um alias de `-p linux id`. + +- Ver documentação do comando original: + +`tldr -p linux id` diff --git a/pages.pt_PT/osx/gifconfig.md b/pages.pt_PT/osx/gifconfig.md new file mode 100644 index 0000000000..3de2e1090e --- /dev/null +++ b/pages.pt_PT/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> Este comando é um alias de `-p linux ifconfig`. + +- Ver documentação do comando original: + +`tldr -p linux ifconfig` diff --git a/pages.pt_PT/osx/gindent.md b/pages.pt_PT/osx/gindent.md new file mode 100644 index 0000000000..0af29a680e --- /dev/null +++ b/pages.pt_PT/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> Este comando é um alias de `-p linux indent`. + +- Ver documentação do comando original: + +`tldr -p linux indent` diff --git a/pages.pt_PT/osx/ginstall.md b/pages.pt_PT/osx/ginstall.md new file mode 100644 index 0000000000..bfe5edbda3 --- /dev/null +++ b/pages.pt_PT/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> Este comando é um alias de `-p linux install`. + +- Ver documentação do comando original: + +`tldr -p linux install` diff --git a/pages.pt_PT/osx/gjoin.md b/pages.pt_PT/osx/gjoin.md new file mode 100644 index 0000000000..e12a4db14e --- /dev/null +++ b/pages.pt_PT/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> Este comando é um alias de `-p linux join`. + +- Ver documentação do comando original: + +`tldr -p linux join` diff --git a/pages.pt_PT/osx/gkill.md b/pages.pt_PT/osx/gkill.md new file mode 100644 index 0000000000..03d713452f --- /dev/null +++ b/pages.pt_PT/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> Este comando é um alias de `-p linux kill`. + +- Ver documentação do comando original: + +`tldr -p linux kill` diff --git a/pages.pt_PT/osx/glibtool.md b/pages.pt_PT/osx/glibtool.md new file mode 100644 index 0000000000..e6509aefbf --- /dev/null +++ b/pages.pt_PT/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> Este comando é um alias de `-p linux libtool`. + +- Ver documentação do comando original: + +`tldr -p linux libtool` diff --git a/pages.pt_PT/osx/glibtoolize.md b/pages.pt_PT/osx/glibtoolize.md new file mode 100644 index 0000000000..9d5a171584 --- /dev/null +++ b/pages.pt_PT/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> Este comando é um alias de `-p linux libtoolize`. + +- Ver documentação do comando original: + +`tldr -p linux libtoolize` diff --git a/pages.pt_PT/osx/glink.md b/pages.pt_PT/osx/glink.md new file mode 100644 index 0000000000..1fd5426970 --- /dev/null +++ b/pages.pt_PT/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> Este comando é um alias de `-p linux link`. + +- Ver documentação do comando original: + +`tldr -p linux link` diff --git a/pages.pt_PT/osx/gln.md b/pages.pt_PT/osx/gln.md new file mode 100644 index 0000000000..fa173548f8 --- /dev/null +++ b/pages.pt_PT/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> Este comando é um alias de `-p linux ln`. + +- Ver documentação do comando original: + +`tldr -p linux ln` diff --git a/pages.pt_PT/osx/glocate.md b/pages.pt_PT/osx/glocate.md new file mode 100644 index 0000000000..171fc7e1e4 --- /dev/null +++ b/pages.pt_PT/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> Este comando é um alias de `-p linux locate`. + +- Ver documentação do comando original: + +`tldr -p linux locate` diff --git a/pages.pt_PT/osx/glogger.md b/pages.pt_PT/osx/glogger.md new file mode 100644 index 0000000000..c1274d43b5 --- /dev/null +++ b/pages.pt_PT/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> Este comando é um alias de `-p linux logger`. + +- Ver documentação do comando original: + +`tldr -p linux logger` diff --git a/pages.pt_PT/osx/glogname.md b/pages.pt_PT/osx/glogname.md new file mode 100644 index 0000000000..263a806a3a --- /dev/null +++ b/pages.pt_PT/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> Este comando é um alias de `-p linux logname`. + +- Ver documentação do comando original: + +`tldr -p linux logname` diff --git a/pages.pt_PT/osx/gls.md b/pages.pt_PT/osx/gls.md new file mode 100644 index 0000000000..c9df1521c9 --- /dev/null +++ b/pages.pt_PT/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> Este comando é um alias de `-p linux ls`. + +- Ver documentação do comando original: + +`tldr -p linux ls` diff --git a/pages.pt_PT/osx/gmake.md b/pages.pt_PT/osx/gmake.md new file mode 100644 index 0000000000..a9cd255b3d --- /dev/null +++ b/pages.pt_PT/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> Este comando é um alias de `-p linux make`. + +- Ver documentação do comando original: + +`tldr -p linux make` diff --git a/pages.pt_PT/osx/gmd5sum.md b/pages.pt_PT/osx/gmd5sum.md new file mode 100644 index 0000000000..a23b0917ff --- /dev/null +++ b/pages.pt_PT/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> Este comando é um alias de `-p linux md5sum`. + +- Ver documentação do comando original: + +`tldr -p linux md5sum` diff --git a/pages.pt_PT/osx/gmkdir.md b/pages.pt_PT/osx/gmkdir.md new file mode 100644 index 0000000000..12bc82393a --- /dev/null +++ b/pages.pt_PT/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> Este comando é um alias de `-p linux mkdir`. + +- Ver documentação do comando original: + +`tldr -p linux mkdir` diff --git a/pages.pt_PT/osx/gmkfifo.md b/pages.pt_PT/osx/gmkfifo.md new file mode 100644 index 0000000000..675290cc31 --- /dev/null +++ b/pages.pt_PT/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> Este comando é um alias de `-p linux mkfifo`. + +- Ver documentação do comando original: + +`tldr -p linux mkfifo` diff --git a/pages.pt_PT/osx/gmknod.md b/pages.pt_PT/osx/gmknod.md new file mode 100644 index 0000000000..6382f6c590 --- /dev/null +++ b/pages.pt_PT/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> Este comando é um alias de `-p linux mknod`. + +- Ver documentação do comando original: + +`tldr -p linux mknod` diff --git a/pages.pt_PT/osx/gmktemp.md b/pages.pt_PT/osx/gmktemp.md new file mode 100644 index 0000000000..4d8dfcbaa8 --- /dev/null +++ b/pages.pt_PT/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> Este comando é um alias de `-p linux mktemp`. + +- Ver documentação do comando original: + +`tldr -p linux mktemp` diff --git a/pages.pt_PT/osx/gmv.md b/pages.pt_PT/osx/gmv.md new file mode 100644 index 0000000000..b5895361f9 --- /dev/null +++ b/pages.pt_PT/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> Este comando é um alias de `-p linux mv`. + +- Ver documentação do comando original: + +`tldr -p linux mv` diff --git a/pages.pt_PT/osx/gnice.md b/pages.pt_PT/osx/gnice.md new file mode 100644 index 0000000000..42247a419a --- /dev/null +++ b/pages.pt_PT/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> Este comando é um alias de `-p linux nice`. + +- Ver documentação do comando original: + +`tldr -p linux nice` diff --git a/pages.pt_PT/osx/gnl.md b/pages.pt_PT/osx/gnl.md new file mode 100644 index 0000000000..8add6449cd --- /dev/null +++ b/pages.pt_PT/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> Este comando é um alias de `-p linux nl`. + +- Ver documentação do comando original: + +`tldr -p linux nl` diff --git a/pages.pt_PT/osx/gnohup.md b/pages.pt_PT/osx/gnohup.md new file mode 100644 index 0000000000..a32ed066a7 --- /dev/null +++ b/pages.pt_PT/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> Este comando é um alias de `-p linux nohup`. + +- Ver documentação do comando original: + +`tldr -p linux nohup` diff --git a/pages.pt_PT/osx/gnproc.md b/pages.pt_PT/osx/gnproc.md new file mode 100644 index 0000000000..c3b6fa04c2 --- /dev/null +++ b/pages.pt_PT/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> Este comando é um alias de `-p linux nproc`. + +- Ver documentação do comando original: + +`tldr -p linux nproc` diff --git a/pages.pt_PT/osx/gnumfmt.md b/pages.pt_PT/osx/gnumfmt.md new file mode 100644 index 0000000000..341a18becf --- /dev/null +++ b/pages.pt_PT/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> Este comando é um alias de `-p linux numfmt`. + +- Ver documentação do comando original: + +`tldr -p linux numfmt` diff --git a/pages.pt_PT/osx/god.md b/pages.pt_PT/osx/god.md new file mode 100644 index 0000000000..b20a237af8 --- /dev/null +++ b/pages.pt_PT/osx/god.md @@ -0,0 +1,7 @@ +# god + +> Este comando é um alias de `-p linux od`. + +- Ver documentação do comando original: + +`tldr -p linux od` diff --git a/pages.pt_PT/osx/gpaste.md b/pages.pt_PT/osx/gpaste.md new file mode 100644 index 0000000000..b5022b9d96 --- /dev/null +++ b/pages.pt_PT/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> Este comando é um alias de `-p linux paste`. + +- Ver documentação do comando original: + +`tldr -p linux paste` diff --git a/pages.pt_PT/osx/gpathchk.md b/pages.pt_PT/osx/gpathchk.md new file mode 100644 index 0000000000..e9d7ac1a27 --- /dev/null +++ b/pages.pt_PT/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> Este comando é um alias de `-p linux pathchk`. + +- Ver documentação do comando original: + +`tldr -p linux pathchk` diff --git a/pages.pt_PT/osx/gping.md b/pages.pt_PT/osx/gping.md new file mode 100644 index 0000000000..0a16025705 --- /dev/null +++ b/pages.pt_PT/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> Este comando é um alias de `-p linux ping`. + +- Ver documentação do comando original: + +`tldr -p linux ping` diff --git a/pages.pt_PT/osx/gping6.md b/pages.pt_PT/osx/gping6.md new file mode 100644 index 0000000000..5d26b0d7cb --- /dev/null +++ b/pages.pt_PT/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> Este comando é um alias de `-p linux ping6`. + +- Ver documentação do comando original: + +`tldr -p linux ping6` diff --git a/pages.pt_PT/osx/gpinky.md b/pages.pt_PT/osx/gpinky.md new file mode 100644 index 0000000000..1f1814b580 --- /dev/null +++ b/pages.pt_PT/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> Este comando é um alias de `-p linux pinky`. + +- Ver documentação do comando original: + +`tldr -p linux pinky` diff --git a/pages.pt_PT/osx/gpr.md b/pages.pt_PT/osx/gpr.md new file mode 100644 index 0000000000..cd4bfc6c3f --- /dev/null +++ b/pages.pt_PT/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> Este comando é um alias de `-p linux pr`. + +- Ver documentação do comando original: + +`tldr -p linux pr` diff --git a/pages.pt_PT/osx/gprintenv.md b/pages.pt_PT/osx/gprintenv.md new file mode 100644 index 0000000000..c6f0827127 --- /dev/null +++ b/pages.pt_PT/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> Este comando é um alias de `-p linux printenv`. + +- Ver documentação do comando original: + +`tldr -p linux printenv` diff --git a/pages.pt_PT/osx/gprintf.md b/pages.pt_PT/osx/gprintf.md new file mode 100644 index 0000000000..050611f4e3 --- /dev/null +++ b/pages.pt_PT/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> Este comando é um alias de `-p linux printf`. + +- Ver documentação do comando original: + +`tldr -p linux printf` diff --git a/pages.pt_PT/osx/gptx.md b/pages.pt_PT/osx/gptx.md new file mode 100644 index 0000000000..e01a7b1abe --- /dev/null +++ b/pages.pt_PT/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> Este comando é um alias de `-p linux ptx`. + +- Ver documentação do comando original: + +`tldr -p linux ptx` diff --git a/pages.pt_PT/osx/gpwd.md b/pages.pt_PT/osx/gpwd.md new file mode 100644 index 0000000000..4a34bb55b6 --- /dev/null +++ b/pages.pt_PT/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> Este comando é um alias de `-p linux pwd`. + +- Ver documentação do comando original: + +`tldr -p linux pwd` diff --git a/pages.pt_PT/osx/grcp.md b/pages.pt_PT/osx/grcp.md new file mode 100644 index 0000000000..9adfcb4644 --- /dev/null +++ b/pages.pt_PT/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> Este comando é um alias de `-p linux rcp`. + +- Ver documentação do comando original: + +`tldr -p linux rcp` diff --git a/pages.pt_PT/osx/greadlink.md b/pages.pt_PT/osx/greadlink.md new file mode 100644 index 0000000000..8427f58487 --- /dev/null +++ b/pages.pt_PT/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> Este comando é um alias de `-p linux readlink`. + +- Ver documentação do comando original: + +`tldr -p linux readlink` diff --git a/pages.pt_PT/osx/grealpath.md b/pages.pt_PT/osx/grealpath.md new file mode 100644 index 0000000000..53a01bc32d --- /dev/null +++ b/pages.pt_PT/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> Este comando é um alias de `-p linux realpath`. + +- Ver documentação do comando original: + +`tldr -p linux realpath` diff --git a/pages.pt_PT/osx/grexec.md b/pages.pt_PT/osx/grexec.md new file mode 100644 index 0000000000..86704dcc65 --- /dev/null +++ b/pages.pt_PT/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> Este comando é um alias de `-p linux rexec`. + +- Ver documentação do comando original: + +`tldr -p linux rexec` diff --git a/pages.pt_PT/osx/grlogin.md b/pages.pt_PT/osx/grlogin.md new file mode 100644 index 0000000000..f3852e6373 --- /dev/null +++ b/pages.pt_PT/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> Este comando é um alias de `-p linux rlogin`. + +- Ver documentação do comando original: + +`tldr -p linux rlogin` diff --git a/pages.pt_PT/osx/grm.md b/pages.pt_PT/osx/grm.md new file mode 100644 index 0000000000..f65ab19601 --- /dev/null +++ b/pages.pt_PT/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> Este comando é um alias de `-p linux rm`. + +- Ver documentação do comando original: + +`tldr -p linux rm` diff --git a/pages.pt_PT/osx/grmdir.md b/pages.pt_PT/osx/grmdir.md new file mode 100644 index 0000000000..2df23397a1 --- /dev/null +++ b/pages.pt_PT/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> Este comando é um alias de `-p linux rmdir`. + +- Ver documentação do comando original: + +`tldr -p linux rmdir` diff --git a/pages.pt_PT/osx/grsh.md b/pages.pt_PT/osx/grsh.md new file mode 100644 index 0000000000..051ecfc3ba --- /dev/null +++ b/pages.pt_PT/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> Este comando é um alias de `-p linux rsh`. + +- Ver documentação do comando original: + +`tldr -p linux rsh` diff --git a/pages.pt_PT/osx/gruncon.md b/pages.pt_PT/osx/gruncon.md new file mode 100644 index 0000000000..0bff1520cc --- /dev/null +++ b/pages.pt_PT/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> Este comando é um alias de `-p linux runcon`. + +- Ver documentação do comando original: + +`tldr -p linux runcon` diff --git a/pages.pt_PT/osx/gsed.md b/pages.pt_PT/osx/gsed.md new file mode 100644 index 0000000000..dc73a7e00b --- /dev/null +++ b/pages.pt_PT/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> Este comando é um alias de `-p linux sed`. + +- Ver documentação do comando original: + +`tldr -p linux sed` diff --git a/pages.pt_PT/osx/gseq.md b/pages.pt_PT/osx/gseq.md new file mode 100644 index 0000000000..d6fb5eda31 --- /dev/null +++ b/pages.pt_PT/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> Este comando é um alias de `-p linux seq`. + +- Ver documentação do comando original: + +`tldr -p linux seq` diff --git a/pages.pt_PT/osx/gsha1sum.md b/pages.pt_PT/osx/gsha1sum.md new file mode 100644 index 0000000000..4041e36543 --- /dev/null +++ b/pages.pt_PT/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> Este comando é um alias de `-p linux sha1sum`. + +- Ver documentação do comando original: + +`tldr -p linux sha1sum` diff --git a/pages.pt_PT/osx/gsha224sum.md b/pages.pt_PT/osx/gsha224sum.md new file mode 100644 index 0000000000..562c1712c3 --- /dev/null +++ b/pages.pt_PT/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> Este comando é um alias de `-p linux sha224sum`. + +- Ver documentação do comando original: + +`tldr -p linux sha224sum` diff --git a/pages.pt_PT/osx/gsha256sum.md b/pages.pt_PT/osx/gsha256sum.md new file mode 100644 index 0000000000..86ea18f125 --- /dev/null +++ b/pages.pt_PT/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> Este comando é um alias de `-p linux sha256sum`. + +- Ver documentação do comando original: + +`tldr -p linux sha256sum` diff --git a/pages.pt_PT/osx/gsha384sum.md b/pages.pt_PT/osx/gsha384sum.md new file mode 100644 index 0000000000..6c7b19c487 --- /dev/null +++ b/pages.pt_PT/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> Este comando é um alias de `-p linux sha384sum`. + +- Ver documentação do comando original: + +`tldr -p linux sha384sum` diff --git a/pages.pt_PT/osx/gsha512sum.md b/pages.pt_PT/osx/gsha512sum.md new file mode 100644 index 0000000000..c8ac034dd7 --- /dev/null +++ b/pages.pt_PT/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> Este comando é um alias de `-p linux sha512sum`. + +- Ver documentação do comando original: + +`tldr -p linux sha512sum` diff --git a/pages.pt_PT/osx/gshred.md b/pages.pt_PT/osx/gshred.md new file mode 100644 index 0000000000..91255b66ec --- /dev/null +++ b/pages.pt_PT/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> Este comando é um alias de `-p linux shred`. + +- Ver documentação do comando original: + +`tldr -p linux shred` diff --git a/pages.pt_PT/osx/gshuf.md b/pages.pt_PT/osx/gshuf.md new file mode 100644 index 0000000000..c3d634d218 --- /dev/null +++ b/pages.pt_PT/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> Este comando é um alias de `-p linux shuf`. + +- Ver documentação do comando original: + +`tldr -p linux shuf` diff --git a/pages.pt_PT/osx/gsleep.md b/pages.pt_PT/osx/gsleep.md new file mode 100644 index 0000000000..c3d8204da9 --- /dev/null +++ b/pages.pt_PT/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> Este comando é um alias de `-p linux sleep`. + +- Ver documentação do comando original: + +`tldr -p linux sleep` diff --git a/pages.pt_PT/osx/gsort.md b/pages.pt_PT/osx/gsort.md new file mode 100644 index 0000000000..385b497422 --- /dev/null +++ b/pages.pt_PT/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> Este comando é um alias de `-p linux sort`. + +- Ver documentação do comando original: + +`tldr -p linux sort` diff --git a/pages.pt_PT/osx/gsplit.md b/pages.pt_PT/osx/gsplit.md new file mode 100644 index 0000000000..0378b62e1e --- /dev/null +++ b/pages.pt_PT/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> Este comando é um alias de `-p linux split`. + +- Ver documentação do comando original: + +`tldr -p linux split` diff --git a/pages.pt_PT/osx/gstat.md b/pages.pt_PT/osx/gstat.md new file mode 100644 index 0000000000..84f260026e --- /dev/null +++ b/pages.pt_PT/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> Este comando é um alias de `-p linux stat`. + +- Ver documentação do comando original: + +`tldr -p linux stat` diff --git a/pages.pt_PT/osx/gstdbuf.md b/pages.pt_PT/osx/gstdbuf.md new file mode 100644 index 0000000000..2fb343b190 --- /dev/null +++ b/pages.pt_PT/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> Este comando é um alias de `-p linux stdbuf`. + +- Ver documentação do comando original: + +`tldr -p linux stdbuf` diff --git a/pages.pt_PT/osx/gstty.md b/pages.pt_PT/osx/gstty.md new file mode 100644 index 0000000000..f26bf0ca76 --- /dev/null +++ b/pages.pt_PT/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> Este comando é um alias de `-p linux stty`. + +- Ver documentação do comando original: + +`tldr -p linux stty` diff --git a/pages.pt_PT/osx/gsum.md b/pages.pt_PT/osx/gsum.md new file mode 100644 index 0000000000..7aa5df89b0 --- /dev/null +++ b/pages.pt_PT/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> Este comando é um alias de `-p linux sum`. + +- Ver documentação do comando original: + +`tldr -p linux sum` diff --git a/pages.pt_PT/osx/gsync.md b/pages.pt_PT/osx/gsync.md new file mode 100644 index 0000000000..8eff67a51d --- /dev/null +++ b/pages.pt_PT/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> Este comando é um alias de `-p linux sync`. + +- Ver documentação do comando original: + +`tldr -p linux sync` diff --git a/pages.pt_PT/osx/gtac.md b/pages.pt_PT/osx/gtac.md new file mode 100644 index 0000000000..6b6ecd1689 --- /dev/null +++ b/pages.pt_PT/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> Este comando é um alias de `-p linux tac`. + +- Ver documentação do comando original: + +`tldr -p linux tac` diff --git a/pages.pt_PT/osx/gtail.md b/pages.pt_PT/osx/gtail.md new file mode 100644 index 0000000000..cd8b14a907 --- /dev/null +++ b/pages.pt_PT/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> Este comando é um alias de `-p linux tail`. + +- Ver documentação do comando original: + +`tldr -p linux tail` diff --git a/pages.pt_PT/osx/gtalk.md b/pages.pt_PT/osx/gtalk.md new file mode 100644 index 0000000000..900b958cba --- /dev/null +++ b/pages.pt_PT/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> Este comando é um alias de `-p linux talk`. + +- Ver documentação do comando original: + +`tldr -p linux talk` diff --git a/pages.pt_PT/osx/gtar.md b/pages.pt_PT/osx/gtar.md new file mode 100644 index 0000000000..42635b24f7 --- /dev/null +++ b/pages.pt_PT/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> Este comando é um alias de `-p linux tar`. + +- Ver documentação do comando original: + +`tldr -p linux tar` diff --git a/pages.pt_PT/osx/gtee.md b/pages.pt_PT/osx/gtee.md new file mode 100644 index 0000000000..13518fa3e7 --- /dev/null +++ b/pages.pt_PT/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> Este comando é um alias de `-p linux tee`. + +- Ver documentação do comando original: + +`tldr -p linux tee` diff --git a/pages.pt_PT/osx/gtelnet.md b/pages.pt_PT/osx/gtelnet.md new file mode 100644 index 0000000000..57afeb2721 --- /dev/null +++ b/pages.pt_PT/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> Este comando é um alias de `-p linux telnet`. + +- Ver documentação do comando original: + +`tldr -p linux telnet` diff --git a/pages.pt_PT/osx/gtest.md b/pages.pt_PT/osx/gtest.md new file mode 100644 index 0000000000..45da317a78 --- /dev/null +++ b/pages.pt_PT/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> Este comando é um alias de `-p linux test`. + +- Ver documentação do comando original: + +`tldr -p linux test` diff --git a/pages.pt_PT/osx/gtftp.md b/pages.pt_PT/osx/gtftp.md new file mode 100644 index 0000000000..6a38ce4993 --- /dev/null +++ b/pages.pt_PT/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> Este comando é um alias de `-p linux tftp`. + +- Ver documentação do comando original: + +`tldr -p linux tftp` diff --git a/pages.pt_PT/osx/gtime.md b/pages.pt_PT/osx/gtime.md new file mode 100644 index 0000000000..cbd02530e0 --- /dev/null +++ b/pages.pt_PT/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> Este comando é um alias de `-p linux time`. + +- Ver documentação do comando original: + +`tldr -p linux time` diff --git a/pages.pt_PT/osx/gtimeout.md b/pages.pt_PT/osx/gtimeout.md new file mode 100644 index 0000000000..d8dba858c6 --- /dev/null +++ b/pages.pt_PT/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> Este comando é um alias de `-p linux timeout`. + +- Ver documentação do comando original: + +`tldr -p linux timeout` diff --git a/pages.pt_PT/osx/gtouch.md b/pages.pt_PT/osx/gtouch.md new file mode 100644 index 0000000000..ac472d5b8e --- /dev/null +++ b/pages.pt_PT/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> Este comando é um alias de `-p linux touch`. + +- Ver documentação do comando original: + +`tldr -p linux touch` diff --git a/pages.pt_PT/osx/gtr.md b/pages.pt_PT/osx/gtr.md new file mode 100644 index 0000000000..fd8bbd0c80 --- /dev/null +++ b/pages.pt_PT/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> Este comando é um alias de `-p linux tr`. + +- Ver documentação do comando original: + +`tldr -p linux tr` diff --git a/pages.pt_PT/osx/gtraceroute.md b/pages.pt_PT/osx/gtraceroute.md new file mode 100644 index 0000000000..6743026ad1 --- /dev/null +++ b/pages.pt_PT/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> Este comando é um alias de `-p linux traceroute`. + +- Ver documentação do comando original: + +`tldr -p linux traceroute` diff --git a/pages.pt_PT/osx/gtrue.md b/pages.pt_PT/osx/gtrue.md new file mode 100644 index 0000000000..0c87109e7b --- /dev/null +++ b/pages.pt_PT/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> Este comando é um alias de `-p linux true`. + +- Ver documentação do comando original: + +`tldr -p linux true` diff --git a/pages.pt_PT/osx/gtruncate.md b/pages.pt_PT/osx/gtruncate.md new file mode 100644 index 0000000000..886c4db12b --- /dev/null +++ b/pages.pt_PT/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> Este comando é um alias de `-p linux truncate`. + +- Ver documentação do comando original: + +`tldr -p linux truncate` diff --git a/pages.pt_PT/osx/gtsort.md b/pages.pt_PT/osx/gtsort.md new file mode 100644 index 0000000000..b2be934984 --- /dev/null +++ b/pages.pt_PT/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> Este comando é um alias de `-p linux tsort`. + +- Ver documentação do comando original: + +`tldr -p linux tsort` diff --git a/pages.pt_PT/osx/gtty.md b/pages.pt_PT/osx/gtty.md new file mode 100644 index 0000000000..43488db7be --- /dev/null +++ b/pages.pt_PT/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> Este comando é um alias de `-p linux tty`. + +- Ver documentação do comando original: + +`tldr -p linux tty` diff --git a/pages.pt_PT/osx/guname.md b/pages.pt_PT/osx/guname.md new file mode 100644 index 0000000000..4bdd26c35e --- /dev/null +++ b/pages.pt_PT/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> Este comando é um alias de `-p linux uname`. + +- Ver documentação do comando original: + +`tldr -p linux uname` diff --git a/pages.pt_PT/osx/gunexpand.md b/pages.pt_PT/osx/gunexpand.md new file mode 100644 index 0000000000..32189fc2ef --- /dev/null +++ b/pages.pt_PT/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> Este comando é um alias de `-p linux unexpand`. + +- Ver documentação do comando original: + +`tldr -p linux unexpand` diff --git a/pages.pt_PT/osx/guniq.md b/pages.pt_PT/osx/guniq.md new file mode 100644 index 0000000000..adfeef7d5f --- /dev/null +++ b/pages.pt_PT/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> Este comando é um alias de `-p linux uniq`. + +- Ver documentação do comando original: + +`tldr -p linux uniq` diff --git a/pages.pt_PT/osx/gunits.md b/pages.pt_PT/osx/gunits.md new file mode 100644 index 0000000000..395b12ed5f --- /dev/null +++ b/pages.pt_PT/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> Este comando é um alias de `-p linux units`. + +- Ver documentação do comando original: + +`tldr -p linux units` diff --git a/pages.pt_PT/osx/gunlink.md b/pages.pt_PT/osx/gunlink.md new file mode 100644 index 0000000000..9390999677 --- /dev/null +++ b/pages.pt_PT/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> Este comando é um alias de `-p linux unlink`. + +- Ver documentação do comando original: + +`tldr -p linux unlink` diff --git a/pages.pt_PT/osx/gupdatedb.md b/pages.pt_PT/osx/gupdatedb.md new file mode 100644 index 0000000000..be61459266 --- /dev/null +++ b/pages.pt_PT/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> Este comando é um alias de `-p linux updatedb`. + +- Ver documentação do comando original: + +`tldr -p linux updatedb` diff --git a/pages.pt_PT/osx/guptime.md b/pages.pt_PT/osx/guptime.md new file mode 100644 index 0000000000..2598fb5c7d --- /dev/null +++ b/pages.pt_PT/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> Este comando é um alias de `-p linux uptime`. + +- Ver documentação do comando original: + +`tldr -p linux uptime` diff --git a/pages.pt_PT/osx/gusers.md b/pages.pt_PT/osx/gusers.md new file mode 100644 index 0000000000..d5ad0f2a18 --- /dev/null +++ b/pages.pt_PT/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> Este comando é um alias de `-p linux users`. + +- Ver documentação do comando original: + +`tldr -p linux users` diff --git a/pages.pt_PT/osx/gvdir.md b/pages.pt_PT/osx/gvdir.md new file mode 100644 index 0000000000..7e44225b65 --- /dev/null +++ b/pages.pt_PT/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> Este comando é um alias de `-p linux vdir`. + +- Ver documentação do comando original: + +`tldr -p linux vdir` diff --git a/pages.pt_PT/osx/gwc.md b/pages.pt_PT/osx/gwc.md new file mode 100644 index 0000000000..ba90319995 --- /dev/null +++ b/pages.pt_PT/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> Este comando é um alias de `-p linux wc`. + +- Ver documentação do comando original: + +`tldr -p linux wc` diff --git a/pages.pt_PT/osx/gwhich.md b/pages.pt_PT/osx/gwhich.md new file mode 100644 index 0000000000..516e0b23bc --- /dev/null +++ b/pages.pt_PT/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> Este comando é um alias de `-p linux which`. + +- Ver documentação do comando original: + +`tldr -p linux which` diff --git a/pages.pt_PT/osx/gwho.md b/pages.pt_PT/osx/gwho.md new file mode 100644 index 0000000000..5ba4f0f4b6 --- /dev/null +++ b/pages.pt_PT/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> Este comando é um alias de `-p linux who`. + +- Ver documentação do comando original: + +`tldr -p linux who` diff --git a/pages.pt_PT/osx/gwhoami.md b/pages.pt_PT/osx/gwhoami.md new file mode 100644 index 0000000000..d71519e230 --- /dev/null +++ b/pages.pt_PT/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> Este comando é um alias de `-p linux whoami`. + +- Ver documentação do comando original: + +`tldr -p linux whoami` diff --git a/pages.pt_PT/osx/gwhois.md b/pages.pt_PT/osx/gwhois.md new file mode 100644 index 0000000000..3ca8bf2535 --- /dev/null +++ b/pages.pt_PT/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> Este comando é um alias de `-p linux whois`. + +- Ver documentação do comando original: + +`tldr -p linux whois` diff --git a/pages.pt_PT/osx/gxargs.md b/pages.pt_PT/osx/gxargs.md new file mode 100644 index 0000000000..17c9558d32 --- /dev/null +++ b/pages.pt_PT/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> Este comando é um alias de `-p linux xargs`. + +- Ver documentação do comando original: + +`tldr -p linux xargs` diff --git a/pages.pt_PT/osx/gyes.md b/pages.pt_PT/osx/gyes.md new file mode 100644 index 0000000000..0dcf99f3a5 --- /dev/null +++ b/pages.pt_PT/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> Este comando é um alias de `-p linux yes`. + +- Ver documentação do comando original: + +`tldr -p linux yes` diff --git a/pages.pt_PT/osx/launchd.md b/pages.pt_PT/osx/launchd.md new file mode 100644 index 0000000000..bb3591fa53 --- /dev/null +++ b/pages.pt_PT/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> Este comando é um alias de `launchctl`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr launchctl` diff --git a/pages.pt_PT/windows/chrome.md b/pages.pt_PT/windows/chrome.md new file mode 100644 index 0000000000..bf9682965a --- /dev/null +++ b/pages.pt_PT/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> Este comando é um alias de `chromium`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr chromium` diff --git a/pages.pt_PT/windows/cinst.md b/pages.pt_PT/windows/cinst.md new file mode 100644 index 0000000000..dbdac1b880 --- /dev/null +++ b/pages.pt_PT/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> Este comando é um alias de `choco install`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr choco install` diff --git a/pages.pt_PT/windows/clist.md b/pages.pt_PT/windows/clist.md new file mode 100644 index 0000000000..f7f51e9786 --- /dev/null +++ b/pages.pt_PT/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> Este comando é um alias de `choco list`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr choco list` diff --git a/pages.pt_PT/windows/cpush.md b/pages.pt_PT/windows/cpush.md new file mode 100644 index 0000000000..041349238a --- /dev/null +++ b/pages.pt_PT/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> Este comando é um alias de `choco-push`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr choco-push` diff --git a/pages.pt_PT/windows/cuninst.md b/pages.pt_PT/windows/cuninst.md new file mode 100644 index 0000000000..cc11b644ff --- /dev/null +++ b/pages.pt_PT/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> Este comando é um alias de `choco uninstall`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr choco uninstall` diff --git a/pages.pt_PT/windows/curl.md b/pages.pt_PT/windows/curl.md new file mode 100644 index 0000000000..a2274b4c24 --- /dev/null +++ b/pages.pt_PT/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> Este comando é um alias de `curl -p common`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr curl -p common` diff --git a/pages.pt_PT/windows/iwr.md b/pages.pt_PT/windows/iwr.md new file mode 100644 index 0000000000..c8268c612c --- /dev/null +++ b/pages.pt_PT/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> Este comando é um alias de `invoke-webrequest`. + +- Ver documentação do comando original: + +`tldr invoke-webrequest` diff --git a/pages.pt_PT/windows/pwsh-where.md b/pages.pt_PT/windows/pwsh-where.md new file mode 100644 index 0000000000..a3a7353992 --- /dev/null +++ b/pages.pt_PT/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> Este comando é um alias de `Where-Object`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr Where-Object` diff --git a/pages.pt_PT/windows/rd.md b/pages.pt_PT/windows/rd.md new file mode 100644 index 0000000000..b48ccde76c --- /dev/null +++ b/pages.pt_PT/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> Este comando é um alias de `rmdir`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr rmdir` diff --git a/pages.pt_PT/windows/sls.md b/pages.pt_PT/windows/sls.md new file mode 100644 index 0000000000..d1c7e64efe --- /dev/null +++ b/pages.pt_PT/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> Este comando é um alias de `where-object`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr where-object` diff --git a/pages.pt_PT/windows/wget.md b/pages.pt_PT/windows/wget.md new file mode 100644 index 0000000000..a455bf59b5 --- /dev/null +++ b/pages.pt_PT/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> Este comando é um alias de `wget -p common`. +> Mais informações: . + +- Ver documentação do comando original: + +`tldr wget -p common` diff --git a/pages.ru/android/bugreport.md b/pages.ru/android/bugreport.md index c46fc7f13c..940d405c2d 100644 --- a/pages.ru/android/bugreport.md +++ b/pages.ru/android/bugreport.md @@ -2,7 +2,7 @@ > Показать отчет об ошибках Android. > Эту команду можно использовать только через `adb shell`. -> Больше информации: . +> Больше информации: . - Показать полный отчет об ошибках на устройстве Android: diff --git a/pages.ru/android/bugreportz.md b/pages.ru/android/bugreportz.md index 32bb034034..0dd5f3654d 100644 --- a/pages.ru/android/bugreportz.md +++ b/pages.ru/android/bugreportz.md @@ -2,7 +2,7 @@ > Создать заархивированный отчет об ошибках Android. > Эту команду можно использовать только через `adb shell`. -> Больше информации: . +> Больше информации: . - Создать полный заархивированный отчет об ошибках на устройстве Android: diff --git a/pages.ru/android/cmd.md b/pages.ru/android/cmd.md index 0699cf5802..8eb07502a1 100644 --- a/pages.ru/android/cmd.md +++ b/pages.ru/android/cmd.md @@ -1,7 +1,7 @@ # cmd > Сервис менеджер Android. -> Больше информации: . +> Больше информации: . - Список всех запущенных сервисов: diff --git a/pages.ru/common/7z.md b/pages.ru/common/7z.md index 5e62639ef9..eac9241b53 100644 --- a/pages.ru/common/7z.md +++ b/pages.ru/common/7z.md @@ -1,7 +1,7 @@ # 7z > Архиватор файлов с высокой степенью сжатия. -> Больше информации: . +> Больше информации: . - Архивировать ([a]rchive) файл или папку: @@ -19,7 +19,7 @@ `7z x {{путь/до/архива.7z}} -o{{путь/до/папки}}` -- Распаковать (e[x]tract) архив в stdout: +- Распаковать (e[x]tract) архив в `stdout`: `7z x {{путь/до/архива.7z}} -so` diff --git a/pages.ru/common/7za.md b/pages.ru/common/7za.md index 75f8a5c86d..07c07fb159 100644 --- a/pages.ru/common/7za.md +++ b/pages.ru/common/7za.md @@ -2,7 +2,7 @@ > Архиватор файлов с высокой степенью сжатия. > То же, что и `7z`, за исключением того, что поддерживает меньшее количество типов файлов, но является кроссплатформенным. -> Больше информации: . +> Больше информации: . - Архивировать ([a]rchive) файл или папку: @@ -20,7 +20,7 @@ `7za x {{путь/до/архива.7z}} -o{{путь/до/папки}}` -- Распаковать (e[x]tract) архив в stdout: +- Распаковать (e[x]tract) архив в `stdout`: `7za x {{путь/до/архива.7z}} -so` diff --git a/pages.ru/common/7zr.md b/pages.ru/common/7zr.md index b7d09b1341..8cb560a054 100644 --- a/pages.ru/common/7zr.md +++ b/pages.ru/common/7zr.md @@ -2,7 +2,7 @@ > Архиватор файлов с высокой степенью сжатия. > То же, что и `7z`, но поддерживает только файлы `.7z`. -> Больше информации: . +> Больше информации: . - Архивировать ([a]rchive) файл или папку: @@ -10,7 +10,7 @@ - Зашифровать существующий архив (включая имена файлов): -`7zr a {{путь/до/зашифрованного_архива.7z}} -p{{пароль}} -mhe=on {{путь/до/архива.7z}}` +`7zr a {{путь/до/зашифрованного_архива.7z}} -p{{пароль}} -mhe={{on}} {{путь/до/архива.7z}}` - Распаковать (e[x]tract) существующий архив, сохраняя оригинальную структуру папок: @@ -20,7 +20,7 @@ `7zr x {{путь/до/архива.7z}} -o{{путь/до/папки}}` -- Распаковать (e[x]tract) архив в stdout: +- Распаковать (e[x]tract) архив в `stdout`: `7zr x {{путь/до/архива.7z}} -so` diff --git a/pages.ru/common/asciidoctor.md b/pages.ru/common/asciidoctor.md new file mode 100644 index 0000000000..576dcf21bf --- /dev/null +++ b/pages.ru/common/asciidoctor.md @@ -0,0 +1,20 @@ +# asciidoctor + +> Преобразователь AsciiDoc файлов в другие форматы для публикации. +> Дополнительная информация: . + +- Преобразовать данный `.adoc` файл в HTML (формат на выходе по умолчанию): + +`asciidoctor {{путь/до/файла.adoc}}` + +- Преобразовать данный `.adoc` файл в HTML и привязать к таблице стилей CSS: + +`asciidoctor --attribute stylesheet={{путь/до/таблицы-стилей.css}} {{путь/до/файла.adoc}}` + +- Преобразовать данный `.adoc` файл во встраиваемый HTML, убрав всё кроме самого текста: + +`asciidoctor --embedded {{путь/до/файла.adoc}}` + +- Преобразовать данный `.adoc` файл в PDF с помощью библиотеки `asciidoctor-pdf`: + +`asciidoctor --backend={{pdf}} --require={{asciidoctor-pdf}} {{путь/до/файла.adoc}}` diff --git a/pages.ru/common/bundler.md b/pages.ru/common/bundler.md new file mode 100644 index 0000000000..765df6dee1 --- /dev/null +++ b/pages.ru/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> Эта команда — псевдоним для `bundle`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr bundle` diff --git a/pages.ru/common/clamav.md b/pages.ru/common/clamav.md new file mode 100644 index 0000000000..f486c0e2f5 --- /dev/null +++ b/pages.ru/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> Эта команда — псевдоним для `clamdscan`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr clamdscan` diff --git a/pages.ru/common/cron.md b/pages.ru/common/cron.md new file mode 100644 index 0000000000..b8e409315b --- /dev/null +++ b/pages.ru/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> Эта команда — псевдоним для `crontab`. + +- Смотри документацию для оригинальной команды: + +`tldr crontab` diff --git a/pages.ru/common/echo.md b/pages.ru/common/echo.md new file mode 100644 index 0000000000..b84441e049 --- /dev/null +++ b/pages.ru/common/echo.md @@ -0,0 +1,24 @@ +# echo + +> Отобразить заданные аргументы. +> Больше информации: . + +- Отобразить текстовое сообщение. Примечание: кавычки необязательны: + +`echo "{{Привет, мир}}"` + +- Отобразить сообщение с переменной окружения: + +`echo "{{Мой путь - $PATH}}"` + +- Отобразить сообщение, не перенося каретку на новую строку: + +`echo -n "{{Привет, мир}}"` + +- Добавить сообщение в файл: + +`echo "{{Привет, мир}}" >> {{путь/к/файлу.txt}}` + +- Экранировать с помощью символа обратной косой черты (специальный символ): + +`echo -e "{{Column 1\tColumn 2}}"` diff --git a/pages.ru/common/exit.md b/pages.ru/common/exit.md new file mode 100644 index 0000000000..6dfaf3546c --- /dev/null +++ b/pages.ru/common/exit.md @@ -0,0 +1,12 @@ +# exit + +> Выйти из оболочки. +> Больше информации: . + +- Выход из оболочки с кодом выхода последней выполненной команды: + +`exit` + +- Выйти из оболочки с указанным кодом выхода: + +`exit {{код_выхода}}` diff --git a/pages.ru/common/fossil-ci.md b/pages.ru/common/fossil-ci.md new file mode 100644 index 0000000000..66e3db5af8 --- /dev/null +++ b/pages.ru/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> Эта команда — псевдоним для `fossil-commit`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr fossil-commit` diff --git a/pages.ru/common/fossil-delete.md b/pages.ru/common/fossil-delete.md new file mode 100644 index 0000000000..6520ee06a8 --- /dev/null +++ b/pages.ru/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> Эта команда — псевдоним для `fossil rm`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr fossil rm` diff --git a/pages.ru/common/fossil-forget.md b/pages.ru/common/fossil-forget.md new file mode 100644 index 0000000000..6dc4881dfa --- /dev/null +++ b/pages.ru/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> Эта команда — псевдоним для `fossil rm`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr fossil rm` diff --git a/pages.ru/common/fossil-new.md b/pages.ru/common/fossil-new.md new file mode 100644 index 0000000000..16cbde50c2 --- /dev/null +++ b/pages.ru/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> Эта команда — псевдоним для `fossil-init`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr fossil-init` diff --git a/pages.ru/common/gh-cs.md b/pages.ru/common/gh-cs.md new file mode 100644 index 0000000000..b81cf79580 --- /dev/null +++ b/pages.ru/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> Эта команда — псевдоним для `gh-codespace`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr gh-codespace` diff --git a/pages.ru/common/gnmic-sub.md b/pages.ru/common/gnmic-sub.md new file mode 100644 index 0000000000..018a700530 --- /dev/null +++ b/pages.ru/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> Эта команда — псевдоним для `gnmic subscribe`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr gnmic subscribe` diff --git a/pages.ru/common/google-chrome.md b/pages.ru/common/google-chrome.md new file mode 100644 index 0000000000..d6555a8e92 --- /dev/null +++ b/pages.ru/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> Эта команда — псевдоним для `chromium`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr chromium` diff --git a/pages.ru/common/hx.md b/pages.ru/common/hx.md new file mode 100644 index 0000000000..4f4a5572a6 --- /dev/null +++ b/pages.ru/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> Эта команда — псевдоним для `helix`. + +- Смотри документацию для оригинальной команды: + +`tldr helix` diff --git a/pages.ru/common/kafkacat.md b/pages.ru/common/kafkacat.md new file mode 100644 index 0000000000..a4eac0512f --- /dev/null +++ b/pages.ru/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> Эта команда — псевдоним для `kcat`. + +- Смотри документацию для оригинальной команды: + +`tldr kcat` diff --git a/pages.ru/common/lzcat.md b/pages.ru/common/lzcat.md new file mode 100644 index 0000000000..022920837a --- /dev/null +++ b/pages.ru/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> Эта команда — псевдоним для `xz`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr xz` diff --git a/pages.ru/common/lzma.md b/pages.ru/common/lzma.md new file mode 100644 index 0000000000..a272416e9d --- /dev/null +++ b/pages.ru/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> Эта команда — псевдоним для `xz`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr xz` diff --git a/pages.ru/common/nm-classic.md b/pages.ru/common/nm-classic.md new file mode 100644 index 0000000000..8471804517 --- /dev/null +++ b/pages.ru/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> Эта команда — псевдоним для `nm`. + +- Смотри документацию для оригинальной команды: + +`tldr nm` diff --git a/pages.ru/common/ntl.md b/pages.ru/common/ntl.md new file mode 100644 index 0000000000..07c29908f6 --- /dev/null +++ b/pages.ru/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> Эта команда — псевдоним для `netlify`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr netlify` diff --git a/pages.ru/common/ptpython3.md b/pages.ru/common/ptpython3.md new file mode 100644 index 0000000000..d271ca9227 --- /dev/null +++ b/pages.ru/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> Эта команда — псевдоним для `ptpython`. + +- Смотри документацию для оригинальной команды: + +`tldr ptpython` diff --git a/pages.ru/common/pwd.md b/pages.ru/common/pwd.md new file mode 100644 index 0000000000..a4f9e3b4e4 --- /dev/null +++ b/pages.ru/common/pwd.md @@ -0,0 +1,12 @@ +# pwd + +> Отобразить абсолютной путь до текущей/рабочей директории. +> Больше информации: . + +- Отобразить абсолютной путь до текущей директории: + +`pwd` + +- Отобразить абсолютной путь до текущей директории и "разрешить" символические ссылки (т.е. показать "фактический" путь): + +`pwd -P` diff --git a/pages.ru/common/python3.md b/pages.ru/common/python3.md new file mode 100644 index 0000000000..8da2bb01b9 --- /dev/null +++ b/pages.ru/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> Эта команда — псевдоним для `python`. + +- Смотри документацию для оригинальной команды: + +`tldr python` diff --git a/pages.ru/common/rcat.md b/pages.ru/common/rcat.md new file mode 100644 index 0000000000..69a361999d --- /dev/null +++ b/pages.ru/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> Эта команда — псевдоним для `rc`. + +- Смотри документацию для оригинальной команды: + +`tldr rc` diff --git a/pages.ru/common/ripgrep.md b/pages.ru/common/ripgrep.md new file mode 100644 index 0000000000..57eac9e8af --- /dev/null +++ b/pages.ru/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> Эта команда — псевдоним для `rg`. + +- Смотри документацию для оригинальной команды: + +`tldr rg` diff --git a/pages.ru/common/rm.md b/pages.ru/common/rm.md new file mode 100644 index 0000000000..0b994b42fa --- /dev/null +++ b/pages.ru/common/rm.md @@ -0,0 +1,24 @@ +# rm + +> Удалить файлы или каталоги. +> Больше информации: . + +- Удалить файлы из определённых мест: + +`rm {{путь/до/файла}} {{путь/до/другого_файла}}` + +- Рекурсивно удалить каталог и все его подкаталоги: + +`rm -r {{путь/до/директории}}` + +- Принудительно удалить каталог без запроса подтверждения или отображения сообщений об ошибках: + +`rm -r -f {{путь/до/директории}}` + +- Интерактивное удаление нескольких файлов с запросом перед каждым удалением: + +`rm -i {{путь/до/файла1 путь/до/файла2 ...}}` + +- Удаление файлов с подробным выводом, печать сообщения для каждого удаленного файла: + +`rm -v {{путь/до/директории/*}}` diff --git a/pages.ru/common/stty.md b/pages.ru/common/stty.md new file mode 100644 index 0000000000..1c9d293ac9 --- /dev/null +++ b/pages.ru/common/stty.md @@ -0,0 +1,20 @@ +# stty + +> Настройка параметров интерфейса терминального устройства. +> Больше информации: . + +- Показать все настройки для текущего терминала: + +`stty --all` + +- Задать количество строк или столбцов: + +`stty {{rows|cols}} {{количество}}` + +- Получить фактическую скорость передачи данных устройства: + +`stty --file {{путь/до/файла_устройства}} speed` + +- Сбросить все режимы до разумных значений для текущего терминала: + +`stty sane` diff --git a/pages.ru/common/todoman.md b/pages.ru/common/todoman.md new file mode 100644 index 0000000000..55b5409778 --- /dev/null +++ b/pages.ru/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> Эта команда — псевдоним для `todo`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr todo` diff --git a/pages.ru/common/tput.md b/pages.ru/common/tput.md new file mode 100644 index 0000000000..0467a94111 --- /dev/null +++ b/pages.ru/common/tput.md @@ -0,0 +1,28 @@ +# tput + +> Просмотр и изменение настроек и возможностей терминала. +> Больше информации: . + +- Переместить курсор в определённое место на экране: + +`tput cup {{номер_строки}} {{номер_столбца}}` + +- Установить цвет переднего плана (af) или фона (ab): + +`tput {{setaf|setab}} {{ansi_код_цвета}}` + +- Показать количество столбцов, строк или цветов: + +`tput {{cols|lines|colors}}` + +- Подать звуковой сигнал терминала: + +`tput bel` + +- Сбросить все атрибуты терминала: + +`tput sgr0` + +- Включить или отключить перенос слов: + +`tput {{smam|rmam}}` diff --git a/pages.ru/common/transmission.md b/pages.ru/common/transmission.md new file mode 100644 index 0000000000..878bacca78 --- /dev/null +++ b/pages.ru/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> Эта команда — псевдоним для `transmission-daemon`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr transmission-daemon` diff --git a/pages.ru/common/tty.md b/pages.ru/common/tty.md new file mode 100644 index 0000000000..31d4c54d84 --- /dev/null +++ b/pages.ru/common/tty.md @@ -0,0 +1,8 @@ +# tty + +> Выводит название терминала. +> Больше информации: . + +- Вывести имя файла, соответствующее текущему терминалу: + +`tty` diff --git a/pages.ru/common/unlzma.md b/pages.ru/common/unlzma.md new file mode 100644 index 0000000000..abad1e437a --- /dev/null +++ b/pages.ru/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> Эта команда — псевдоним для `xz`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr xz` diff --git a/pages.ru/common/unxz.md b/pages.ru/common/unxz.md new file mode 100644 index 0000000000..f4ad26043d --- /dev/null +++ b/pages.ru/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> Эта команда — псевдоним для `xz`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr xz` diff --git a/pages.ru/common/unzip.md b/pages.ru/common/unzip.md index 13b4df0c79..1518c20894 100644 --- a/pages.ru/common/unzip.md +++ b/pages.ru/common/unzip.md @@ -15,7 +15,7 @@ `unzip -l {{архив.zip}}` -- Извлечь содержимое файла в stdout вместе с именами распакованных файлов: +- Извлечь содержимое файла в `stdout` вместе с именами распакованных файлов: `unzip -c {{архив.zip}}` diff --git a/pages.ru/common/which.md b/pages.ru/common/which.md new file mode 100644 index 0000000000..aaae99d3de --- /dev/null +++ b/pages.ru/common/which.md @@ -0,0 +1,12 @@ +# which + +> Отобразить абсолютный путь к программе. +> Больше информации: . + +- Найти переменную окружения PATH и отобразить расположение всех соответствующих исполняемых файлов: + +`which {{исполняемый_файл}}` + +- Если есть несколько исполняемых файлов, которые совпадают, отобразить все: + +`which -a {{исполняемый_файл}}` diff --git a/pages.ru/common/xzcat.md b/pages.ru/common/xzcat.md new file mode 100644 index 0000000000..707259380e --- /dev/null +++ b/pages.ru/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> Эта команда — псевдоним для `xz`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr xz` diff --git a/pages.ru/linux/alternatives.md b/pages.ru/linux/alternatives.md new file mode 100644 index 0000000000..55e72a0fd2 --- /dev/null +++ b/pages.ru/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> Эта команда — псевдоним для `update-alternatives`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr update-alternatives` diff --git a/pages.ru/linux/batcat.md b/pages.ru/linux/batcat.md new file mode 100644 index 0000000000..1f276fd33c --- /dev/null +++ b/pages.ru/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> Эта команда — псевдоним для `bat`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr bat` diff --git a/pages.ru/linux/bspwm.md b/pages.ru/linux/bspwm.md new file mode 100644 index 0000000000..16c8da4e2e --- /dev/null +++ b/pages.ru/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> Эта команда — псевдоним для `bspc`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr bspc` diff --git a/pages.ru/linux/cc.md b/pages.ru/linux/cc.md new file mode 100644 index 0000000000..d18d20f520 --- /dev/null +++ b/pages.ru/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> Эта команда — псевдоним для `gcc`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr gcc` diff --git a/pages.ru/linux/cgroups.md b/pages.ru/linux/cgroups.md new file mode 100644 index 0000000000..878d393cfd --- /dev/null +++ b/pages.ru/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> Эта команда — псевдоним для `cgclassify`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr cgclassify` diff --git a/pages.ru/linux/ip-route-list.md b/pages.ru/linux/ip-route-list.md new file mode 100644 index 0000000000..b6831d3a26 --- /dev/null +++ b/pages.ru/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> Эта команда — псевдоним для `ip-route-show`. + +- Смотри документацию для оригинальной команды: + +`tldr ip-route-show` diff --git a/pages.ru/linux/lnav.md b/pages.ru/linux/lnav.md new file mode 100644 index 0000000000..f190b4517f --- /dev/null +++ b/pages.ru/linux/lnav.md @@ -0,0 +1,16 @@ +# lnav + +> Инструмент для просмотра и анализа файлов журналов (логов). +> Больше информации: . + +- Просмотреть логи, в качестве аргумента можно указать файл лога, каталог или URL-адрес: + +`lnav {{путь/до/файла_или_директории|url-адрес}}` + +- Просмотреть логи удаленного хоста (требуется аутентификация SSH без пароля): + +`lnav {{ssh}} {{пользователь}}@{{host1.example.com}}:{{/var/log/syslog.log}}` + +- Проверить файлы на соответствие корректности формату логов: + +`lnav -C {{путь/до/директории_с_логами}}` diff --git a/pages.ru/linux/lsb_release.md b/pages.ru/linux/lsb_release.md new file mode 100644 index 0000000000..e4ee1da6f8 --- /dev/null +++ b/pages.ru/linux/lsb_release.md @@ -0,0 +1,20 @@ +# lsb_release + +> Выводит информацию, определённую стандартом LSB (Linux Standard Base), а также характерную для дистрибутива. +> Больше информации: . + +- Отобразить всю имеющуюся информацию: + +`lsb_release -a` + +- Отобразить описание (обычно полное наименование) операционной системы: + +`lsb_release -d` + +- Отобразить наименование ОС, без указания поля "Distributor ID": + +`lsb_release -i -s` + +- Отобразить номер релиза (release number) и кодовое наименование дистрибутива без указания полей с названием: + +`lsb_release -rcs` diff --git a/pages.ru/linux/lsblk.md b/pages.ru/linux/lsblk.md new file mode 100644 index 0000000000..7e1b2100a3 --- /dev/null +++ b/pages.ru/linux/lsblk.md @@ -0,0 +1,36 @@ +# lsblk + +> Отобразить информацию об устройствах. +> Больше информации: . + +- Отобразить список всех накопителей в древовидноv виде: + +`lsblk` + +- Отобразить все устройства, в том числе "пустые": + +`lsblk -a` + +- Отобразить столбец SIZE в байтах, а не в удобночитаемом формате: + +`lsblk -b` + +- Вывод информации о файловой системе: + +`lsblk -f` + +- Использовать символы ASCII при отображении в формате дерева: + +`lsblk -i` + +- Вывести информацию о топологии блочного устройства: + +`lsblk -t` + +- Исключить устройства, указанные в списке основных номеров устройств, разделенных запятыми: + +`lsblk -e {{1,7}}` + +- Отобразить вывод с указанием списка определённых параметров, разделенных запятыми: + +`lsblk --output {{NAME}},{{SERIAL}},{{MODEL}},{{TRAN}},{{TYPE}},{{SIZE}},{{FSTYPE}},{{MOUNTPOINT}}` diff --git a/pages.ru/linux/lscpu.md b/pages.ru/linux/lscpu.md new file mode 100644 index 0000000000..950df650e0 --- /dev/null +++ b/pages.ru/linux/lscpu.md @@ -0,0 +1,16 @@ +# lscpu + +> Отображает информацию о центральном процессоре. +> Больше информации: . + +- Отобразить информацию о центральном процессоре: + +`lscpu` + +- Отобразить информацию в виде таблицы: + +`lscpu --extended` + +- Отобразить информацию в виде таблицы для процессорных ядер, которые находятся в отключенном состоянии: + +`lscpu --extended --offline` diff --git a/pages.ru/linux/lspci.md b/pages.ru/linux/lspci.md new file mode 100644 index 0000000000..3d36d61b22 --- /dev/null +++ b/pages.ru/linux/lspci.md @@ -0,0 +1,24 @@ +# lspci + +> Отобразить список всех подключенных PCI-устройств. +> Больше информации: . + +- Отобразить список всех подключенных PCI-устройств: + +`lspci` + +- Показать дополнительную информацию: + +`lspci -v` + +- Отобразить драйверы и модули, работающие с каждым устройством: + +`lspci -k` + +- Отобрзить определённое устройство: + +`lspci -s {{00:18.3}}` + +- Вывести информацию в удобном формате для чтения: + +`lspci -vm` diff --git a/pages.ru/linux/man.md b/pages.ru/linux/man.md new file mode 100644 index 0000000000..c4c79532f8 --- /dev/null +++ b/pages.ru/linux/man.md @@ -0,0 +1,32 @@ +# man + +> Утилита просмотра справочных страницs. +> Больше информации: . + +- Показать справочную страницу для команды: + +`man {{команда}}` + +- Показать справочную страницу пакета макросов команды из раздела: + +`man {{1..9}} {{команда}}` + +- Отобразить краткое описание из справочной страницы, если оно есть: + +`man --whatis {{команда}}` + +- Отобразить путь поиска справочных страниц: + +`man --path` + +- Отобразить расположение справочной страницы, а не саму справочную страницу: + +`man --where {{команда}}` + +- Отобразить справочную страницу с использованием определённой локали: + +`man --locale={{локаль}} {{команда}}` + +- Найти справочную страницу, содержащую строку поиска: + +`man --apropos "{{строка_поиска}}"` diff --git a/pages.ru/linux/megadl.md b/pages.ru/linux/megadl.md new file mode 100644 index 0000000000..2dc49d585f --- /dev/null +++ b/pages.ru/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> Эта команда — псевдоним для `megatools-dl`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr megatools-dl` diff --git a/pages.ru/linux/ubuntu-bug.md b/pages.ru/linux/ubuntu-bug.md new file mode 100644 index 0000000000..ec13db042f --- /dev/null +++ b/pages.ru/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> Эта команда — псевдоним для `apport-bug`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr apport-bug` diff --git a/pages.ru/linux/xbps-install.md b/pages.ru/linux/xbps-install.md new file mode 100644 index 0000000000..c73c37efd4 --- /dev/null +++ b/pages.ru/linux/xbps-install.md @@ -0,0 +1,13 @@ +# xbps-install + +> XBPS утилита по (пере)установке и обновлению пакетов. +> Смотрите также: `xbps`. +> Больше информации: . + +- Установить новый пакет: + +`xbps-install {{пакет}}` + +- Синхронизировать и обновить все пакеты: + +`xbps-install --sync --update` diff --git a/pages.ru/osx/aa.md b/pages.ru/osx/aa.md new file mode 100644 index 0000000000..f70e45ab23 --- /dev/null +++ b/pages.ru/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> Эта команда — псевдоним для `yaa`. + +- Смотри документацию для оригинальной команды: + +`tldr yaa` diff --git a/pages.ru/osx/g[.md b/pages.ru/osx/g[.md new file mode 100644 index 0000000000..883d77379d --- /dev/null +++ b/pages.ru/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> Эта команда — псевдоним для `-p linux [`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux [` diff --git a/pages.ru/osx/gawk.md b/pages.ru/osx/gawk.md new file mode 100644 index 0000000000..cdf552a61f --- /dev/null +++ b/pages.ru/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> Эта команда — псевдоним для `-p linux awk`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux awk` diff --git a/pages.ru/osx/gb2sum.md b/pages.ru/osx/gb2sum.md new file mode 100644 index 0000000000..ab355dcc2e --- /dev/null +++ b/pages.ru/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> Эта команда — псевдоним для `-p linux b2sum`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux b2sum` diff --git a/pages.ru/osx/gbase32.md b/pages.ru/osx/gbase32.md new file mode 100644 index 0000000000..c1e1fb5297 --- /dev/null +++ b/pages.ru/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> Эта команда — псевдоним для `-p linux base32`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux base32` diff --git a/pages.ru/osx/gbase64.md b/pages.ru/osx/gbase64.md new file mode 100644 index 0000000000..164e1254aa --- /dev/null +++ b/pages.ru/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> Эта команда — псевдоним для `-p linux base64`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux base64` diff --git a/pages.ru/osx/gbasename.md b/pages.ru/osx/gbasename.md new file mode 100644 index 0000000000..ef2683464a --- /dev/null +++ b/pages.ru/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> Эта команда — псевдоним для `-p linux basename`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux basename` diff --git a/pages.ru/osx/gbasenc.md b/pages.ru/osx/gbasenc.md new file mode 100644 index 0000000000..adb215756d --- /dev/null +++ b/pages.ru/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> Эта команда — псевдоним для `-p linux basenc`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux basenc` diff --git a/pages.ru/osx/gcat.md b/pages.ru/osx/gcat.md new file mode 100644 index 0000000000..e31b03a063 --- /dev/null +++ b/pages.ru/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> Эта команда — псевдоним для `-p linux cat`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux cat` diff --git a/pages.ru/osx/gchcon.md b/pages.ru/osx/gchcon.md new file mode 100644 index 0000000000..4ff036c487 --- /dev/null +++ b/pages.ru/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> Эта команда — псевдоним для `-p linux chcon`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux chcon` diff --git a/pages.ru/osx/gchgrp.md b/pages.ru/osx/gchgrp.md new file mode 100644 index 0000000000..b6ef488476 --- /dev/null +++ b/pages.ru/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> Эта команда — псевдоним для `-p linux chgrp`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux chgrp` diff --git a/pages.ru/osx/gchmod.md b/pages.ru/osx/gchmod.md new file mode 100644 index 0000000000..b416190ffb --- /dev/null +++ b/pages.ru/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> Эта команда — псевдоним для `-p linux chmod`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux chmod` diff --git a/pages.ru/osx/gchown.md b/pages.ru/osx/gchown.md new file mode 100644 index 0000000000..caebcade56 --- /dev/null +++ b/pages.ru/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> Эта команда — псевдоним для `-p linux chown`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux chown` diff --git a/pages.ru/osx/gchroot.md b/pages.ru/osx/gchroot.md new file mode 100644 index 0000000000..ebb4137e58 --- /dev/null +++ b/pages.ru/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> Эта команда — псевдоним для `-p linux chroot`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux chroot` diff --git a/pages.ru/osx/gcksum.md b/pages.ru/osx/gcksum.md new file mode 100644 index 0000000000..0ecb4dc430 --- /dev/null +++ b/pages.ru/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> Эта команда — псевдоним для `-p linux cksum`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux cksum` diff --git a/pages.ru/osx/gcomm.md b/pages.ru/osx/gcomm.md new file mode 100644 index 0000000000..3951d90b0a --- /dev/null +++ b/pages.ru/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> Эта команда — псевдоним для `-p linux comm`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux comm` diff --git a/pages.ru/osx/gcp.md b/pages.ru/osx/gcp.md new file mode 100644 index 0000000000..d93cf99b3c --- /dev/null +++ b/pages.ru/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> Эта команда — псевдоним для `-p linux cp`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux cp` diff --git a/pages.ru/osx/gcsplit.md b/pages.ru/osx/gcsplit.md new file mode 100644 index 0000000000..2732471a98 --- /dev/null +++ b/pages.ru/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> Эта команда — псевдоним для `-p linux csplit`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux csplit` diff --git a/pages.ru/osx/gcut.md b/pages.ru/osx/gcut.md new file mode 100644 index 0000000000..3e5eb48231 --- /dev/null +++ b/pages.ru/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> Эта команда — псевдоним для `-p linux cut`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux cut` diff --git a/pages.ru/osx/gdate.md b/pages.ru/osx/gdate.md new file mode 100644 index 0000000000..31ee648109 --- /dev/null +++ b/pages.ru/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> Эта команда — псевдоним для `-p linux date`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux date` diff --git a/pages.ru/osx/gdd.md b/pages.ru/osx/gdd.md new file mode 100644 index 0000000000..90f32ceae6 --- /dev/null +++ b/pages.ru/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> Эта команда — псевдоним для `-p linux dd`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux dd` diff --git a/pages.ru/osx/gdf.md b/pages.ru/osx/gdf.md new file mode 100644 index 0000000000..1acc57da53 --- /dev/null +++ b/pages.ru/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> Эта команда — псевдоним для `-p linux df`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux df` diff --git a/pages.ru/osx/gdir.md b/pages.ru/osx/gdir.md new file mode 100644 index 0000000000..146c5b741c --- /dev/null +++ b/pages.ru/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> Эта команда — псевдоним для `-p linux dir`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux dir` diff --git a/pages.ru/osx/gdircolors.md b/pages.ru/osx/gdircolors.md new file mode 100644 index 0000000000..b8db900216 --- /dev/null +++ b/pages.ru/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> Эта команда — псевдоним для `-p linux dircolors`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux dircolors` diff --git a/pages.ru/osx/gdirname.md b/pages.ru/osx/gdirname.md new file mode 100644 index 0000000000..d70782bdcd --- /dev/null +++ b/pages.ru/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> Эта команда — псевдоним для `-p linux dirname`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux dirname` diff --git a/pages.ru/osx/gdnsdomainname.md b/pages.ru/osx/gdnsdomainname.md new file mode 100644 index 0000000000..aecb4d0cc6 --- /dev/null +++ b/pages.ru/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> Эта команда — псевдоним для `-p linux dnsdomainname`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux dnsdomainname` diff --git a/pages.ru/osx/gecho.md b/pages.ru/osx/gecho.md new file mode 100644 index 0000000000..e132236e9f --- /dev/null +++ b/pages.ru/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> Эта команда — псевдоним для `-p linux echo`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux echo` diff --git a/pages.ru/osx/ged.md b/pages.ru/osx/ged.md new file mode 100644 index 0000000000..f5a849970b --- /dev/null +++ b/pages.ru/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> Эта команда — псевдоним для `-p linux ed`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux ed` diff --git a/pages.ru/osx/gegrep.md b/pages.ru/osx/gegrep.md new file mode 100644 index 0000000000..674ba06fa7 --- /dev/null +++ b/pages.ru/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> Эта команда — псевдоним для `-p linux egrep`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux egrep` diff --git a/pages.ru/osx/genv.md b/pages.ru/osx/genv.md new file mode 100644 index 0000000000..e0714ce87f --- /dev/null +++ b/pages.ru/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> Эта команда — псевдоним для `-p linux env`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux env` diff --git a/pages.ru/osx/gexpand.md b/pages.ru/osx/gexpand.md new file mode 100644 index 0000000000..2ed0390f4b --- /dev/null +++ b/pages.ru/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> Эта команда — псевдоним для `-p linux expand`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux expand` diff --git a/pages.ru/osx/gexpr.md b/pages.ru/osx/gexpr.md new file mode 100644 index 0000000000..21ef55a1b0 --- /dev/null +++ b/pages.ru/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> Эта команда — псевдоним для `-p linux expr`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux expr` diff --git a/pages.ru/osx/gfactor.md b/pages.ru/osx/gfactor.md new file mode 100644 index 0000000000..54fccd0693 --- /dev/null +++ b/pages.ru/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> Эта команда — псевдоним для `-p linux factor`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux factor` diff --git a/pages.ru/osx/gfalse.md b/pages.ru/osx/gfalse.md new file mode 100644 index 0000000000..3dd2e0b29a --- /dev/null +++ b/pages.ru/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> Эта команда — псевдоним для `-p linux false`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux false` diff --git a/pages.ru/osx/gfgrep.md b/pages.ru/osx/gfgrep.md new file mode 100644 index 0000000000..be3394de1a --- /dev/null +++ b/pages.ru/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> Эта команда — псевдоним для `-p linux fgrep`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux fgrep` diff --git a/pages.ru/osx/gfind.md b/pages.ru/osx/gfind.md new file mode 100644 index 0000000000..ce58a4d862 --- /dev/null +++ b/pages.ru/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> Эта команда — псевдоним для `-p linux find`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux find` diff --git a/pages.ru/osx/gfmt.md b/pages.ru/osx/gfmt.md new file mode 100644 index 0000000000..c797bda8fa --- /dev/null +++ b/pages.ru/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> Эта команда — псевдоним для `-p linux fmt`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux fmt` diff --git a/pages.ru/osx/gfold.md b/pages.ru/osx/gfold.md new file mode 100644 index 0000000000..ea08ba71d2 --- /dev/null +++ b/pages.ru/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> Эта команда — псевдоним для `-p linux fold`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux fold` diff --git a/pages.ru/osx/gftp.md b/pages.ru/osx/gftp.md new file mode 100644 index 0000000000..06a388d21f --- /dev/null +++ b/pages.ru/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> Эта команда — псевдоним для `-p linux ftp`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux ftp` diff --git a/pages.ru/osx/ggrep.md b/pages.ru/osx/ggrep.md new file mode 100644 index 0000000000..cfd4aedb20 --- /dev/null +++ b/pages.ru/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> Эта команда — псевдоним для `-p linux grep`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux grep` diff --git a/pages.ru/osx/ggroups.md b/pages.ru/osx/ggroups.md new file mode 100644 index 0000000000..9435fae7f9 --- /dev/null +++ b/pages.ru/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> Эта команда — псевдоним для `-p linux groups`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux groups` diff --git a/pages.ru/osx/ghead.md b/pages.ru/osx/ghead.md new file mode 100644 index 0000000000..4a1617fb82 --- /dev/null +++ b/pages.ru/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> Эта команда — псевдоним для `-p linux head`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux head` diff --git a/pages.ru/osx/ghostid.md b/pages.ru/osx/ghostid.md new file mode 100644 index 0000000000..d46befe8e1 --- /dev/null +++ b/pages.ru/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> Эта команда — псевдоним для `-p linux hostid`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux hostid` diff --git a/pages.ru/osx/ghostname.md b/pages.ru/osx/ghostname.md new file mode 100644 index 0000000000..a0ad02d58f --- /dev/null +++ b/pages.ru/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> Эта команда — псевдоним для `-p linux hostname`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux hostname` diff --git a/pages.ru/osx/gid.md b/pages.ru/osx/gid.md new file mode 100644 index 0000000000..99891d4390 --- /dev/null +++ b/pages.ru/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> Эта команда — псевдоним для `-p linux id`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux id` diff --git a/pages.ru/osx/gifconfig.md b/pages.ru/osx/gifconfig.md new file mode 100644 index 0000000000..75a73b7353 --- /dev/null +++ b/pages.ru/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> Эта команда — псевдоним для `-p linux ifconfig`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux ifconfig` diff --git a/pages.ru/osx/gindent.md b/pages.ru/osx/gindent.md new file mode 100644 index 0000000000..cd20a25648 --- /dev/null +++ b/pages.ru/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> Эта команда — псевдоним для `-p linux indent`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux indent` diff --git a/pages.ru/osx/ginstall.md b/pages.ru/osx/ginstall.md new file mode 100644 index 0000000000..01777c5aa7 --- /dev/null +++ b/pages.ru/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> Эта команда — псевдоним для `-p linux install`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux install` diff --git a/pages.ru/osx/gjoin.md b/pages.ru/osx/gjoin.md new file mode 100644 index 0000000000..9a3c7d5baf --- /dev/null +++ b/pages.ru/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> Эта команда — псевдоним для `-p linux join`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux join` diff --git a/pages.ru/osx/gkill.md b/pages.ru/osx/gkill.md new file mode 100644 index 0000000000..a57d380998 --- /dev/null +++ b/pages.ru/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> Эта команда — псевдоним для `-p linux kill`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux kill` diff --git a/pages.ru/osx/glibtool.md b/pages.ru/osx/glibtool.md new file mode 100644 index 0000000000..97e4032cd1 --- /dev/null +++ b/pages.ru/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> Эта команда — псевдоним для `-p linux libtool`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux libtool` diff --git a/pages.ru/osx/glibtoolize.md b/pages.ru/osx/glibtoolize.md new file mode 100644 index 0000000000..128c967aec --- /dev/null +++ b/pages.ru/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> Эта команда — псевдоним для `-p linux libtoolize`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux libtoolize` diff --git a/pages.ru/osx/glink.md b/pages.ru/osx/glink.md new file mode 100644 index 0000000000..fcc54173a0 --- /dev/null +++ b/pages.ru/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> Эта команда — псевдоним для `-p linux link`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux link` diff --git a/pages.ru/osx/gln.md b/pages.ru/osx/gln.md new file mode 100644 index 0000000000..45bf0d5af3 --- /dev/null +++ b/pages.ru/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> Эта команда — псевдоним для `-p linux ln`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux ln` diff --git a/pages.ru/osx/glocate.md b/pages.ru/osx/glocate.md new file mode 100644 index 0000000000..adba45f9e0 --- /dev/null +++ b/pages.ru/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> Эта команда — псевдоним для `-p linux locate`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux locate` diff --git a/pages.ru/osx/glogger.md b/pages.ru/osx/glogger.md new file mode 100644 index 0000000000..7644728cce --- /dev/null +++ b/pages.ru/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> Эта команда — псевдоним для `-p linux logger`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux logger` diff --git a/pages.ru/osx/glogname.md b/pages.ru/osx/glogname.md new file mode 100644 index 0000000000..da28c35bf3 --- /dev/null +++ b/pages.ru/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> Эта команда — псевдоним для `-p linux logname`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux logname` diff --git a/pages.ru/osx/gls.md b/pages.ru/osx/gls.md new file mode 100644 index 0000000000..b2993c8751 --- /dev/null +++ b/pages.ru/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> Эта команда — псевдоним для `-p linux ls`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux ls` diff --git a/pages.ru/osx/gmake.md b/pages.ru/osx/gmake.md new file mode 100644 index 0000000000..2d2b644827 --- /dev/null +++ b/pages.ru/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> Эта команда — псевдоним для `-p linux make`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux make` diff --git a/pages.ru/osx/gmd5sum.md b/pages.ru/osx/gmd5sum.md new file mode 100644 index 0000000000..3f3ed231cd --- /dev/null +++ b/pages.ru/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> Эта команда — псевдоним для `-p linux md5sum`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux md5sum` diff --git a/pages.ru/osx/gmkdir.md b/pages.ru/osx/gmkdir.md new file mode 100644 index 0000000000..1ecdea5d16 --- /dev/null +++ b/pages.ru/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> Эта команда — псевдоним для `-p linux mkdir`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux mkdir` diff --git a/pages.ru/osx/gmkfifo.md b/pages.ru/osx/gmkfifo.md new file mode 100644 index 0000000000..b8afb90093 --- /dev/null +++ b/pages.ru/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> Эта команда — псевдоним для `-p linux mkfifo`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux mkfifo` diff --git a/pages.ru/osx/gmknod.md b/pages.ru/osx/gmknod.md new file mode 100644 index 0000000000..cadc2bd805 --- /dev/null +++ b/pages.ru/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> Эта команда — псевдоним для `-p linux mknod`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux mknod` diff --git a/pages.ru/osx/gmktemp.md b/pages.ru/osx/gmktemp.md new file mode 100644 index 0000000000..99ce5924ce --- /dev/null +++ b/pages.ru/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> Эта команда — псевдоним для `-p linux mktemp`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux mktemp` diff --git a/pages.ru/osx/gmv.md b/pages.ru/osx/gmv.md new file mode 100644 index 0000000000..6b6e6dca03 --- /dev/null +++ b/pages.ru/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> Эта команда — псевдоним для `-p linux mv`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux mv` diff --git a/pages.ru/osx/gnice.md b/pages.ru/osx/gnice.md new file mode 100644 index 0000000000..83e2d58dca --- /dev/null +++ b/pages.ru/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> Эта команда — псевдоним для `-p linux nice`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux nice` diff --git a/pages.ru/osx/gnl.md b/pages.ru/osx/gnl.md new file mode 100644 index 0000000000..9988219b24 --- /dev/null +++ b/pages.ru/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> Эта команда — псевдоним для `-p linux nl`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux nl` diff --git a/pages.ru/osx/gnohup.md b/pages.ru/osx/gnohup.md new file mode 100644 index 0000000000..49b8f598e5 --- /dev/null +++ b/pages.ru/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> Эта команда — псевдоним для `-p linux nohup`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux nohup` diff --git a/pages.ru/osx/gnproc.md b/pages.ru/osx/gnproc.md new file mode 100644 index 0000000000..8e1781f236 --- /dev/null +++ b/pages.ru/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> Эта команда — псевдоним для `-p linux nproc`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux nproc` diff --git a/pages.ru/osx/gnumfmt.md b/pages.ru/osx/gnumfmt.md new file mode 100644 index 0000000000..44296a6755 --- /dev/null +++ b/pages.ru/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> Эта команда — псевдоним для `-p linux numfmt`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux numfmt` diff --git a/pages.ru/osx/god.md b/pages.ru/osx/god.md new file mode 100644 index 0000000000..16a55e922c --- /dev/null +++ b/pages.ru/osx/god.md @@ -0,0 +1,7 @@ +# god + +> Эта команда — псевдоним для `-p linux od`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux od` diff --git a/pages.ru/osx/gpaste.md b/pages.ru/osx/gpaste.md new file mode 100644 index 0000000000..000ebc931d --- /dev/null +++ b/pages.ru/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> Эта команда — псевдоним для `-p linux paste`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux paste` diff --git a/pages.ru/osx/gpathchk.md b/pages.ru/osx/gpathchk.md new file mode 100644 index 0000000000..94725b3aa4 --- /dev/null +++ b/pages.ru/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> Эта команда — псевдоним для `-p linux pathchk`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux pathchk` diff --git a/pages.ru/osx/gping.md b/pages.ru/osx/gping.md new file mode 100644 index 0000000000..daa80b94c8 --- /dev/null +++ b/pages.ru/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> Эта команда — псевдоним для `-p linux ping`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux ping` diff --git a/pages.ru/osx/gping6.md b/pages.ru/osx/gping6.md new file mode 100644 index 0000000000..bff9cddb43 --- /dev/null +++ b/pages.ru/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> Эта команда — псевдоним для `-p linux ping6`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux ping6` diff --git a/pages.ru/osx/gpinky.md b/pages.ru/osx/gpinky.md new file mode 100644 index 0000000000..c2b465c4e1 --- /dev/null +++ b/pages.ru/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> Эта команда — псевдоним для `-p linux pinky`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux pinky` diff --git a/pages.ru/osx/gpr.md b/pages.ru/osx/gpr.md new file mode 100644 index 0000000000..f59b323e73 --- /dev/null +++ b/pages.ru/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> Эта команда — псевдоним для `-p linux pr`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux pr` diff --git a/pages.ru/osx/gprintenv.md b/pages.ru/osx/gprintenv.md new file mode 100644 index 0000000000..5bd5976122 --- /dev/null +++ b/pages.ru/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> Эта команда — псевдоним для `-p linux printenv`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux printenv` diff --git a/pages.ru/osx/gprintf.md b/pages.ru/osx/gprintf.md new file mode 100644 index 0000000000..b3d3ee3c12 --- /dev/null +++ b/pages.ru/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> Эта команда — псевдоним для `-p linux printf`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux printf` diff --git a/pages.ru/osx/gptx.md b/pages.ru/osx/gptx.md new file mode 100644 index 0000000000..ab562b41d6 --- /dev/null +++ b/pages.ru/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> Эта команда — псевдоним для `-p linux ptx`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux ptx` diff --git a/pages.ru/osx/gpwd.md b/pages.ru/osx/gpwd.md new file mode 100644 index 0000000000..b1e21983f7 --- /dev/null +++ b/pages.ru/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> Эта команда — псевдоним для `-p linux pwd`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux pwd` diff --git a/pages.ru/osx/grcp.md b/pages.ru/osx/grcp.md new file mode 100644 index 0000000000..bda738d68a --- /dev/null +++ b/pages.ru/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> Эта команда — псевдоним для `-p linux rcp`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux rcp` diff --git a/pages.ru/osx/greadlink.md b/pages.ru/osx/greadlink.md new file mode 100644 index 0000000000..cd8d428c61 --- /dev/null +++ b/pages.ru/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> Эта команда — псевдоним для `-p linux readlink`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux readlink` diff --git a/pages.ru/osx/grealpath.md b/pages.ru/osx/grealpath.md new file mode 100644 index 0000000000..06eee2383c --- /dev/null +++ b/pages.ru/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> Эта команда — псевдоним для `-p linux realpath`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux realpath` diff --git a/pages.ru/osx/grexec.md b/pages.ru/osx/grexec.md new file mode 100644 index 0000000000..271dda2754 --- /dev/null +++ b/pages.ru/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> Эта команда — псевдоним для `-p linux rexec`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux rexec` diff --git a/pages.ru/osx/grlogin.md b/pages.ru/osx/grlogin.md new file mode 100644 index 0000000000..6d3cc73c02 --- /dev/null +++ b/pages.ru/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> Эта команда — псевдоним для `-p linux rlogin`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux rlogin` diff --git a/pages.ru/osx/grm.md b/pages.ru/osx/grm.md new file mode 100644 index 0000000000..15afc1ec09 --- /dev/null +++ b/pages.ru/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> Эта команда — псевдоним для `-p linux rm`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux rm` diff --git a/pages.ru/osx/grmdir.md b/pages.ru/osx/grmdir.md new file mode 100644 index 0000000000..bfddf6bed6 --- /dev/null +++ b/pages.ru/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> Эта команда — псевдоним для `-p linux rmdir`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux rmdir` diff --git a/pages.ru/osx/grsh.md b/pages.ru/osx/grsh.md new file mode 100644 index 0000000000..769ea7244c --- /dev/null +++ b/pages.ru/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> Эта команда — псевдоним для `-p linux rsh`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux rsh` diff --git a/pages.ru/osx/gruncon.md b/pages.ru/osx/gruncon.md new file mode 100644 index 0000000000..63c0c67aa7 --- /dev/null +++ b/pages.ru/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> Эта команда — псевдоним для `-p linux runcon`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux runcon` diff --git a/pages.ru/osx/gsed.md b/pages.ru/osx/gsed.md new file mode 100644 index 0000000000..66f22e8262 --- /dev/null +++ b/pages.ru/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> Эта команда — псевдоним для `-p linux sed`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux sed` diff --git a/pages.ru/osx/gseq.md b/pages.ru/osx/gseq.md new file mode 100644 index 0000000000..4d5f0addd5 --- /dev/null +++ b/pages.ru/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> Эта команда — псевдоним для `-p linux seq`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux seq` diff --git a/pages.ru/osx/gsha1sum.md b/pages.ru/osx/gsha1sum.md new file mode 100644 index 0000000000..34807907aa --- /dev/null +++ b/pages.ru/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> Эта команда — псевдоним для `-p linux sha1sum`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux sha1sum` diff --git a/pages.ru/osx/gsha224sum.md b/pages.ru/osx/gsha224sum.md new file mode 100644 index 0000000000..e46c03f936 --- /dev/null +++ b/pages.ru/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> Эта команда — псевдоним для `-p linux sha224sum`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux sha224sum` diff --git a/pages.ru/osx/gsha256sum.md b/pages.ru/osx/gsha256sum.md new file mode 100644 index 0000000000..2cc48d9b94 --- /dev/null +++ b/pages.ru/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> Эта команда — псевдоним для `-p linux sha256sum`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux sha256sum` diff --git a/pages.ru/osx/gsha384sum.md b/pages.ru/osx/gsha384sum.md new file mode 100644 index 0000000000..164304fed7 --- /dev/null +++ b/pages.ru/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> Эта команда — псевдоним для `-p linux sha384sum`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux sha384sum` diff --git a/pages.ru/osx/gsha512sum.md b/pages.ru/osx/gsha512sum.md new file mode 100644 index 0000000000..14fc18bd19 --- /dev/null +++ b/pages.ru/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> Эта команда — псевдоним для `-p linux sha512sum`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux sha512sum` diff --git a/pages.ru/osx/gshred.md b/pages.ru/osx/gshred.md new file mode 100644 index 0000000000..00b895bbe3 --- /dev/null +++ b/pages.ru/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> Эта команда — псевдоним для `-p linux shred`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux shred` diff --git a/pages.ru/osx/gshuf.md b/pages.ru/osx/gshuf.md new file mode 100644 index 0000000000..084cb408f5 --- /dev/null +++ b/pages.ru/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> Эта команда — псевдоним для `-p linux shuf`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux shuf` diff --git a/pages.ru/osx/gsleep.md b/pages.ru/osx/gsleep.md new file mode 100644 index 0000000000..e17ee04d62 --- /dev/null +++ b/pages.ru/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> Эта команда — псевдоним для `-p linux sleep`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux sleep` diff --git a/pages.ru/osx/gsort.md b/pages.ru/osx/gsort.md new file mode 100644 index 0000000000..9b36cd71f7 --- /dev/null +++ b/pages.ru/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> Эта команда — псевдоним для `-p linux sort`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux sort` diff --git a/pages.ru/osx/gsplit.md b/pages.ru/osx/gsplit.md new file mode 100644 index 0000000000..965f1013d8 --- /dev/null +++ b/pages.ru/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> Эта команда — псевдоним для `-p linux split`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux split` diff --git a/pages.ru/osx/gstat.md b/pages.ru/osx/gstat.md new file mode 100644 index 0000000000..0b8d62b95f --- /dev/null +++ b/pages.ru/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> Эта команда — псевдоним для `-p linux stat`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux stat` diff --git a/pages.ru/osx/gstdbuf.md b/pages.ru/osx/gstdbuf.md new file mode 100644 index 0000000000..cce202ea9d --- /dev/null +++ b/pages.ru/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> Эта команда — псевдоним для `-p linux stdbuf`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux stdbuf` diff --git a/pages.ru/osx/gstty.md b/pages.ru/osx/gstty.md new file mode 100644 index 0000000000..b45dfc39b7 --- /dev/null +++ b/pages.ru/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> Эта команда — псевдоним для `-p linux stty`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux stty` diff --git a/pages.ru/osx/gsum.md b/pages.ru/osx/gsum.md new file mode 100644 index 0000000000..b6af0084d4 --- /dev/null +++ b/pages.ru/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> Эта команда — псевдоним для `-p linux sum`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux sum` diff --git a/pages.ru/osx/gsync.md b/pages.ru/osx/gsync.md new file mode 100644 index 0000000000..e76fbe02a9 --- /dev/null +++ b/pages.ru/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> Эта команда — псевдоним для `-p linux sync`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux sync` diff --git a/pages.ru/osx/gtac.md b/pages.ru/osx/gtac.md new file mode 100644 index 0000000000..352d7145d7 --- /dev/null +++ b/pages.ru/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> Эта команда — псевдоним для `-p linux tac`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux tac` diff --git a/pages.ru/osx/gtail.md b/pages.ru/osx/gtail.md new file mode 100644 index 0000000000..f9f0db5ffc --- /dev/null +++ b/pages.ru/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> Эта команда — псевдоним для `-p linux tail`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux tail` diff --git a/pages.ru/osx/gtalk.md b/pages.ru/osx/gtalk.md new file mode 100644 index 0000000000..f301c729ba --- /dev/null +++ b/pages.ru/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> Эта команда — псевдоним для `-p linux talk`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux talk` diff --git a/pages.ru/osx/gtar.md b/pages.ru/osx/gtar.md new file mode 100644 index 0000000000..9528437517 --- /dev/null +++ b/pages.ru/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> Эта команда — псевдоним для `-p linux tar`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux tar` diff --git a/pages.ru/osx/gtee.md b/pages.ru/osx/gtee.md new file mode 100644 index 0000000000..94afaf2404 --- /dev/null +++ b/pages.ru/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> Эта команда — псевдоним для `-p linux tee`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux tee` diff --git a/pages.ru/osx/gtelnet.md b/pages.ru/osx/gtelnet.md new file mode 100644 index 0000000000..5b9201db3f --- /dev/null +++ b/pages.ru/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> Эта команда — псевдоним для `-p linux telnet`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux telnet` diff --git a/pages.ru/osx/gtest.md b/pages.ru/osx/gtest.md new file mode 100644 index 0000000000..2ea8b40333 --- /dev/null +++ b/pages.ru/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> Эта команда — псевдоним для `-p linux test`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux test` diff --git a/pages.ru/osx/gtftp.md b/pages.ru/osx/gtftp.md new file mode 100644 index 0000000000..4a1d51d559 --- /dev/null +++ b/pages.ru/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> Эта команда — псевдоним для `-p linux tftp`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux tftp` diff --git a/pages.ru/osx/gtime.md b/pages.ru/osx/gtime.md new file mode 100644 index 0000000000..9434227d38 --- /dev/null +++ b/pages.ru/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> Эта команда — псевдоним для `-p linux time`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux time` diff --git a/pages.ru/osx/gtimeout.md b/pages.ru/osx/gtimeout.md new file mode 100644 index 0000000000..bb2bed8ef8 --- /dev/null +++ b/pages.ru/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> Эта команда — псевдоним для `-p linux timeout`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux timeout` diff --git a/pages.ru/osx/gtouch.md b/pages.ru/osx/gtouch.md new file mode 100644 index 0000000000..ddbc70f93a --- /dev/null +++ b/pages.ru/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> Эта команда — псевдоним для `-p linux touch`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux touch` diff --git a/pages.ru/osx/gtr.md b/pages.ru/osx/gtr.md new file mode 100644 index 0000000000..384f3a0bfe --- /dev/null +++ b/pages.ru/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> Эта команда — псевдоним для `-p linux tr`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux tr` diff --git a/pages.ru/osx/gtraceroute.md b/pages.ru/osx/gtraceroute.md new file mode 100644 index 0000000000..cf462aef7b --- /dev/null +++ b/pages.ru/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> Эта команда — псевдоним для `-p linux traceroute`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux traceroute` diff --git a/pages.ru/osx/gtrue.md b/pages.ru/osx/gtrue.md new file mode 100644 index 0000000000..e72e51164e --- /dev/null +++ b/pages.ru/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> Эта команда — псевдоним для `-p linux true`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux true` diff --git a/pages.ru/osx/gtruncate.md b/pages.ru/osx/gtruncate.md new file mode 100644 index 0000000000..96318e1b2d --- /dev/null +++ b/pages.ru/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> Эта команда — псевдоним для `-p linux truncate`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux truncate` diff --git a/pages.ru/osx/gtsort.md b/pages.ru/osx/gtsort.md new file mode 100644 index 0000000000..0d8651436f --- /dev/null +++ b/pages.ru/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> Эта команда — псевдоним для `-p linux tsort`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux tsort` diff --git a/pages.ru/osx/gtty.md b/pages.ru/osx/gtty.md new file mode 100644 index 0000000000..9deab27365 --- /dev/null +++ b/pages.ru/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> Эта команда — псевдоним для `-p linux tty`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux tty` diff --git a/pages.ru/osx/guname.md b/pages.ru/osx/guname.md new file mode 100644 index 0000000000..b169311d04 --- /dev/null +++ b/pages.ru/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> Эта команда — псевдоним для `-p linux uname`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux uname` diff --git a/pages.ru/osx/gunexpand.md b/pages.ru/osx/gunexpand.md new file mode 100644 index 0000000000..df5b90d268 --- /dev/null +++ b/pages.ru/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> Эта команда — псевдоним для `-p linux unexpand`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux unexpand` diff --git a/pages.ru/osx/guniq.md b/pages.ru/osx/guniq.md new file mode 100644 index 0000000000..ea202c8e44 --- /dev/null +++ b/pages.ru/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> Эта команда — псевдоним для `-p linux uniq`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux uniq` diff --git a/pages.ru/osx/gunits.md b/pages.ru/osx/gunits.md new file mode 100644 index 0000000000..dc080e62e4 --- /dev/null +++ b/pages.ru/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> Эта команда — псевдоним для `-p linux units`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux units` diff --git a/pages.ru/osx/gunlink.md b/pages.ru/osx/gunlink.md new file mode 100644 index 0000000000..cdce625450 --- /dev/null +++ b/pages.ru/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> Эта команда — псевдоним для `-p linux unlink`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux unlink` diff --git a/pages.ru/osx/gupdatedb.md b/pages.ru/osx/gupdatedb.md new file mode 100644 index 0000000000..348f60db2a --- /dev/null +++ b/pages.ru/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> Эта команда — псевдоним для `-p linux updatedb`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux updatedb` diff --git a/pages.ru/osx/guptime.md b/pages.ru/osx/guptime.md new file mode 100644 index 0000000000..f75d85f9e0 --- /dev/null +++ b/pages.ru/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> Эта команда — псевдоним для `-p linux uptime`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux uptime` diff --git a/pages.ru/osx/gusers.md b/pages.ru/osx/gusers.md new file mode 100644 index 0000000000..26093ee575 --- /dev/null +++ b/pages.ru/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> Эта команда — псевдоним для `-p linux users`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux users` diff --git a/pages.ru/osx/gvdir.md b/pages.ru/osx/gvdir.md new file mode 100644 index 0000000000..2bdedd7092 --- /dev/null +++ b/pages.ru/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> Эта команда — псевдоним для `-p linux vdir`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux vdir` diff --git a/pages.ru/osx/gwc.md b/pages.ru/osx/gwc.md new file mode 100644 index 0000000000..aa2db01f73 --- /dev/null +++ b/pages.ru/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> Эта команда — псевдоним для `-p linux wc`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux wc` diff --git a/pages.ru/osx/gwhich.md b/pages.ru/osx/gwhich.md new file mode 100644 index 0000000000..42e0fac9e5 --- /dev/null +++ b/pages.ru/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> Эта команда — псевдоним для `-p linux which`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux which` diff --git a/pages.ru/osx/gwho.md b/pages.ru/osx/gwho.md new file mode 100644 index 0000000000..e836b57d64 --- /dev/null +++ b/pages.ru/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> Эта команда — псевдоним для `-p linux who`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux who` diff --git a/pages.ru/osx/gwhoami.md b/pages.ru/osx/gwhoami.md new file mode 100644 index 0000000000..f9b6709560 --- /dev/null +++ b/pages.ru/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> Эта команда — псевдоним для `-p linux whoami`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux whoami` diff --git a/pages.ru/osx/gwhois.md b/pages.ru/osx/gwhois.md new file mode 100644 index 0000000000..15c517450b --- /dev/null +++ b/pages.ru/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> Эта команда — псевдоним для `-p linux whois`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux whois` diff --git a/pages.ru/osx/gxargs.md b/pages.ru/osx/gxargs.md new file mode 100644 index 0000000000..43e5b29dcc --- /dev/null +++ b/pages.ru/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> Эта команда — псевдоним для `-p linux xargs`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux xargs` diff --git a/pages.ru/osx/gyes.md b/pages.ru/osx/gyes.md new file mode 100644 index 0000000000..91352bd002 --- /dev/null +++ b/pages.ru/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> Эта команда — псевдоним для `-p linux yes`. + +- Смотри документацию для оригинальной команды: + +`tldr -p linux yes` diff --git a/pages.ru/osx/launchd.md b/pages.ru/osx/launchd.md new file mode 100644 index 0000000000..61d35869dd --- /dev/null +++ b/pages.ru/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> Эта команда — псевдоним для `launchctl`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr launchctl` diff --git a/pages.ru/sunos/devfsadm.md b/pages.ru/sunos/devfsadm.md new file mode 100644 index 0000000000..20b4d0a2d4 --- /dev/null +++ b/pages.ru/sunos/devfsadm.md @@ -0,0 +1,16 @@ +# devfsadm + +> Команда администрирования для `/dev`. Поддерживает пространство имен `/dev`. +> Больше информации: . + +- Сканировать для новых дисков: + +`devfsadm -c disk` + +- Очистить все оборванные ссылки `/dev` и выполнить поиск нового устройства: + +`devfsadm -C -v` + +- Пробный-запуск - вывод того, что бы изменилось, но без произведения модификаций: + +`devfsadm -C -v -n` diff --git a/pages.ru/windows/chrome.md b/pages.ru/windows/chrome.md new file mode 100644 index 0000000000..9bd54ee477 --- /dev/null +++ b/pages.ru/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> Эта команда — псевдоним для `chromium`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr chromium` diff --git a/pages.ru/windows/cpush.md b/pages.ru/windows/cpush.md new file mode 100644 index 0000000000..f54a737718 --- /dev/null +++ b/pages.ru/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> Эта команда — псевдоним для `choco-push`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr choco-push` diff --git a/pages.ru/windows/curl.md b/pages.ru/windows/curl.md new file mode 100644 index 0000000000..915d7b8b58 --- /dev/null +++ b/pages.ru/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> Эта команда — псевдоним для `curl -p common`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr curl -p common` diff --git a/pages.ru/windows/iwr.md b/pages.ru/windows/iwr.md new file mode 100644 index 0000000000..edf07e08ba --- /dev/null +++ b/pages.ru/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> Эта команда — псевдоним для `invoke-webrequest`. + +- Смотри документацию для оригинальной команды: + +`tldr invoke-webrequest` diff --git a/pages.ru/windows/pwsh-where.md b/pages.ru/windows/pwsh-where.md new file mode 100644 index 0000000000..731fb6b933 --- /dev/null +++ b/pages.ru/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> Эта команда — псевдоним для `Where-Object`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr Where-Object` diff --git a/pages.ru/windows/rd.md b/pages.ru/windows/rd.md new file mode 100644 index 0000000000..e5791c0a0e --- /dev/null +++ b/pages.ru/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> Эта команда — псевдоним для `rmdir`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr rmdir` diff --git a/pages.ru/windows/sls.md b/pages.ru/windows/sls.md new file mode 100644 index 0000000000..76aa7109fe --- /dev/null +++ b/pages.ru/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> Эта команда — псевдоним для `where-object`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr where-object` diff --git a/pages.ru/windows/wget.md b/pages.ru/windows/wget.md new file mode 100644 index 0000000000..e0237911d3 --- /dev/null +++ b/pages.ru/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> Эта команда — псевдоним для `wget -p common`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr wget -p common` diff --git a/pages.sh/common/sh.md b/pages.sh/common/sh.md index e3f343c5ec..03999ece44 100644 --- a/pages.sh/common/sh.md +++ b/pages.sh/common/sh.md @@ -16,6 +16,6 @@ `sh {{datoteka.sh}}` -- Pokreni komande iz stdin-a: +- Pokreni komande iz `stdin`-a: `sh -s` diff --git a/pages.sh/common/tldr-lint.md b/pages.sh/common/tldr-lint.md index 0c9a7557a4..c42cee0aa8 100644 --- a/pages.sh/common/tldr-lint.md +++ b/pages.sh/common/tldr-lint.md @@ -7,7 +7,7 @@ `tldr-lint {{direktorijum_stranica}}` -- Formatiraj određenu stranicu u stdout: +- Formatiraj određenu stranicu u `stdout`: `tldr-lint --format {{stranica.md}}` diff --git a/pages.sv/common/bundler.md b/pages.sv/common/bundler.md new file mode 100644 index 0000000000..4443d1dbe8 --- /dev/null +++ b/pages.sv/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> Det här kommandot är ett alias för `bundle`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr bundle` diff --git a/pages.sv/common/clamav.md b/pages.sv/common/clamav.md new file mode 100644 index 0000000000..0c87f62e78 --- /dev/null +++ b/pages.sv/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> Det här kommandot är ett alias för `clamdscan`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr clamdscan` diff --git a/pages.sv/common/cron.md b/pages.sv/common/cron.md new file mode 100644 index 0000000000..e0559419fc --- /dev/null +++ b/pages.sv/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> Det här kommandot är ett alias för `crontab`. + +- Se dokumentationen för orginalkommandot: + +`tldr crontab` diff --git a/pages.sv/common/fossil-ci.md b/pages.sv/common/fossil-ci.md new file mode 100644 index 0000000000..bfd805bdc7 --- /dev/null +++ b/pages.sv/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> Det här kommandot är ett alias för `fossil-commit`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr fossil-commit` diff --git a/pages.sv/common/fossil-delete.md b/pages.sv/common/fossil-delete.md new file mode 100644 index 0000000000..e7f09ecdfa --- /dev/null +++ b/pages.sv/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> Det här kommandot är ett alias för `fossil rm`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr fossil rm` diff --git a/pages.sv/common/fossil-forget.md b/pages.sv/common/fossil-forget.md new file mode 100644 index 0000000000..289d25ec8e --- /dev/null +++ b/pages.sv/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> Det här kommandot är ett alias för `fossil rm`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr fossil rm` diff --git a/pages.sv/common/fossil-new.md b/pages.sv/common/fossil-new.md new file mode 100644 index 0000000000..691f47ee96 --- /dev/null +++ b/pages.sv/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> Det här kommandot är ett alias för `fossil-init`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr fossil-init` diff --git a/pages.sv/common/gh-cs.md b/pages.sv/common/gh-cs.md new file mode 100644 index 0000000000..f225a45969 --- /dev/null +++ b/pages.sv/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> Det här kommandot är ett alias för `gh-codespace`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr gh-codespace` diff --git a/pages.sv/common/gnmic-sub.md b/pages.sv/common/gnmic-sub.md new file mode 100644 index 0000000000..45608f52d7 --- /dev/null +++ b/pages.sv/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> Det här kommandot är ett alias för `gnmic subscribe`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr gnmic subscribe` diff --git a/pages.sv/common/google-chrome.md b/pages.sv/common/google-chrome.md new file mode 100644 index 0000000000..085382a5c3 --- /dev/null +++ b/pages.sv/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> Det här kommandot är ett alias för `chromium`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr chromium` diff --git a/pages.sv/common/hx.md b/pages.sv/common/hx.md new file mode 100644 index 0000000000..46aa7f9d75 --- /dev/null +++ b/pages.sv/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> Det här kommandot är ett alias för `helix`. + +- Se dokumentationen för orginalkommandot: + +`tldr helix` diff --git a/pages.sv/common/kafkacat.md b/pages.sv/common/kafkacat.md new file mode 100644 index 0000000000..30e1e1f872 --- /dev/null +++ b/pages.sv/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> Det här kommandot är ett alias för `kcat`. + +- Se dokumentationen för orginalkommandot: + +`tldr kcat` diff --git a/pages.sv/common/lzcat.md b/pages.sv/common/lzcat.md new file mode 100644 index 0000000000..971ba00f31 --- /dev/null +++ b/pages.sv/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> Det här kommandot är ett alias för `xz`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr xz` diff --git a/pages.sv/common/lzma.md b/pages.sv/common/lzma.md new file mode 100644 index 0000000000..2e6e3b8f5f --- /dev/null +++ b/pages.sv/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> Det här kommandot är ett alias för `xz`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr xz` diff --git a/pages.sv/common/nm-classic.md b/pages.sv/common/nm-classic.md new file mode 100644 index 0000000000..c35499649b --- /dev/null +++ b/pages.sv/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> Det här kommandot är ett alias för `nm`. + +- Se dokumentationen för orginalkommandot: + +`tldr nm` diff --git a/pages.sv/common/ntl.md b/pages.sv/common/ntl.md new file mode 100644 index 0000000000..c548e2c120 --- /dev/null +++ b/pages.sv/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> Det här kommandot är ett alias för `netlify`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr netlify` diff --git a/pages.sv/common/ptpython3.md b/pages.sv/common/ptpython3.md new file mode 100644 index 0000000000..e32843c0fc --- /dev/null +++ b/pages.sv/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> Det här kommandot är ett alias för `ptpython`. + +- Se dokumentationen för orginalkommandot: + +`tldr ptpython` diff --git a/pages.sv/common/python3.md b/pages.sv/common/python3.md new file mode 100644 index 0000000000..3e8e7f5d3d --- /dev/null +++ b/pages.sv/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> Det här kommandot är ett alias för `python`. + +- Se dokumentationen för orginalkommandot: + +`tldr python` diff --git a/pages.sv/common/rcat.md b/pages.sv/common/rcat.md new file mode 100644 index 0000000000..6a6d7040ac --- /dev/null +++ b/pages.sv/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> Det här kommandot är ett alias för `rc`. + +- Se dokumentationen för orginalkommandot: + +`tldr rc` diff --git a/pages.sv/common/rev.md b/pages.sv/common/rev.md index 3fa1e195be..711a454bc1 100644 --- a/pages.sv/common/rev.md +++ b/pages.sv/common/rev.md @@ -7,6 +7,6 @@ `echo "hello" | rev` -- Omvänd hel fil och skriv till stdout: +- Omvänd hel fil och skriv till `stdout`: `rev {{fil}}` diff --git a/pages.sv/common/ripgrep.md b/pages.sv/common/ripgrep.md new file mode 100644 index 0000000000..04506312ea --- /dev/null +++ b/pages.sv/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> Det här kommandot är ett alias för `rg`. + +- Se dokumentationen för orginalkommandot: + +`tldr rg` diff --git a/pages.sv/common/todoman.md b/pages.sv/common/todoman.md new file mode 100644 index 0000000000..4716d1af9d --- /dev/null +++ b/pages.sv/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> Det här kommandot är ett alias för `todo`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr todo` diff --git a/pages.sv/common/transmission.md b/pages.sv/common/transmission.md new file mode 100644 index 0000000000..f13acb6a24 --- /dev/null +++ b/pages.sv/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> Det här kommandot är ett alias för `transmission-daemon`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr transmission-daemon` diff --git a/pages.sv/common/unlzma.md b/pages.sv/common/unlzma.md new file mode 100644 index 0000000000..0089076089 --- /dev/null +++ b/pages.sv/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> Det här kommandot är ett alias för `xz`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr xz` diff --git a/pages.sv/common/unxz.md b/pages.sv/common/unxz.md new file mode 100644 index 0000000000..763f246418 --- /dev/null +++ b/pages.sv/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> Det här kommandot är ett alias för `xz`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr xz` diff --git a/pages.sv/common/xzcat.md b/pages.sv/common/xzcat.md new file mode 100644 index 0000000000..295a775d3e --- /dev/null +++ b/pages.sv/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> Det här kommandot är ett alias för `xz`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr xz` diff --git a/pages.sv/linux/alternatives.md b/pages.sv/linux/alternatives.md new file mode 100644 index 0000000000..d6dc5c509e --- /dev/null +++ b/pages.sv/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> Det här kommandot är ett alias för `update-alternatives`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr update-alternatives` diff --git a/pages.sv/linux/batcat.md b/pages.sv/linux/batcat.md new file mode 100644 index 0000000000..e452545bf0 --- /dev/null +++ b/pages.sv/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> Det här kommandot är ett alias för `bat`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr bat` diff --git a/pages.sv/linux/bspwm.md b/pages.sv/linux/bspwm.md new file mode 100644 index 0000000000..7c96f20c99 --- /dev/null +++ b/pages.sv/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> Det här kommandot är ett alias för `bspc`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr bspc` diff --git a/pages.sv/linux/cc.md b/pages.sv/linux/cc.md new file mode 100644 index 0000000000..09b9fd1c02 --- /dev/null +++ b/pages.sv/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> Det här kommandot är ett alias för `gcc`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr gcc` diff --git a/pages.sv/linux/cgroups.md b/pages.sv/linux/cgroups.md new file mode 100644 index 0000000000..9c7d939182 --- /dev/null +++ b/pages.sv/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> Det här kommandot är ett alias för `cgclassify`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr cgclassify` diff --git a/pages.sv/linux/ip-route-list.md b/pages.sv/linux/ip-route-list.md new file mode 100644 index 0000000000..967b2befef --- /dev/null +++ b/pages.sv/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> Det här kommandot är ett alias för `ip-route-show`. + +- Se dokumentationen för orginalkommandot: + +`tldr ip-route-show` diff --git a/pages.sv/linux/megadl.md b/pages.sv/linux/megadl.md new file mode 100644 index 0000000000..368be69260 --- /dev/null +++ b/pages.sv/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> Det här kommandot är ett alias för `megatools-dl`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr megatools-dl` diff --git a/pages.sv/linux/ubuntu-bug.md b/pages.sv/linux/ubuntu-bug.md new file mode 100644 index 0000000000..169cccbf3a --- /dev/null +++ b/pages.sv/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> Det här kommandot är ett alias för `apport-bug`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr apport-bug` diff --git a/pages.sv/osx/aa.md b/pages.sv/osx/aa.md new file mode 100644 index 0000000000..c0745b916c --- /dev/null +++ b/pages.sv/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> Det här kommandot är ett alias för `yaa`. + +- Se dokumentationen för orginalkommandot: + +`tldr yaa` diff --git a/pages.sv/osx/g[.md b/pages.sv/osx/g[.md new file mode 100644 index 0000000000..4056f2749c --- /dev/null +++ b/pages.sv/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> Det här kommandot är ett alias för `-p linux [`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux [` diff --git a/pages.sv/osx/gawk.md b/pages.sv/osx/gawk.md new file mode 100644 index 0000000000..21977cf1ba --- /dev/null +++ b/pages.sv/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> Det här kommandot är ett alias för `-p linux awk`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux awk` diff --git a/pages.sv/osx/gb2sum.md b/pages.sv/osx/gb2sum.md new file mode 100644 index 0000000000..eb4cfb9bdd --- /dev/null +++ b/pages.sv/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> Det här kommandot är ett alias för `-p linux b2sum`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux b2sum` diff --git a/pages.sv/osx/gbase32.md b/pages.sv/osx/gbase32.md new file mode 100644 index 0000000000..422e935385 --- /dev/null +++ b/pages.sv/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> Det här kommandot är ett alias för `-p linux base32`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux base32` diff --git a/pages.sv/osx/gbase64.md b/pages.sv/osx/gbase64.md new file mode 100644 index 0000000000..22a3e3e03d --- /dev/null +++ b/pages.sv/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> Det här kommandot är ett alias för `-p linux base64`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux base64` diff --git a/pages.sv/osx/gbasename.md b/pages.sv/osx/gbasename.md new file mode 100644 index 0000000000..88e1ff9ee8 --- /dev/null +++ b/pages.sv/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> Det här kommandot är ett alias för `-p linux basename`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux basename` diff --git a/pages.sv/osx/gbasenc.md b/pages.sv/osx/gbasenc.md new file mode 100644 index 0000000000..00ba8a0f93 --- /dev/null +++ b/pages.sv/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> Det här kommandot är ett alias för `-p linux basenc`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux basenc` diff --git a/pages.sv/osx/gcat.md b/pages.sv/osx/gcat.md new file mode 100644 index 0000000000..0f1aa99d90 --- /dev/null +++ b/pages.sv/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> Det här kommandot är ett alias för `-p linux cat`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux cat` diff --git a/pages.sv/osx/gchcon.md b/pages.sv/osx/gchcon.md new file mode 100644 index 0000000000..24d0e0fb9b --- /dev/null +++ b/pages.sv/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> Det här kommandot är ett alias för `-p linux chcon`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux chcon` diff --git a/pages.sv/osx/gchgrp.md b/pages.sv/osx/gchgrp.md new file mode 100644 index 0000000000..228d078ab3 --- /dev/null +++ b/pages.sv/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> Det här kommandot är ett alias för `-p linux chgrp`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux chgrp` diff --git a/pages.sv/osx/gchmod.md b/pages.sv/osx/gchmod.md new file mode 100644 index 0000000000..e004479dfd --- /dev/null +++ b/pages.sv/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> Det här kommandot är ett alias för `-p linux chmod`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux chmod` diff --git a/pages.sv/osx/gchown.md b/pages.sv/osx/gchown.md new file mode 100644 index 0000000000..2fada5fbaa --- /dev/null +++ b/pages.sv/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> Det här kommandot är ett alias för `-p linux chown`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux chown` diff --git a/pages.sv/osx/gchroot.md b/pages.sv/osx/gchroot.md new file mode 100644 index 0000000000..03eee2bac4 --- /dev/null +++ b/pages.sv/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> Det här kommandot är ett alias för `-p linux chroot`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux chroot` diff --git a/pages.sv/osx/gcksum.md b/pages.sv/osx/gcksum.md new file mode 100644 index 0000000000..f0889badce --- /dev/null +++ b/pages.sv/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> Det här kommandot är ett alias för `-p linux cksum`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux cksum` diff --git a/pages.sv/osx/gcomm.md b/pages.sv/osx/gcomm.md new file mode 100644 index 0000000000..bb84718a64 --- /dev/null +++ b/pages.sv/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> Det här kommandot är ett alias för `-p linux comm`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux comm` diff --git a/pages.sv/osx/gcp.md b/pages.sv/osx/gcp.md new file mode 100644 index 0000000000..e380b59cf9 --- /dev/null +++ b/pages.sv/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> Det här kommandot är ett alias för `-p linux cp`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux cp` diff --git a/pages.sv/osx/gcsplit.md b/pages.sv/osx/gcsplit.md new file mode 100644 index 0000000000..4f7bb87b95 --- /dev/null +++ b/pages.sv/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> Det här kommandot är ett alias för `-p linux csplit`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux csplit` diff --git a/pages.sv/osx/gcut.md b/pages.sv/osx/gcut.md new file mode 100644 index 0000000000..a6f7d43e10 --- /dev/null +++ b/pages.sv/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> Det här kommandot är ett alias för `-p linux cut`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux cut` diff --git a/pages.sv/osx/gdate.md b/pages.sv/osx/gdate.md new file mode 100644 index 0000000000..5753b4daf2 --- /dev/null +++ b/pages.sv/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> Det här kommandot är ett alias för `-p linux date`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux date` diff --git a/pages.sv/osx/gdd.md b/pages.sv/osx/gdd.md new file mode 100644 index 0000000000..9f71e32464 --- /dev/null +++ b/pages.sv/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> Det här kommandot är ett alias för `-p linux dd`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux dd` diff --git a/pages.sv/osx/gdf.md b/pages.sv/osx/gdf.md new file mode 100644 index 0000000000..4e786eb5e2 --- /dev/null +++ b/pages.sv/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> Det här kommandot är ett alias för `-p linux df`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux df` diff --git a/pages.sv/osx/gdir.md b/pages.sv/osx/gdir.md new file mode 100644 index 0000000000..831d1de854 --- /dev/null +++ b/pages.sv/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> Det här kommandot är ett alias för `-p linux dir`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux dir` diff --git a/pages.sv/osx/gdircolors.md b/pages.sv/osx/gdircolors.md new file mode 100644 index 0000000000..7b2d293792 --- /dev/null +++ b/pages.sv/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> Det här kommandot är ett alias för `-p linux dircolors`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux dircolors` diff --git a/pages.sv/osx/gdirname.md b/pages.sv/osx/gdirname.md new file mode 100644 index 0000000000..1e42994dd7 --- /dev/null +++ b/pages.sv/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> Det här kommandot är ett alias för `-p linux dirname`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux dirname` diff --git a/pages.sv/osx/gdnsdomainname.md b/pages.sv/osx/gdnsdomainname.md new file mode 100644 index 0000000000..e7b8bcb54d --- /dev/null +++ b/pages.sv/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> Det här kommandot är ett alias för `-p linux dnsdomainname`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux dnsdomainname` diff --git a/pages.sv/osx/gecho.md b/pages.sv/osx/gecho.md new file mode 100644 index 0000000000..e0d16f386d --- /dev/null +++ b/pages.sv/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> Det här kommandot är ett alias för `-p linux echo`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux echo` diff --git a/pages.sv/osx/ged.md b/pages.sv/osx/ged.md new file mode 100644 index 0000000000..399fc45dc8 --- /dev/null +++ b/pages.sv/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> Det här kommandot är ett alias för `-p linux ed`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux ed` diff --git a/pages.sv/osx/gegrep.md b/pages.sv/osx/gegrep.md new file mode 100644 index 0000000000..c0a7967289 --- /dev/null +++ b/pages.sv/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> Det här kommandot är ett alias för `-p linux egrep`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux egrep` diff --git a/pages.sv/osx/genv.md b/pages.sv/osx/genv.md new file mode 100644 index 0000000000..942baed780 --- /dev/null +++ b/pages.sv/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> Det här kommandot är ett alias för `-p linux env`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux env` diff --git a/pages.sv/osx/gexpand.md b/pages.sv/osx/gexpand.md new file mode 100644 index 0000000000..6f4c5a2438 --- /dev/null +++ b/pages.sv/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> Det här kommandot är ett alias för `-p linux expand`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux expand` diff --git a/pages.sv/osx/gexpr.md b/pages.sv/osx/gexpr.md new file mode 100644 index 0000000000..93454afec7 --- /dev/null +++ b/pages.sv/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> Det här kommandot är ett alias för `-p linux expr`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux expr` diff --git a/pages.sv/osx/gfactor.md b/pages.sv/osx/gfactor.md new file mode 100644 index 0000000000..0227bcd638 --- /dev/null +++ b/pages.sv/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> Det här kommandot är ett alias för `-p linux factor`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux factor` diff --git a/pages.sv/osx/gfalse.md b/pages.sv/osx/gfalse.md new file mode 100644 index 0000000000..d4c9db27ab --- /dev/null +++ b/pages.sv/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> Det här kommandot är ett alias för `-p linux false`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux false` diff --git a/pages.sv/osx/gfgrep.md b/pages.sv/osx/gfgrep.md new file mode 100644 index 0000000000..1858107c0c --- /dev/null +++ b/pages.sv/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> Det här kommandot är ett alias för `-p linux fgrep`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux fgrep` diff --git a/pages.sv/osx/gfind.md b/pages.sv/osx/gfind.md new file mode 100644 index 0000000000..533f251abb --- /dev/null +++ b/pages.sv/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> Det här kommandot är ett alias för `-p linux find`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux find` diff --git a/pages.sv/osx/gfmt.md b/pages.sv/osx/gfmt.md new file mode 100644 index 0000000000..f18d0acf65 --- /dev/null +++ b/pages.sv/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> Det här kommandot är ett alias för `-p linux fmt`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux fmt` diff --git a/pages.sv/osx/gfold.md b/pages.sv/osx/gfold.md new file mode 100644 index 0000000000..97b210b191 --- /dev/null +++ b/pages.sv/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> Det här kommandot är ett alias för `-p linux fold`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux fold` diff --git a/pages.sv/osx/gftp.md b/pages.sv/osx/gftp.md new file mode 100644 index 0000000000..65aca244b9 --- /dev/null +++ b/pages.sv/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> Det här kommandot är ett alias för `-p linux ftp`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux ftp` diff --git a/pages.sv/osx/ggrep.md b/pages.sv/osx/ggrep.md new file mode 100644 index 0000000000..581276b9f6 --- /dev/null +++ b/pages.sv/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> Det här kommandot är ett alias för `-p linux grep`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux grep` diff --git a/pages.sv/osx/ggroups.md b/pages.sv/osx/ggroups.md new file mode 100644 index 0000000000..f96e783193 --- /dev/null +++ b/pages.sv/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> Det här kommandot är ett alias för `-p linux groups`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux groups` diff --git a/pages.sv/osx/ghead.md b/pages.sv/osx/ghead.md new file mode 100644 index 0000000000..e348e86b16 --- /dev/null +++ b/pages.sv/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> Det här kommandot är ett alias för `-p linux head`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux head` diff --git a/pages.sv/osx/ghostid.md b/pages.sv/osx/ghostid.md new file mode 100644 index 0000000000..0d075ea0a5 --- /dev/null +++ b/pages.sv/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> Det här kommandot är ett alias för `-p linux hostid`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux hostid` diff --git a/pages.sv/osx/ghostname.md b/pages.sv/osx/ghostname.md new file mode 100644 index 0000000000..b89d018194 --- /dev/null +++ b/pages.sv/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> Det här kommandot är ett alias för `-p linux hostname`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux hostname` diff --git a/pages.sv/osx/gid.md b/pages.sv/osx/gid.md new file mode 100644 index 0000000000..dde24816e9 --- /dev/null +++ b/pages.sv/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> Det här kommandot är ett alias för `-p linux id`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux id` diff --git a/pages.sv/osx/gifconfig.md b/pages.sv/osx/gifconfig.md new file mode 100644 index 0000000000..91cc3c7580 --- /dev/null +++ b/pages.sv/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> Det här kommandot är ett alias för `-p linux ifconfig`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux ifconfig` diff --git a/pages.sv/osx/gindent.md b/pages.sv/osx/gindent.md new file mode 100644 index 0000000000..3e4b2c999f --- /dev/null +++ b/pages.sv/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> Det här kommandot är ett alias för `-p linux indent`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux indent` diff --git a/pages.sv/osx/ginstall.md b/pages.sv/osx/ginstall.md new file mode 100644 index 0000000000..3dd27efcb1 --- /dev/null +++ b/pages.sv/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> Det här kommandot är ett alias för `-p linux install`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux install` diff --git a/pages.sv/osx/gjoin.md b/pages.sv/osx/gjoin.md new file mode 100644 index 0000000000..3b815ac02d --- /dev/null +++ b/pages.sv/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> Det här kommandot är ett alias för `-p linux join`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux join` diff --git a/pages.sv/osx/gkill.md b/pages.sv/osx/gkill.md new file mode 100644 index 0000000000..f87fb7c09a --- /dev/null +++ b/pages.sv/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> Det här kommandot är ett alias för `-p linux kill`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux kill` diff --git a/pages.sv/osx/glibtool.md b/pages.sv/osx/glibtool.md new file mode 100644 index 0000000000..69c515bbe7 --- /dev/null +++ b/pages.sv/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> Det här kommandot är ett alias för `-p linux libtool`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux libtool` diff --git a/pages.sv/osx/glibtoolize.md b/pages.sv/osx/glibtoolize.md new file mode 100644 index 0000000000..c3b9d4a856 --- /dev/null +++ b/pages.sv/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> Det här kommandot är ett alias för `-p linux libtoolize`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux libtoolize` diff --git a/pages.sv/osx/glink.md b/pages.sv/osx/glink.md new file mode 100644 index 0000000000..b14410732d --- /dev/null +++ b/pages.sv/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> Det här kommandot är ett alias för `-p linux link`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux link` diff --git a/pages.sv/osx/gln.md b/pages.sv/osx/gln.md new file mode 100644 index 0000000000..e277b00b02 --- /dev/null +++ b/pages.sv/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> Det här kommandot är ett alias för `-p linux ln`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux ln` diff --git a/pages.sv/osx/glocate.md b/pages.sv/osx/glocate.md new file mode 100644 index 0000000000..4f78412f4f --- /dev/null +++ b/pages.sv/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> Det här kommandot är ett alias för `-p linux locate`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux locate` diff --git a/pages.sv/osx/glogger.md b/pages.sv/osx/glogger.md new file mode 100644 index 0000000000..3abc4b5aed --- /dev/null +++ b/pages.sv/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> Det här kommandot är ett alias för `-p linux logger`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux logger` diff --git a/pages.sv/osx/glogname.md b/pages.sv/osx/glogname.md new file mode 100644 index 0000000000..e68b522862 --- /dev/null +++ b/pages.sv/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> Det här kommandot är ett alias för `-p linux logname`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux logname` diff --git a/pages.sv/osx/gls.md b/pages.sv/osx/gls.md new file mode 100644 index 0000000000..dd8c27999e --- /dev/null +++ b/pages.sv/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> Det här kommandot är ett alias för `-p linux ls`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux ls` diff --git a/pages.sv/osx/gmake.md b/pages.sv/osx/gmake.md new file mode 100644 index 0000000000..91f60dec82 --- /dev/null +++ b/pages.sv/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> Det här kommandot är ett alias för `-p linux make`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux make` diff --git a/pages.sv/osx/gmd5sum.md b/pages.sv/osx/gmd5sum.md new file mode 100644 index 0000000000..ea6895e6ae --- /dev/null +++ b/pages.sv/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> Det här kommandot är ett alias för `-p linux md5sum`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux md5sum` diff --git a/pages.sv/osx/gmkdir.md b/pages.sv/osx/gmkdir.md new file mode 100644 index 0000000000..7be53692cd --- /dev/null +++ b/pages.sv/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> Det här kommandot är ett alias för `-p linux mkdir`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux mkdir` diff --git a/pages.sv/osx/gmkfifo.md b/pages.sv/osx/gmkfifo.md new file mode 100644 index 0000000000..90b4db276d --- /dev/null +++ b/pages.sv/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> Det här kommandot är ett alias för `-p linux mkfifo`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux mkfifo` diff --git a/pages.sv/osx/gmknod.md b/pages.sv/osx/gmknod.md new file mode 100644 index 0000000000..a1e6819177 --- /dev/null +++ b/pages.sv/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> Det här kommandot är ett alias för `-p linux mknod`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux mknod` diff --git a/pages.sv/osx/gmktemp.md b/pages.sv/osx/gmktemp.md new file mode 100644 index 0000000000..c21c0c99cf --- /dev/null +++ b/pages.sv/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> Det här kommandot är ett alias för `-p linux mktemp`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux mktemp` diff --git a/pages.sv/osx/gmv.md b/pages.sv/osx/gmv.md new file mode 100644 index 0000000000..15dc0ebc6d --- /dev/null +++ b/pages.sv/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> Det här kommandot är ett alias för `-p linux mv`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux mv` diff --git a/pages.sv/osx/gnice.md b/pages.sv/osx/gnice.md new file mode 100644 index 0000000000..d54697f02f --- /dev/null +++ b/pages.sv/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> Det här kommandot är ett alias för `-p linux nice`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux nice` diff --git a/pages.sv/osx/gnl.md b/pages.sv/osx/gnl.md new file mode 100644 index 0000000000..c7683d6301 --- /dev/null +++ b/pages.sv/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> Det här kommandot är ett alias för `-p linux nl`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux nl` diff --git a/pages.sv/osx/gnohup.md b/pages.sv/osx/gnohup.md new file mode 100644 index 0000000000..2c035e0ecd --- /dev/null +++ b/pages.sv/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> Det här kommandot är ett alias för `-p linux nohup`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux nohup` diff --git a/pages.sv/osx/gnproc.md b/pages.sv/osx/gnproc.md new file mode 100644 index 0000000000..bf601e0ccb --- /dev/null +++ b/pages.sv/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> Det här kommandot är ett alias för `-p linux nproc`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux nproc` diff --git a/pages.sv/osx/gnumfmt.md b/pages.sv/osx/gnumfmt.md new file mode 100644 index 0000000000..acd8a21165 --- /dev/null +++ b/pages.sv/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> Det här kommandot är ett alias för `-p linux numfmt`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux numfmt` diff --git a/pages.sv/osx/god.md b/pages.sv/osx/god.md new file mode 100644 index 0000000000..b6a01457bd --- /dev/null +++ b/pages.sv/osx/god.md @@ -0,0 +1,7 @@ +# god + +> Det här kommandot är ett alias för `-p linux od`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux od` diff --git a/pages.sv/osx/gpaste.md b/pages.sv/osx/gpaste.md new file mode 100644 index 0000000000..64a1e13a32 --- /dev/null +++ b/pages.sv/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> Det här kommandot är ett alias för `-p linux paste`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux paste` diff --git a/pages.sv/osx/gpathchk.md b/pages.sv/osx/gpathchk.md new file mode 100644 index 0000000000..712e5d5a3d --- /dev/null +++ b/pages.sv/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> Det här kommandot är ett alias för `-p linux pathchk`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux pathchk` diff --git a/pages.sv/osx/gping.md b/pages.sv/osx/gping.md new file mode 100644 index 0000000000..fe836aaa3f --- /dev/null +++ b/pages.sv/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> Det här kommandot är ett alias för `-p linux ping`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux ping` diff --git a/pages.sv/osx/gping6.md b/pages.sv/osx/gping6.md new file mode 100644 index 0000000000..57f1b72d25 --- /dev/null +++ b/pages.sv/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> Det här kommandot är ett alias för `-p linux ping6`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux ping6` diff --git a/pages.sv/osx/gpinky.md b/pages.sv/osx/gpinky.md new file mode 100644 index 0000000000..6bb277b7d1 --- /dev/null +++ b/pages.sv/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> Det här kommandot är ett alias för `-p linux pinky`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux pinky` diff --git a/pages.sv/osx/gpr.md b/pages.sv/osx/gpr.md new file mode 100644 index 0000000000..94120b0c5b --- /dev/null +++ b/pages.sv/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> Det här kommandot är ett alias för `-p linux pr`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux pr` diff --git a/pages.sv/osx/gprintenv.md b/pages.sv/osx/gprintenv.md new file mode 100644 index 0000000000..e7532636c5 --- /dev/null +++ b/pages.sv/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> Det här kommandot är ett alias för `-p linux printenv`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux printenv` diff --git a/pages.sv/osx/gprintf.md b/pages.sv/osx/gprintf.md new file mode 100644 index 0000000000..67846b00e5 --- /dev/null +++ b/pages.sv/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> Det här kommandot är ett alias för `-p linux printf`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux printf` diff --git a/pages.sv/osx/gptx.md b/pages.sv/osx/gptx.md new file mode 100644 index 0000000000..c571bf87dd --- /dev/null +++ b/pages.sv/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> Det här kommandot är ett alias för `-p linux ptx`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux ptx` diff --git a/pages.sv/osx/gpwd.md b/pages.sv/osx/gpwd.md new file mode 100644 index 0000000000..6587561bac --- /dev/null +++ b/pages.sv/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> Det här kommandot är ett alias för `-p linux pwd`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux pwd` diff --git a/pages.sv/osx/grcp.md b/pages.sv/osx/grcp.md new file mode 100644 index 0000000000..53debb9959 --- /dev/null +++ b/pages.sv/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> Det här kommandot är ett alias för `-p linux rcp`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux rcp` diff --git a/pages.sv/osx/greadlink.md b/pages.sv/osx/greadlink.md new file mode 100644 index 0000000000..a19e962079 --- /dev/null +++ b/pages.sv/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> Det här kommandot är ett alias för `-p linux readlink`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux readlink` diff --git a/pages.sv/osx/grealpath.md b/pages.sv/osx/grealpath.md new file mode 100644 index 0000000000..bcb83558d6 --- /dev/null +++ b/pages.sv/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> Det här kommandot är ett alias för `-p linux realpath`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux realpath` diff --git a/pages.sv/osx/grexec.md b/pages.sv/osx/grexec.md new file mode 100644 index 0000000000..6b16242d70 --- /dev/null +++ b/pages.sv/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> Det här kommandot är ett alias för `-p linux rexec`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux rexec` diff --git a/pages.sv/osx/grlogin.md b/pages.sv/osx/grlogin.md new file mode 100644 index 0000000000..f58ac2093c --- /dev/null +++ b/pages.sv/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> Det här kommandot är ett alias för `-p linux rlogin`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux rlogin` diff --git a/pages.sv/osx/grm.md b/pages.sv/osx/grm.md new file mode 100644 index 0000000000..8d403dad08 --- /dev/null +++ b/pages.sv/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> Det här kommandot är ett alias för `-p linux rm`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux rm` diff --git a/pages.sv/osx/grmdir.md b/pages.sv/osx/grmdir.md new file mode 100644 index 0000000000..b5994b99be --- /dev/null +++ b/pages.sv/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> Det här kommandot är ett alias för `-p linux rmdir`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux rmdir` diff --git a/pages.sv/osx/grsh.md b/pages.sv/osx/grsh.md new file mode 100644 index 0000000000..4502c1d225 --- /dev/null +++ b/pages.sv/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> Det här kommandot är ett alias för `-p linux rsh`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux rsh` diff --git a/pages.sv/osx/gruncon.md b/pages.sv/osx/gruncon.md new file mode 100644 index 0000000000..7bb17cc019 --- /dev/null +++ b/pages.sv/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> Det här kommandot är ett alias för `-p linux runcon`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux runcon` diff --git a/pages.sv/osx/gsed.md b/pages.sv/osx/gsed.md new file mode 100644 index 0000000000..bf708324f2 --- /dev/null +++ b/pages.sv/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> Det här kommandot är ett alias för `-p linux sed`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux sed` diff --git a/pages.sv/osx/gseq.md b/pages.sv/osx/gseq.md new file mode 100644 index 0000000000..2a0a94c0f6 --- /dev/null +++ b/pages.sv/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> Det här kommandot är ett alias för `-p linux seq`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux seq` diff --git a/pages.sv/osx/gsha1sum.md b/pages.sv/osx/gsha1sum.md new file mode 100644 index 0000000000..aa0fb2daee --- /dev/null +++ b/pages.sv/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> Det här kommandot är ett alias för `-p linux sha1sum`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux sha1sum` diff --git a/pages.sv/osx/gsha224sum.md b/pages.sv/osx/gsha224sum.md new file mode 100644 index 0000000000..61345537d7 --- /dev/null +++ b/pages.sv/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> Det här kommandot är ett alias för `-p linux sha224sum`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux sha224sum` diff --git a/pages.sv/osx/gsha256sum.md b/pages.sv/osx/gsha256sum.md new file mode 100644 index 0000000000..d4e6d93a76 --- /dev/null +++ b/pages.sv/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> Det här kommandot är ett alias för `-p linux sha256sum`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux sha256sum` diff --git a/pages.sv/osx/gsha384sum.md b/pages.sv/osx/gsha384sum.md new file mode 100644 index 0000000000..28dde1a858 --- /dev/null +++ b/pages.sv/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> Det här kommandot är ett alias för `-p linux sha384sum`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux sha384sum` diff --git a/pages.sv/osx/gsha512sum.md b/pages.sv/osx/gsha512sum.md new file mode 100644 index 0000000000..d605b54430 --- /dev/null +++ b/pages.sv/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> Det här kommandot är ett alias för `-p linux sha512sum`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux sha512sum` diff --git a/pages.sv/osx/gshred.md b/pages.sv/osx/gshred.md new file mode 100644 index 0000000000..cbf789b679 --- /dev/null +++ b/pages.sv/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> Det här kommandot är ett alias för `-p linux shred`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux shred` diff --git a/pages.sv/osx/gshuf.md b/pages.sv/osx/gshuf.md new file mode 100644 index 0000000000..2d60d2072c --- /dev/null +++ b/pages.sv/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> Det här kommandot är ett alias för `-p linux shuf`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux shuf` diff --git a/pages.sv/osx/gsleep.md b/pages.sv/osx/gsleep.md new file mode 100644 index 0000000000..1848ffa4f5 --- /dev/null +++ b/pages.sv/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> Det här kommandot är ett alias för `-p linux sleep`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux sleep` diff --git a/pages.sv/osx/gsort.md b/pages.sv/osx/gsort.md new file mode 100644 index 0000000000..501a0438a5 --- /dev/null +++ b/pages.sv/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> Det här kommandot är ett alias för `-p linux sort`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux sort` diff --git a/pages.sv/osx/gsplit.md b/pages.sv/osx/gsplit.md new file mode 100644 index 0000000000..52359e701e --- /dev/null +++ b/pages.sv/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> Det här kommandot är ett alias för `-p linux split`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux split` diff --git a/pages.sv/osx/gstat.md b/pages.sv/osx/gstat.md new file mode 100644 index 0000000000..14316dc660 --- /dev/null +++ b/pages.sv/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> Det här kommandot är ett alias för `-p linux stat`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux stat` diff --git a/pages.sv/osx/gstdbuf.md b/pages.sv/osx/gstdbuf.md new file mode 100644 index 0000000000..dbc1492f76 --- /dev/null +++ b/pages.sv/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> Det här kommandot är ett alias för `-p linux stdbuf`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux stdbuf` diff --git a/pages.sv/osx/gstty.md b/pages.sv/osx/gstty.md new file mode 100644 index 0000000000..8df654cd9a --- /dev/null +++ b/pages.sv/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> Det här kommandot är ett alias för `-p linux stty`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux stty` diff --git a/pages.sv/osx/gsum.md b/pages.sv/osx/gsum.md new file mode 100644 index 0000000000..b547742617 --- /dev/null +++ b/pages.sv/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> Det här kommandot är ett alias för `-p linux sum`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux sum` diff --git a/pages.sv/osx/gsync.md b/pages.sv/osx/gsync.md new file mode 100644 index 0000000000..9a64e574aa --- /dev/null +++ b/pages.sv/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> Det här kommandot är ett alias för `-p linux sync`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux sync` diff --git a/pages.sv/osx/gtac.md b/pages.sv/osx/gtac.md new file mode 100644 index 0000000000..457c9a6c65 --- /dev/null +++ b/pages.sv/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> Det här kommandot är ett alias för `-p linux tac`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux tac` diff --git a/pages.sv/osx/gtail.md b/pages.sv/osx/gtail.md new file mode 100644 index 0000000000..8d9bd41eff --- /dev/null +++ b/pages.sv/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> Det här kommandot är ett alias för `-p linux tail`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux tail` diff --git a/pages.sv/osx/gtalk.md b/pages.sv/osx/gtalk.md new file mode 100644 index 0000000000..174480f09f --- /dev/null +++ b/pages.sv/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> Det här kommandot är ett alias för `-p linux talk`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux talk` diff --git a/pages.sv/osx/gtar.md b/pages.sv/osx/gtar.md new file mode 100644 index 0000000000..7cdac056f5 --- /dev/null +++ b/pages.sv/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> Det här kommandot är ett alias för `-p linux tar`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux tar` diff --git a/pages.sv/osx/gtee.md b/pages.sv/osx/gtee.md new file mode 100644 index 0000000000..acf8fbb498 --- /dev/null +++ b/pages.sv/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> Det här kommandot är ett alias för `-p linux tee`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux tee` diff --git a/pages.sv/osx/gtelnet.md b/pages.sv/osx/gtelnet.md new file mode 100644 index 0000000000..ddcfcdef6f --- /dev/null +++ b/pages.sv/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> Det här kommandot är ett alias för `-p linux telnet`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux telnet` diff --git a/pages.sv/osx/gtest.md b/pages.sv/osx/gtest.md new file mode 100644 index 0000000000..6d66b4c202 --- /dev/null +++ b/pages.sv/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> Det här kommandot är ett alias för `-p linux test`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux test` diff --git a/pages.sv/osx/gtftp.md b/pages.sv/osx/gtftp.md new file mode 100644 index 0000000000..ce8cda1b68 --- /dev/null +++ b/pages.sv/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> Det här kommandot är ett alias för `-p linux tftp`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux tftp` diff --git a/pages.sv/osx/gtime.md b/pages.sv/osx/gtime.md new file mode 100644 index 0000000000..7c4d538af4 --- /dev/null +++ b/pages.sv/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> Det här kommandot är ett alias för `-p linux time`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux time` diff --git a/pages.sv/osx/gtimeout.md b/pages.sv/osx/gtimeout.md new file mode 100644 index 0000000000..711c1e5cb4 --- /dev/null +++ b/pages.sv/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> Det här kommandot är ett alias för `-p linux timeout`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux timeout` diff --git a/pages.sv/osx/gtouch.md b/pages.sv/osx/gtouch.md new file mode 100644 index 0000000000..bffb7802fd --- /dev/null +++ b/pages.sv/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> Det här kommandot är ett alias för `-p linux touch`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux touch` diff --git a/pages.sv/osx/gtr.md b/pages.sv/osx/gtr.md new file mode 100644 index 0000000000..8ded35ff57 --- /dev/null +++ b/pages.sv/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> Det här kommandot är ett alias för `-p linux tr`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux tr` diff --git a/pages.sv/osx/gtraceroute.md b/pages.sv/osx/gtraceroute.md new file mode 100644 index 0000000000..efcfcaa698 --- /dev/null +++ b/pages.sv/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> Det här kommandot är ett alias för `-p linux traceroute`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux traceroute` diff --git a/pages.sv/osx/gtrue.md b/pages.sv/osx/gtrue.md new file mode 100644 index 0000000000..f49f763ddb --- /dev/null +++ b/pages.sv/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> Det här kommandot är ett alias för `-p linux true`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux true` diff --git a/pages.sv/osx/gtruncate.md b/pages.sv/osx/gtruncate.md new file mode 100644 index 0000000000..edfbacb4db --- /dev/null +++ b/pages.sv/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> Det här kommandot är ett alias för `-p linux truncate`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux truncate` diff --git a/pages.sv/osx/gtsort.md b/pages.sv/osx/gtsort.md new file mode 100644 index 0000000000..ce18d3023e --- /dev/null +++ b/pages.sv/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> Det här kommandot är ett alias för `-p linux tsort`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux tsort` diff --git a/pages.sv/osx/gtty.md b/pages.sv/osx/gtty.md new file mode 100644 index 0000000000..cc6d3c8ad0 --- /dev/null +++ b/pages.sv/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> Det här kommandot är ett alias för `-p linux tty`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux tty` diff --git a/pages.sv/osx/guname.md b/pages.sv/osx/guname.md new file mode 100644 index 0000000000..bce33fc469 --- /dev/null +++ b/pages.sv/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> Det här kommandot är ett alias för `-p linux uname`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux uname` diff --git a/pages.sv/osx/gunexpand.md b/pages.sv/osx/gunexpand.md new file mode 100644 index 0000000000..a750c1e1de --- /dev/null +++ b/pages.sv/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> Det här kommandot är ett alias för `-p linux unexpand`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux unexpand` diff --git a/pages.sv/osx/guniq.md b/pages.sv/osx/guniq.md new file mode 100644 index 0000000000..93a4b64b26 --- /dev/null +++ b/pages.sv/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> Det här kommandot är ett alias för `-p linux uniq`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux uniq` diff --git a/pages.sv/osx/gunits.md b/pages.sv/osx/gunits.md new file mode 100644 index 0000000000..2e0acc3294 --- /dev/null +++ b/pages.sv/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> Det här kommandot är ett alias för `-p linux units`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux units` diff --git a/pages.sv/osx/gunlink.md b/pages.sv/osx/gunlink.md new file mode 100644 index 0000000000..8829f9146f --- /dev/null +++ b/pages.sv/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> Det här kommandot är ett alias för `-p linux unlink`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux unlink` diff --git a/pages.sv/osx/gupdatedb.md b/pages.sv/osx/gupdatedb.md new file mode 100644 index 0000000000..6febe92f8f --- /dev/null +++ b/pages.sv/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> Det här kommandot är ett alias för `-p linux updatedb`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux updatedb` diff --git a/pages.sv/osx/guptime.md b/pages.sv/osx/guptime.md new file mode 100644 index 0000000000..8e1f6de2fa --- /dev/null +++ b/pages.sv/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> Det här kommandot är ett alias för `-p linux uptime`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux uptime` diff --git a/pages.sv/osx/gusers.md b/pages.sv/osx/gusers.md new file mode 100644 index 0000000000..6e927999c4 --- /dev/null +++ b/pages.sv/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> Det här kommandot är ett alias för `-p linux users`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux users` diff --git a/pages.sv/osx/gvdir.md b/pages.sv/osx/gvdir.md new file mode 100644 index 0000000000..fc966bec8f --- /dev/null +++ b/pages.sv/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> Det här kommandot är ett alias för `-p linux vdir`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux vdir` diff --git a/pages.sv/osx/gwc.md b/pages.sv/osx/gwc.md new file mode 100644 index 0000000000..ae0f72ded3 --- /dev/null +++ b/pages.sv/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> Det här kommandot är ett alias för `-p linux wc`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux wc` diff --git a/pages.sv/osx/gwhich.md b/pages.sv/osx/gwhich.md new file mode 100644 index 0000000000..666f320352 --- /dev/null +++ b/pages.sv/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> Det här kommandot är ett alias för `-p linux which`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux which` diff --git a/pages.sv/osx/gwho.md b/pages.sv/osx/gwho.md new file mode 100644 index 0000000000..c5fa36809e --- /dev/null +++ b/pages.sv/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> Det här kommandot är ett alias för `-p linux who`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux who` diff --git a/pages.sv/osx/gwhoami.md b/pages.sv/osx/gwhoami.md new file mode 100644 index 0000000000..336cf1dc70 --- /dev/null +++ b/pages.sv/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> Det här kommandot är ett alias för `-p linux whoami`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux whoami` diff --git a/pages.sv/osx/gwhois.md b/pages.sv/osx/gwhois.md new file mode 100644 index 0000000000..56fcff880f --- /dev/null +++ b/pages.sv/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> Det här kommandot är ett alias för `-p linux whois`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux whois` diff --git a/pages.sv/osx/gxargs.md b/pages.sv/osx/gxargs.md new file mode 100644 index 0000000000..5a726fd9ab --- /dev/null +++ b/pages.sv/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> Det här kommandot är ett alias för `-p linux xargs`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux xargs` diff --git a/pages.sv/osx/gyes.md b/pages.sv/osx/gyes.md new file mode 100644 index 0000000000..b9cd918fb3 --- /dev/null +++ b/pages.sv/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> Det här kommandot är ett alias för `-p linux yes`. + +- Se dokumentationen för orginalkommandot: + +`tldr -p linux yes` diff --git a/pages.sv/osx/launchd.md b/pages.sv/osx/launchd.md new file mode 100644 index 0000000000..af7284b9ac --- /dev/null +++ b/pages.sv/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> Det här kommandot är ett alias för `launchctl`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr launchctl` diff --git a/pages.sv/windows/chrome.md b/pages.sv/windows/chrome.md new file mode 100644 index 0000000000..eeae1151e5 --- /dev/null +++ b/pages.sv/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> Det här kommandot är ett alias för `chromium`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr chromium` diff --git a/pages.sv/windows/cpush.md b/pages.sv/windows/cpush.md new file mode 100644 index 0000000000..593d539702 --- /dev/null +++ b/pages.sv/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> Det här kommandot är ett alias för `choco-push`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr choco-push` diff --git a/pages.sv/windows/curl.md b/pages.sv/windows/curl.md new file mode 100644 index 0000000000..b8ed99be4a --- /dev/null +++ b/pages.sv/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> Det här kommandot är ett alias för `curl -p common`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr curl -p common` diff --git a/pages.sv/windows/iwr.md b/pages.sv/windows/iwr.md new file mode 100644 index 0000000000..4394c6728e --- /dev/null +++ b/pages.sv/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> Det här kommandot är ett alias för `invoke-webrequest`. + +- Se dokumentationen för orginalkommandot: + +`tldr invoke-webrequest` diff --git a/pages.sv/windows/pwsh-where.md b/pages.sv/windows/pwsh-where.md new file mode 100644 index 0000000000..dce07b93e0 --- /dev/null +++ b/pages.sv/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> Det här kommandot är ett alias för `Where-Object`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr Where-Object` diff --git a/pages.sv/windows/rd.md b/pages.sv/windows/rd.md new file mode 100644 index 0000000000..d2d99df094 --- /dev/null +++ b/pages.sv/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> Det här kommandot är ett alias för `rmdir`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr rmdir` diff --git a/pages.sv/windows/sls.md b/pages.sv/windows/sls.md new file mode 100644 index 0000000000..95cf532195 --- /dev/null +++ b/pages.sv/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> Det här kommandot är ett alias för `where-object`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr where-object` diff --git a/pages.sv/windows/wget.md b/pages.sv/windows/wget.md new file mode 100644 index 0000000000..2e5ed99979 --- /dev/null +++ b/pages.sv/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> Det här kommandot är ett alias för `wget -p common`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr wget -p common` diff --git a/pages.ta/android/bugreport.md b/pages.ta/android/bugreport.md index 74d8460de4..65e8e6feaa 100644 --- a/pages.ta/android/bugreport.md +++ b/pages.ta/android/bugreport.md @@ -2,7 +2,7 @@ > ஆண்ட்ராய்டு பிழை அறிக்கையைக் காட்டு. > இந்தக் கட்டளையை `adb shell` மூலம் மட்டுமே பயன்படுத்த முடியும். -> மேலும் விவரத்திற்கு: . +> மேலும் விவரத்திற்கு: . - ஆண்ட்ராய்டு சாதனத்தின் முழுமையான பிழை அறிக்கையைக் காட்டு: diff --git a/pages.ta/android/bugreportz.md b/pages.ta/android/bugreportz.md index c3884ad14e..88e15ee949 100644 --- a/pages.ta/android/bugreportz.md +++ b/pages.ta/android/bugreportz.md @@ -2,7 +2,7 @@ > ஜிப் செய்யப்பட்ட ஆண்ட்ராய்டு பிழை அறிக்கையை உருவாக்கவும். > இந்தக் கட்டளையை `adb shell` மூலம் மட்டுமே பயன்படுத்த முடியும். -> மேலும் விவரத்திற்கு: . +> மேலும் விவரத்திற்கு: . - ஒரு ஆண்ட்ராய்டு சாதனத்தின் முழுமையான ஜிப் செய்யப்பட்ட பிழை அறிக்கையை உருவாக்கவும்: @@ -16,6 +16,6 @@ `bugreportz -v` -- காட்சி உதவி: +- உதவியைக் காட்டு: `bugreportz -h` diff --git a/pages.ta/android/cmd.md b/pages.ta/android/cmd.md index 0d7d380bf5..cfdb7ad661 100644 --- a/pages.ta/android/cmd.md +++ b/pages.ta/android/cmd.md @@ -1,7 +1,7 @@ # cmd > ஆண்ட்ராய்டு சேவை நிர்வாகி. -> மேலும் விவரத்திற்கு: . +> மேலும் விவரத்திற்கு: . - இயங்கும் ஒவ்வொரு சேவையையும் பட்டியலிடுங்கள்: diff --git a/pages.ta/android/dalvikvm.md b/pages.ta/android/dalvikvm.md index 487128c6f8..618a0f4d19 100644 --- a/pages.ta/android/dalvikvm.md +++ b/pages.ta/android/dalvikvm.md @@ -3,6 +3,6 @@ > ஆண்ட்ராய்டு ஜாவா மெய்நிகர் இயந்திரம். > மேலும் விவரத்திற்கு: . -- ஜாவா திட்டத்தைத் தொடங்கவும்: +- ஒரு குறிப்பிட்ட ஜாவா நிரலைத் தொடங்கவும்: `dalvikvm -classpath {{பாதை/டு/கோப்பு.jar}} {{வகுப்புப்பெயர்}}` diff --git a/pages.ta/android/logcat.md b/pages.ta/android/logcat.md index d87ca885b8..e67f319889 100644 --- a/pages.ta/android/logcat.md +++ b/pages.ta/android/logcat.md @@ -14,3 +14,11 @@ - வழக்கமான வெளிப்பாட்டுடன் பொருந்தக்கூடிய காட்சி வரிகள்: `logcat --regex {{வழக்கமான_வெளிப்பாடு}}` + +- ஒரு குறிப்பிட்ட PIDக்கான பதிவுகளை காண்பி: + +`logcat --pid={{pid}}` + +- ஒரு குறிப்பிட்ட தொகுப்பின் செயல்முறைக்கான பதிவுகளை காண்பி: + +`logcat --pid=$(pidof -s {{package}})` diff --git a/pages.ta/android/pm.md b/pages.ta/android/pm.md index 8b38600eeb..9ad896daad 100644 --- a/pages.ta/android/pm.md +++ b/pages.ta/android/pm.md @@ -1,24 +1,24 @@ # pm -> ஆண்ட்ராய்டு சாதனத்தில் ஆப்ஸ் பற்றிய தகவலைக் காட்டவும். +> ஆண்ட்ராய்டு சாதனத்தில் பயன்பாடுகள் பற்றிய தகவலைக் காண்பி. > மேலும் விவரத்திற்கு: . -- நிறுவப்பட்ட அனைத்து பயன்பாடுகளின் பட்டியலை அச்சிடவும்: +- நிறுவப்பட்ட அனைத்து பயன்பாடுகளையும் பட்டியலிடுங்கள்: `pm list packages` -- நிறுவப்பட்ட அனைத்து கணினி பயன்பாடுகளின் பட்டியலை அச்சிடவும்: +- நிறுவப்பட்ட அனைத்து கணினி பயன்பாடுகளையும் பட்டியலிடுங்கள்: `pm list packages -s` -- நிறுவப்பட்ட அனைத்து மூன்றாம் தரப்பு பயன்பாடுகளின் பட்டியலை அச்சிடவும்: +- நிறுவப்பட்ட அனைத்து மூன்றாம் தரப்பு பயன்பாடுகளையும் பட்டியலிடுங்கள்: `pm list packages -3` -- குறிப்பிட்ட முக்கிய வார்த்தைகளுடன் பொருந்தக்கூடிய பயன்பாடுகளின் பட்டியலை அச்சிடவும்: +- குறிப்பிட்ட முக்கிய வார்த்தைகளுடன் பொருந்தக்கூடிய பயன்பாடுகளை பட்டியலிடுங்கள்: -`pm list packages {{முக்கிய_வார்த்தைகள்}}` +`pm list packages {{முக்கிய_வார்த்தை1 முக்கிய_வார்த்தை2 ...}}` -- ஒரு குறிப்பிட்ட பயன்பாட்டின் APK இன் பாதையை அச்சிடவும்: +- குறிப்பிட்ட பயன்பாட்டின் APK இன் பாதையைக் காண்பி: `pm path {{செயலி}}` diff --git a/pages.ta/android/settings.md b/pages.ta/android/settings.md index fd0d8c1915..3b0aed8b04 100644 --- a/pages.ta/android/settings.md +++ b/pages.ta/android/settings.md @@ -11,10 +11,10 @@ `settings get {{குளோபல்}} {{விமானம்_முறை_ஆன்}}` -- அமைப்பின் மதிப்பை அமைக்கவும்: +- ஒரு அமைப்பின் குறிப்பிட்ட மதிப்பை அமைக்கவும்: `settings put {{குளோபல்}} {{திரை_பிரகாசம்}} {{42}}` -- Delete a specific setting: +- ஒரு குறிப்பிட்ட அமைப்பை நீக்கு: `settings delete {{பாதுகாப்பான}} {{திரை_சேமிப்பான்_இயக்கப்பட்டது}}` diff --git a/pages.ta/common/b2sum.md b/pages.ta/common/b2sum.md index 778b830102..4033fe4acb 100644 --- a/pages.ta/common/b2sum.md +++ b/pages.ta/common/b2sum.md @@ -11,7 +11,7 @@ `b2sum {{பாதை/டு/கோப்பு1}} {{பாதை/டு/கோப்பு2}}` -- stdin இலிருந்து BLAKE2 செக்சம் கணக்கிடவும்: +- `stdin` இலிருந்து BLAKE2 செக்சம் கணக்கிடவும்: `{{சில_கட்டளை}} | b2sum` diff --git a/pages.ta/common/bundler.md b/pages.ta/common/bundler.md new file mode 100644 index 0000000000..20df1206eb --- /dev/null +++ b/pages.ta/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> இக்கட்டளை `bundle` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr bundle` diff --git a/pages.ta/common/cargo-add.md b/pages.ta/common/cargo-add.md new file mode 100644 index 0000000000..b73d134e69 --- /dev/null +++ b/pages.ta/common/cargo-add.md @@ -0,0 +1,32 @@ +# cargo add + +> ரஸ்ட் திட்டத்தின் `Cargo.toml` கோப்பில் சார்புகளைச் சேர்க்கவும். +> மேலும் விவரத்திற்கு: . + +- தற்போதைய திட்டப்பணியில் சார்புநிலையின் சமீபத்திய பதிப்பைச் சேர்க்கவும்: + +`cargo add {{சார்பு}}` + +- சார்புநிலையின் குறிப்பிட்ட பதிப்பைச் சேர்க்கவும்: + +`cargo add {{சார்பு}}@{{பதிப்பு}}` + +- சார்புநிலையைச் சேர்த்து ஒன்று அல்லது அதற்கு மேற்பட்ட குறிப்பிட்ட அம்சங்களை இயக்கவும்: + +`cargo add {{சார்பு}} --features {{அம்சம்_1}},{{அம்சம்_2}}` + +- விருப்ப சார்புநிலையைச் சேர்க்கவும், அது கிரேட்டின் அம்சமாக வெளிப்படும்: + +`cargo add {{சார்பு}} --optional` + +- சார்புநிலையாக உள்ளூர் கிரேட்டைச் சேர்க்கவும்: + +`cargo add --path {{பாதை/டு/கிரேட்}}` + +- ஒரு மேம்பாட்டைச் சேர்க்கவும் அல்லது சார்புநிலையை உருவாக்கவும்: + +`cargo add {{சார்பு}} --{{dev|build}}` + +- அனைத்து இயல்புநிலை அம்சங்களும் முடக்கப்பட்டுள்ள சார்புநிலையைச் சேர்க்கவும்: + +`cargo add {{சார்பு}} --no-default-features` diff --git a/pages.ta/common/cargo-build.md b/pages.ta/common/cargo-build.md new file mode 100644 index 0000000000..63903daa38 --- /dev/null +++ b/pages.ta/common/cargo-build.md @@ -0,0 +1,32 @@ +# cargo build + +> ஒரு உள்ளூர் தொகுப்பு மற்றும் அதன் அனைத்து சார்புகளையும் தொகுக்கவும். +> மேலும் விவரத்திற்கு: . + +- உள்ளூர் பாதையில் `Cargo.toml` மேனிஃபெஸ்ட் கோப்பால் வரையறுக்கப்பட்ட தொகுப்பு அல்லது தொகுப்புகளை உருவாக்கவும்: + +`cargo build` + +- மேம்படுத்தல்களுடன், வெளியீட்டு பயன்முறையில் கலைப்பொருட்களை உருவாக்கவும்: + +`cargo build --release` + +- `Cargo.lock` புதுப்பித்த நிலையில் இருக்க வேண்டும்: + +`cargo build --locked` + +- பணியிடத்தில் அனைத்து தொகுப்புகளையும் உருவாக்கவும்: + +`cargo build --workspace` + +- ஒரு குறிப்பிட்ட தொகுப்பை உருவாக்கவும்: + +`cargo build --package {{தொகுப்பு}}` + +- குறிப்பிட்ட பைனரியை மட்டும் உருவாக்கவும்: + +`cargo build --bin {{பெயர்}}` + +- குறிப்பிட்ட சோதனை இலக்கை மட்டும் உருவாக்கவும்: + +`cargo build --test {{சோதனை_பெயர்}}` diff --git a/pages.ta/common/cargo-clippy.md b/pages.ta/common/cargo-clippy.md new file mode 100644 index 0000000000..27bde3d74f --- /dev/null +++ b/pages.ta/common/cargo-clippy.md @@ -0,0 +1,32 @@ +# cargo clippy + +> பொதுவான தவறுகளைப் பிடிக்கவும் உங்கள் ரஸ்ட் குறியீட்டை மேம்படுத்தவும் லிண்ட்களின் தொகுப்பு. +> மேலும் விவரத்திற்கு: . + +- தற்போதைய கோப்பகத்தில் உள்ள குறியீட்டின் மீது காசோலைகளை இயக்கவும்: + +`cargo clippy` + +- `Cargo.lock` புதுப்பித்த நிலையில் இருக்க வேண்டும்: + +`cargo clippy --locked` + +- பணியிடத்தில் உள்ள அனைத்து தொகுப்புகளிலும் சரிபார்ப்புகளை இயக்கவும்: + +`cargo clippy --workspace` + +- தொகுப்புக்கான காசோலைகளை இயக்கவும்: + +`cargo clippy --package {{தொகுப்பு}}` + +- எச்சரிக்கைகளை பிழைகளாகக் கருதுங்கள்: + +`cargo clippy -- --deny warnings` + +- சோதனைகளை இயக்கவும் மற்றும் எச்சரிக்கைகளை புறக்கணிக்கவும்: + +`cargo clippy -- --allow warnings` + +- Clippy பரிந்துரைகளை தானாகவே பயன்படுத்தவும்: + +`cargo clippy --fix` diff --git a/pages.ta/common/cargo-doc.md b/pages.ta/common/cargo-doc.md new file mode 100644 index 0000000000..6f15888af6 --- /dev/null +++ b/pages.ta/common/cargo-doc.md @@ -0,0 +1,20 @@ +# cargo doc + +> ரஸ்ட் தொகுப்பு ஆவணங்களை ஆஃப்லைனில் உருவாக்கி பார்க்கவும். +> மேலும் விவரத்திற்கு: . + +- உலாவியில் இயல்புநிலை தொகுப்பு ஆவணங்களை உருவாக்கி பார்க்கவும்: + +`cargo doc --open` + +- பிணையத்தை அணுகாமல் ஆவணங்களை உருவாக்கவும்: + +`cargo doc --offline` + +- குறிப்பிட்ட தொகுப்பின் ஆவணங்களைப் பார்க்கவும்: + +`cargo doc --open --package {{தொகுப்பு}}` + +- குறிப்பிட்ட தொகுப்பின் ஆவணங்களை ஆஃப்லைனில் பார்க்கவும்: + +`cargo doc --open --offline --package {{தொகுப்பு}}` diff --git a/pages.ta/common/cargo-rustc.md b/pages.ta/common/cargo-rustc.md new file mode 100644 index 0000000000..325c447728 --- /dev/null +++ b/pages.ta/common/cargo-rustc.md @@ -0,0 +1,36 @@ +# cargo rustc + +> ரஸ்ட் தொகுப்பைத் தொகுத்து, கூடுதல் விருப்பங்களை கம்பைலருக்கு அனுப்பவும். +> மேலும் விவரத்திற்கு: . + +- தற்போதைய வேலை கோப்பகத்தில் `Cargo.toml` மேனிஃபெஸ்ட் கோப்பால் வரையறுக்கப்பட்ட தொகுப்பு அல்லது தொகுப்புகளை உருவாக்கவும்: + +`cargo rustc` + +- மேம்படுத்தல்களுடன், வெளியீட்டு பயன்முறையில் கலைப்பொருட்களை உருவாக்கவும்: + +`cargo rustc --release` + +- தற்போதைய CPUக்கான கட்டமைப்பு-குறிப்பிட்ட மேம்படுத்தல்களுடன் தொகுக்கவும்: + +`cargo rustc --release -- -C target-cpu=native` + +- வேக உகப்பாக்கத்துடன் தொகுக்கவும்: + +`cargo rustc -- -C opt-level {{1|2|3}}` + +- [s]ize (அளவு) ஆப்டிமைசேஷன் மூலம் தொகுக்கவும் (`z` லூப் வெக்டரைசேஷனையும் முடக்குகிறது): + +`cargo rustc -- -C opt-level {{s|z}}` + +- உங்கள் தொகுப்பு பாதுகாப்பற்ற குறியீட்டைப் பயன்படுத்துகிறதா எனச் சரிபார்க்கவும்: + +`cargo rustc --lib -- -D unsafe-code` + +- ஒரு குறிப்பிட்ட தொகுப்பை உருவாக்கவும்: + +`cargo rustc --package {{தொகுப்பு}}` + +- குறிப்பிட்ட பைனரியை மட்டும் உருவாக்கவும்: + +`cargo --bin {{பெயர்}}` diff --git a/pages.ta/common/cargo-test.md b/pages.ta/common/cargo-test.md new file mode 100644 index 0000000000..16bfc64759 --- /dev/null +++ b/pages.ta/common/cargo-test.md @@ -0,0 +1,32 @@ +# cargo test + +> ரஸ்ட் தொகுப்பின் அலகு மற்றும் ஒருங்கிணைப்பு சோதனைகளை செயல்படுத்தவும். +> மேலும் விவரத்திற்கு: . + +- அவர்களின் பெயர்களில் ஒரு குறிப்பிட்ட சரம் உள்ள சோதனைகளை மட்டும் இயக்கவும்: + +`cargo test {{சோதனை_பெயர்}}` + +- ஒரே நேரத்தில் இயங்கும் சோதனை வழக்குகளின் எண்ணிக்கையை அமைக்கவும்: + +`cargo test -- --test-threads={{எண்ணிக்கை}}` + +- `Cargo.lock` புதுப்பித்த நிலையில் இருக்க வேண்டும்: + +`cargo test --locked` + +- மேம்படுத்தல்களுடன், வெளியீட்டு பயன்முறையில் கலைப்பொருட்களை சோதிக்கவும்: + +`cargo test --release` + +- பணியிடத்தில் உள்ள அனைத்து தொகுப்புகளையும் சோதிக்கவும்: + +`cargo test --workspace` + +- ஒரு தொகுப்புக்கான சோதனைகளை இயக்கவும்: + +`cargo test --package {{தொகுப்பு}}` + +- சோதனைச் செயலாக்கங்களிலிருந்து வெளியீட்டை மறைக்காமல் சோதனைகளை இயக்கவும்: + +`cargo test -- --nocapture` diff --git a/pages.ta/common/cargo.md b/pages.ta/common/cargo.md index e81111fb58..3927760d40 100644 --- a/pages.ta/common/cargo.md +++ b/pages.ta/common/cargo.md @@ -2,7 +2,7 @@ > ரஸ்ட் திட்டங்கள் மற்றும் அவற்றின் தொகுதி சார்புகளை (கிரேட்ஸ்) நிர்வகிக்கவும். > `cargo build` போன்ற சில துணைக் கட்டளைகள் அவற்றின் சொந்த பயன்பாட்டு ஆவணங்களைக் கொண்டுள்ளன. -> மேலும் விவரத்திற்கு: . +> மேலும் விவரத்திற்கு: . - கிரேட்ஸைத் தேடுங்கள்: diff --git a/pages.ta/common/clamav.md b/pages.ta/common/clamav.md new file mode 100644 index 0000000000..7f0bd125ac --- /dev/null +++ b/pages.ta/common/clamav.md @@ -0,0 +1,16 @@ +# clamav + +> இக்கட்டளை `clamdscan` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr clamdscan` + +- `clamd` டீமான் இயங்காமல் கோப்புகளை ஸ்கேன் செய்வதற்கான tldr பக்கத்தைக் காட்டு: + +`tldr clamscan` + +- வைரஸ் வரையறைகளைப் புதுப்பிக்க tldr பக்கத்தைக் காட்டு: + +`tldr freshclam` diff --git a/pages.ta/common/cp.md b/pages.ta/common/cp.md index 4142511d68..2addedfa49 100644 --- a/pages.ta/common/cp.md +++ b/pages.ta/common/cp.md @@ -19,6 +19,10 @@ `cp -vR {{மூல/அடைவிற்குப்/பாதை}} {{நகல்/அடைவிற்குப்/பாதை}}` +- ஒரே நேரத்தில் பல கோப்புகளை ஒரு கோப்பகத்திற்கு நகலெடுக்கவும்: + +`cp -t {{இலக்கு_அடைவுப்/பாதை}} {{பாதை/டு/கோப்பு1 பாதை/டு/கோப்பு2 ...}}` + - txt வகைப்பெயருடையக் கோப்புகளை ஊடாட்ட நிலையில் (ஏற்கனவே இருக்கும் கோப்புகள் மேலெழுதும் முன் உறுதிப்படுத்தக் கேட்கும்) நகலெடு: `cp -i {{*.txt}} {{நகல்/அடைவிற்குப்/பாதை}}` @@ -26,3 +30,7 @@ - நகலெடுக்கும் முன் குறியீட்டு இணைப்புகளைப் பின்பற்றவும்: `cp -L {{இணைப்பு}} {{நகல்/அடைவிற்குப்/பாதை}}` + +- முதல் வாதத்தை இலக்கு கோப்பகமாகப் பயன்படுத்தவும் (`xargs ... | cp -t `): + +`cp -t {{நகல்/அடைவிற்குப்/பாதை}} {{பாதை/டு/கோப்பு_அல்லது_அடைவு1 பாதை/டு/கோப்பு_அல்லது_அடைவு2 ...}}` diff --git a/pages.ta/common/cron.md b/pages.ta/common/cron.md new file mode 100644 index 0000000000..7aa126c473 --- /dev/null +++ b/pages.ta/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> இக்கட்டளை `crontab` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr crontab` diff --git a/pages.ta/common/fossil-ci.md b/pages.ta/common/fossil-ci.md new file mode 100644 index 0000000000..5d03afdacd --- /dev/null +++ b/pages.ta/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> இக்கட்டளை `fossil-commit` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr fossil-commit` diff --git a/pages.ta/common/fossil-delete.md b/pages.ta/common/fossil-delete.md new file mode 100644 index 0000000000..b3c007a023 --- /dev/null +++ b/pages.ta/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> இக்கட்டளை `fossil rm` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr fossil rm` diff --git a/pages.ta/common/fossil-forget.md b/pages.ta/common/fossil-forget.md new file mode 100644 index 0000000000..bb6cadddcb --- /dev/null +++ b/pages.ta/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> இக்கட்டளை `fossil rm` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr fossil rm` diff --git a/pages.ta/common/fossil-new.md b/pages.ta/common/fossil-new.md new file mode 100644 index 0000000000..2adaf1a658 --- /dev/null +++ b/pages.ta/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> இக்கட்டளை `fossil-init` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr fossil-init` diff --git a/pages.ta/common/gh-cs.md b/pages.ta/common/gh-cs.md new file mode 100644 index 0000000000..c59e595a07 --- /dev/null +++ b/pages.ta/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> இக்கட்டளை `gh-codespace` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr gh-codespace` diff --git a/pages.ta/common/git-am.md b/pages.ta/common/git-am.md index e9564c8fc1..32a32a75dc 100644 --- a/pages.ta/common/git-am.md +++ b/pages.ta/common/git-am.md @@ -8,6 +8,10 @@ `git am {{பாதை/டு/கோப்பு.patch}}` +- ரிமோட் பேட்ச் கோப்பைப் பின்பற்றி, மாற்றங்களைச் செய்யுங்கள்: + +`curl -L {{https://example.com/file.patch}} | git apply` + - பேட்ச் கோப்பைப் பயன்படுத்துவதற்கான செயல்முறையை நிறுத்தவும்: `git am --abort` diff --git a/pages.ta/common/git-annex.md b/pages.ta/common/git-annex.md index f8f434ba5a..0b37a13d8c 100644 --- a/pages.ta/common/git-annex.md +++ b/pages.ta/common/git-annex.md @@ -4,10 +4,6 @@ > ஒரு கோப்பு இணைக்கப்படும்போது, ​​அதன் உள்ளடக்கம் ஒரு முக்கிய மதிப்புக் கடைக்கு நகர்த்தப்படும், மேலும் உள்ளடக்கத்தை சுட்டிக்காட்டும் ஒரு சிம்லிங்க் செய்யப்படுகிறது. > மேலும் விவரத்திற்கு: . -- உதவி: - -`git annex help` - - `git annex` உடன் ஒரு களஞ்சியத்தை தொடங்கவும்: `git annex init` @@ -27,3 +23,7 @@ - ஒரு கோப்பு அல்லது கோப்பகத்தைப் பெறுங்கள்: `git annex get {{பாதை/டு/கோப்பு_அல்லது_அடைவு}}` + +- உதவியைக் காட்டு: + +`git annex help` diff --git a/pages.ta/common/git-check-ignore.md b/pages.ta/common/git-check-ignore.md index 6edd5af143..04c744ff54 100644 --- a/pages.ta/common/git-check-ignore.md +++ b/pages.ta/common/git-check-ignore.md @@ -11,7 +11,7 @@ `git check-ignore {{பாதை/டு/கோப்பு}} {{அடைவிற்குப்/பாதை}}` -- stdin இலிருந்து ஒரு வரியில் ஒன்றுக்கு பாதை பெயர்களைப் பயன்படுத்தவும்: +- `stdin` இலிருந்து ஒரு வரியில் ஒன்றுக்கு பாதை பெயர்களைப் பயன்படுத்தவும்: `git check-ignore --stdin < {{பாதை/டு/கோப்பு_பட்டியல்}}` diff --git a/pages.ta/common/git.md b/pages.ta/common/git.md new file mode 100644 index 0000000000..c18d955543 --- /dev/null +++ b/pages.ta/common/git.md @@ -0,0 +1,29 @@ +# git + +> விநியோகிக்கப்பட்ட பதிப்பு கட்டுப்பாட்டு அமைப்பு. +> `commit`, `add`, `branch`, `checkout`, `push`போன்ற சில துணைக் கட்டளைகள் அவற்றின் சொந்த பயன்பாட்டு ஆவணங்களைக் கொண்டுள்ளன, அவை `tldr git subcommand` வழியாக அணுகலாம். +> மேலும் விவரத்திற்கு: . + +- Git பதிப்பைச் சரிபார்க்கவும்: + +`git --version` + +- பொதுவான உதவியைக் காட்டு: + +`git --help` + +- Git துணைக் கட்டளையில் உதவியைக் காட்டு (`clone`, `add`, `push`, `log` போன்றவை.): + +`git help {{துணை_கட்டளை}}` + +- ஒரு Git துணைக் கட்டளையை இயக்கவும்: + +`git {{துணை_கட்டளை}}` + +- தனிப்பயன் களஞ்சிய வேர் பாதையில் Git துணைக் கட்டளையை இயக்கவும்: + +`git -C {{பாதை/டு/களஞ்சியம்}} {{துணை_கட்டளை}}` + +- கொடுக்கப்பட்ட உள்ளமைவு தொகுப்புடன் Git துணைக் கட்டளையை இயக்கவும்: + +`git -c '{{கட்டமைப்பு.சாவி}}={{மதிப்பு}}' {{துணை_கட்டளை}}` diff --git a/pages.ta/common/gnmic-sub.md b/pages.ta/common/gnmic-sub.md new file mode 100644 index 0000000000..57ee6f4e6c --- /dev/null +++ b/pages.ta/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> இக்கட்டளை `gnmic subscribe` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr gnmic subscribe` diff --git a/pages.ta/common/google-chrome.md b/pages.ta/common/google-chrome.md new file mode 100644 index 0000000000..98b3601c50 --- /dev/null +++ b/pages.ta/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> இக்கட்டளை `chromium` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr chromium` diff --git a/pages.ta/common/hx.md b/pages.ta/common/hx.md new file mode 100644 index 0000000000..2333a96152 --- /dev/null +++ b/pages.ta/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> இக்கட்டளை `helix` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr helix` diff --git a/pages.ta/common/java.md b/pages.ta/common/java.md index 351af372fa..4a9c777411 100644 --- a/pages.ta/common/java.md +++ b/pages.ta/common/java.md @@ -1,7 +1,7 @@ # java > ஜாவா பயன்பாட்டு துவக்கி. -> மேலும் விவரத்திற்கு: . +> மேலும் விவரத்திற்கு: . - ஜாவா `.class` கோப்பை இயக்கவும், அதில் ஒரு முக்கிய முறையைக் கொண்டு, வகுப்புப் பெயரை மட்டும் பயன்படுத்தவும்: diff --git a/pages.ta/common/javac.md b/pages.ta/common/javac.md index d05a689584..96eec6e0d0 100644 --- a/pages.ta/common/javac.md +++ b/pages.ta/common/javac.md @@ -1,7 +1,7 @@ # javac > ஜாவா பயன்பாட்டு தொகுப்பாளர். -> மேலும் விவரத்திற்கு: . +> மேலும் விவரத்திற்கு: . - ஒரு `.java` கோப்பை தொகுக்கவும்: diff --git a/pages.ta/common/jekyll.md b/pages.ta/common/jekyll.md index 025f057583..cc12627a8f 100644 --- a/pages.ta/common/jekyll.md +++ b/pages.ta/common/jekyll.md @@ -3,7 +3,7 @@ > ஒரு எளிய, வலைப்பதிவு அறிந்த, நிலையான தள ஜெனரேட்டர். > மேலும் விவரத்திற்கு: . -- ஒரு மேம்பாட்டு சேவையகத்தை உருவாக்கவும், அது இயங்குவது `http://localhost:4000/` இல்: +- ஒரு மேம்பாட்டு சேவையகத்தை உருவாக்கவும், அது இயங்குவது இல்: `jekyll serve` diff --git a/pages.ta/common/kafkacat.md b/pages.ta/common/kafkacat.md new file mode 100644 index 0000000000..717a18cc24 --- /dev/null +++ b/pages.ta/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> இக்கட்டளை `kcat` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr kcat` diff --git a/pages.ta/common/lzcat.md b/pages.ta/common/lzcat.md new file mode 100644 index 0000000000..84d650517e --- /dev/null +++ b/pages.ta/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> இக்கட்டளை `xz` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr xz` diff --git a/pages.ta/common/lzma.md b/pages.ta/common/lzma.md new file mode 100644 index 0000000000..af47a9e213 --- /dev/null +++ b/pages.ta/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> இக்கட்டளை `xz` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr xz` diff --git a/pages.ta/common/mv.md b/pages.ta/common/mv.md index 15b092ed16..999b92fcf1 100644 --- a/pages.ta/common/mv.md +++ b/pages.ta/common/mv.md @@ -5,24 +5,28 @@ - கோப்பை ஓரிடத்திலிருந்து இன்னோரிடத்திற்கு நகர்த்து: -`mv {{மூலப்பாதை}} {{குறிபாதை}}` +`mv {{பாதை/டு/மூலம்}} {{பாதை/டு/குறி}}` + +- ஒரு கோப்பு அல்லது கோப்பகத்தை ஏற்கனவே உள்ள கோப்பகத்திற்கு நகர்த்தவும்: + +`mv {{பாதை/டு/மூலம்}} {{பாதை/டு/இருக்கும்_கோப்பகம்}}` - கோப்பு பெயர்களை வைத்து, கோப்புகளை மற்றொரு கோப்பகத்திற்கு நகர்த்தவும்: -`mv {{மூலப்பாதை1}} {{மூலப்பாதை2}} {{மூலப்பாதை3}} {{இலக்கு_கோப்பகம்}}` +`mv {{பாதை/டு/மூலப்பாதை1 பாதை/டு/மூலப்பாதை2 ...}} {{பாதை/டு/இலக்கு_கோப்பகம்}}` - ஏற்கனவே இருக்கும் கோப்புகள் மேலெழுதும் முன் உறுதிப்படுத்தாதே: -`mv -f {{மூலப்பாதை}} {{குறிபாதை}}` +`mv -f {{பாதை/டு/மூலம்}} {{பாதை/டு/குறி}}` - ஏற்கனவே இருக்கும் கோப்புகள் மேலெழுதும் முன் கோப்பு அனுமதிகளைப் பொருட்படுத்தாது உறுதிப்படுத்து: -`mv -i {{மூலக்கோப்பு}} {{குறிகோப்பு}}` +`mv -i {{பாதை/டு/மூலம்}} {{பாதை/டு/குறி}}` - ஏற்கனவே இருக்கும் கோப்புகள் மேலெழுதாதே: -`mv -n {{மூலக்கோப்பு}} {{குறிகோப்பு}}` +`mv -n {{பாதை/டு/மூலம்}} {{பாதை/டு/குறி}}` -- கோப்புகளை வளவள நிலையில் (நகர்த்தப்படும் கோப்புகள் பட்டியலிடப்படும்) நகர்த்து: +- கோப்புகளை verbose நிலையில் நகர்த்து, நகர்த்தப்படும் கோப்புகள் பட்டியலிடப்படும்: -`mv -v {{மூலக்கோப்பு}} {{குறிகோப்பு}}` +`mv -v {{பாதை/டு/மூலம்}} {{பாதை/டு/குறி}}` diff --git a/pages.ta/common/nm-classic.md b/pages.ta/common/nm-classic.md new file mode 100644 index 0000000000..88269805a9 --- /dev/null +++ b/pages.ta/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> இக்கட்டளை `nm` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr nm` diff --git a/pages.ta/common/ntl.md b/pages.ta/common/ntl.md new file mode 100644 index 0000000000..0733ede181 --- /dev/null +++ b/pages.ta/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> இக்கட்டளை `netlify` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr netlify` diff --git a/pages.ta/common/ptpython3.md b/pages.ta/common/ptpython3.md new file mode 100644 index 0000000000..160071cc3a --- /dev/null +++ b/pages.ta/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> இக்கட்டளை `ptpython` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr ptpython` diff --git a/pages.ta/common/python3.md b/pages.ta/common/python3.md new file mode 100644 index 0000000000..0773edfe7b --- /dev/null +++ b/pages.ta/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> இக்கட்டளை `python` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr python` diff --git a/pages.ta/common/rcat.md b/pages.ta/common/rcat.md new file mode 100644 index 0000000000..e52b2dbdca --- /dev/null +++ b/pages.ta/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> இக்கட்டளை `rc` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr rc` diff --git a/pages.ta/common/ripgrep.md b/pages.ta/common/ripgrep.md new file mode 100644 index 0000000000..7a95c9d03f --- /dev/null +++ b/pages.ta/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> இக்கட்டளை `rg` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr rg` diff --git a/pages.ta/common/ruby.md b/pages.ta/common/ruby.md index 06beae088d..a5eaf97e65 100644 --- a/pages.ta/common/ruby.md +++ b/pages.ta/common/ruby.md @@ -19,6 +19,10 @@ `ruby -c {{ஸ்கிரிப்ட்.rb}}` +- தற்போதைய கோப்பகத்தில் போர்ட் 8080 இல் உள்ளமைக்கப்பட்ட HTTP சேவையகத்தைத் தொடங்கவும்: + +`ruby -run -e httpd` + - நீங்கள் பயன்படுத்தும் ரூபியின் பதிப்பைக் காட்டு: `ruby -v` diff --git a/pages.ta/common/rustc.md b/pages.ta/common/rustc.md new file mode 100644 index 0000000000..4bad8d0611 --- /dev/null +++ b/pages.ta/common/rustc.md @@ -0,0 +1,33 @@ +# rustc + +> ரஸ்ட் கம்பைலர். +> ரஸ்ட் மொழி மூல கோப்புகளை செயலாக்குகிறது, தொகுக்கிறது மற்றும் இணைக்கிறது. +> மேலும் விவரத்திற்கு: . + +- ஒரு கோப்பை தொகுக்கவும்: + +`rustc {{பாதை/டு/கோப்பு.rs}}` + +- உயர் தேர்வுமுறையுடன் தொகுக்கவும்: + +`rustc -O {{பாதை/டு/கோப்பு.rs}}` + +- பிழைத்திருத்த தகவலுடன் தொகுக்கவும்: + +`rustc -g {{பாதை/டு/கோப்பு.rs}}` + +- தற்போதைய CPU க்கான கட்டிடக்கலை-குறிப்பிட்ட மேம்படுத்தல்களுடன் தொகுக்கவும்: + +`rustc -C target-cpu=native {{பாதை/டு/கோப்பு.rs}}` + +- தற்போதைய CPU க்கான கட்டிடக்கலை-குறிப்பிட்ட மேம்படுத்தல்களைக் காண்பி: + +`rustc -C target-cpu=native --print cfg` + +- இலக்கு பட்டியலைக் காட்டு: + +`rustc --print target-list` + +- ஒரு குறிப்பிட்ட இலக்கை தொகுக்கவும்: + +`rustc --target {{இலக்கு_மூன்று}} {{பாதை/டு/கோப்பு.rs}}` diff --git a/pages.ta/common/rustfmt.md b/pages.ta/common/rustfmt.md new file mode 100644 index 0000000000..dd61412e74 --- /dev/null +++ b/pages.ta/common/rustfmt.md @@ -0,0 +1,16 @@ +# rustfmt + +> ரஸ்ட் மூலக் குறியீட்டை வடிவமைப்பதற்கான கருவி. +> மேலும் விவரத்திற்கு: . + +- ஒரு கோப்பை வடிவமைக்கவும், அசல் கோப்பை மேலெழுதவும்: + +`rustfmt {{பாதை/டு/மூலம்.rs}}` + +- வடிவமைப்பிற்கான கோப்பைச் சரிபார்த்து, கன்சோலில் ஏதேனும் மாற்றங்களைக் காட்டவும்: + +`rustfmt --check {{பாதை/டு/மூலம்.rs}}` + +- வடிவமைப்பிற்கு முன் ஏதேனும் மாற்றப்பட்ட கோப்புகளை காப்புப் பிரதி எடுக்கவும் (அசல் கோப்பு `.bk` நீட்டிப்புடன் மறுபெயரிடப்பட்டது): + +`rustfmt --backup {{பாதை/டு/மூலம்.rs}}` diff --git a/pages.ta/common/rustup-init.sh.md b/pages.ta/common/rustup-init.sh.md new file mode 100644 index 0000000000..3e7ca45aff --- /dev/null +++ b/pages.ta/common/rustup-init.sh.md @@ -0,0 +1,32 @@ +# rustup-init.sh + +> `rustup` மற்றும் ரஸ்ட் கருவித்தொகுப்பை நிறுவுவதற்கான ஸ்கிரிப்ட். +> மேலும் விவரத்திற்கு: . + +- `rustup` மற்றும் இயல்புநிலை ரஸ்ட் கருவித்தொகுப்பை நிறுவ, `rustup-init` ஐப் பதிவிறக்கி இயக்கவும்: + +`curl https://sh.rustup.rs -sSf | sh -s` + +- பதிவிறக்கி, `rustup-init` ஐ இயக்கி, அதற்கு வாதங்களை அனுப்பவும்: + +`curl https://sh.rustup.rs -sSf | sh -s -- {{வாதங்கள்}}` + +- `rustup-init` ஐ இயக்கி, நிறுவுவதற்கான கூடுதல் கூறுகள் அல்லது இலக்குகளைக் குறிப்பிடவும்: + +`rustup-init.sh --target {{இலக்கு}} --component {{கூறு}}` + +- `rustup-init` ஐ இயக்கி, நிறுவ வேண்டிய இயல்புநிலை கருவித்தொகுப்பைக் குறிப்பிடவும்: + +`rustup-init.sh --default-toolchain {{கருவித்தொகுப்பு}}` + +- `rustup-init` ஐ இயக்கவும் மற்றும் எந்த கருவித்தொகுப்பையும் நிறுவ வேண்டாம்: + +`rustup-init.sh --default-toolchain {{none}}` + +- `rustup-init` ஐ இயக்கி, நிறுவல் சுயவிவரத்தைக் குறிப்பிடவும்: + +`rustup-init.sh --profile {{minimal|default|complete}}` + +- உறுதிப்படுத்தலைக் கேட்காமல் `rustup-init` ஐ இயக்கவும்: + +`rustup-init.sh -y` diff --git a/pages.ta/common/rustup.md b/pages.ta/common/rustup.md new file mode 100644 index 0000000000..e268e60d8a --- /dev/null +++ b/pages.ta/common/rustup.md @@ -0,0 +1,33 @@ +# rustup + +> ரஸ்ட் டூல்செயின் நிறுவி. +> ரஸ்ட் டூல்செயின்களை நிறுவவும், நிர்வகிக்கவும் மற்றும் புதுப்பிக்கவும் இதை பயன்படுத்துகிறோம். +> மேலும் விவரத்திற்கு: . + +- உங்கள் கணினிக்கு இரவு டூல்செயின்களை நிறுவவும்: + +`rustup install nightly` + +- இயல்புநிலை டூல்செயின்களை இரவிற்கு மாற்றவும், இதனால் `cargo` மற்றும் `rustc` கட்டளைகள் அதைப் பயன்படுத்தும்: + +`rustup default nightly` + +- தற்போதைய ப்ராஜெக்ட்டில் இருக்கும் போது இரவு டூல்செயினைப் பயன்படுத்தவும், ஆனால் உலகளாவிய அமைப்புகளை மாற்றாமல் விடவும்: + +`rustup override set nightly` + +- அனைத்து டூல்செயின்களையும் புதுப்பிக்கவும்: + +`rustup update` + +- நிறுவப்பட்ட டூல்செயின்களை பட்டியலிடுங்கள்: + +`rustup show` + +- ஒரு குறிப்பிட்ட டூல்செயின் மூலம் சரக்கு கட்டமைப்பை இயக்கவும்: + +`rustup run {{டூல்செயின்_பெயர்}} cargo build` + +- இயல்புநிலை இணைய உலாவியில் உள்ளூர் ரஸ்ட் ஆவணத்தைத் திறக்கவும்: + +`rustup doc` diff --git a/pages.ta/common/transmission.md b/pages.ta/common/transmission.md new file mode 100644 index 0000000000..1ed1cec5ed --- /dev/null +++ b/pages.ta/common/transmission.md @@ -0,0 +1,29 @@ +# transmission + +> Transmission ஒரு எளிய டொரண்ட் (torrent) வாடிக்கையாளர். +> Transmission ஒரு கட்டளை அல்ல, ஆனால் கட்டளைகளின் தொகுப்பு. கீழே உள்ள பக்கங்களைப் பார்க்கவும். +> மேலும் விவரத்திற்கு: . + +- Transmission டீமானை இயக்குவதற்கு tldr பக்கத்தைக் காட்டு: + +`tldr transmission-daemon` + +- டெமானுடன் தொடர்புகொள்வதற்கு tldr பக்கத்தைக் காட்டு: + +`tldr transmission-remote` + +- டொரண்ட் கோப்புகளை உருவாக்க tldr பக்கத்தைக் காட்டு: + +`tldr transmission-create` + +- டொரண்ட் கோப்புகளை மாற்றுவதற்கு tldr பக்கத்தைக் காட்டு: + +`tldr transmission-edit` + +- டொரண்ட் கோப்புகளைப் பற்றிய தகவலைப் பெற tldr பக்கத்தைக் காட்டு: + +`tldr transmission-show` + +- டெமானுடன் தொடர்புகொள்வதற்கான தடுக்கப்பட்ட முறைக்கான tldr பக்கத்தைக் காட்டு: + +`tldr transmission-cli` diff --git a/pages.ta/common/unlzma.md b/pages.ta/common/unlzma.md new file mode 100644 index 0000000000..0f28a17373 --- /dev/null +++ b/pages.ta/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> இக்கட்டளை `xz` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr xz` diff --git a/pages.ta/common/unxz.md b/pages.ta/common/unxz.md new file mode 100644 index 0000000000..cd02243d8c --- /dev/null +++ b/pages.ta/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> இக்கட்டளை `xz` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr xz` diff --git a/pages.ta/common/xzcat.md b/pages.ta/common/xzcat.md new file mode 100644 index 0000000000..473734908b --- /dev/null +++ b/pages.ta/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> இக்கட்டளை `xz` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr xz` diff --git a/pages.ta/linux/alternatives.md b/pages.ta/linux/alternatives.md new file mode 100644 index 0000000000..c94ecae40a --- /dev/null +++ b/pages.ta/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> இக்கட்டளை `update-alternatives` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr update-alternatives` diff --git a/pages.ta/linux/apx.md b/pages.ta/linux/apx.md index df28484a2d..c127265c29 100644 --- a/pages.ta/linux/apx.md +++ b/pages.ta/linux/apx.md @@ -1,33 +1,37 @@ # apx -> வெண்ணிலா OSக்கான தொகுப்பு மேலாண்மை பயன்பாடு. -> நிர்வகிக்கப்பட்ட கொள்கலன்களுக்குள் அல்லது நேரடியாக ஹோஸ்டுக்குள் தொகுப்புகளை நிறுவுங்கள். +> தொகுப்பு மேலாண்மை பயன்பாடு. +> பல மூலங்களிலிருந்து நிர்வகிக்கப்பட்ட கொள்கலன்களுக்குள் தொகுப்புகளை நிறுவவும் (`apx` அனைத்து கட்டளைகளிலும் --aur,--dnf, --apk கொடிகளை ஆதரிக்கிறது). > மேலும் விவரத்திற்கு: . -- கணினியில் ஒரு தொகுப்பை நிறுவி கொள்கலனை துவக்கவும்: +- ஒரு குறிப்பிட்ட கொள்கலனை துவக்கவும் அல்லது மீண்டும் துவக்கவும்: -`sudo apx install --sys {{நிரல்தொகுப்பு}} && apx init` +`apx init` -- கணினியில் தொகுப்பு(களை) நிறுவவும் அல்லது ஒரு கொள்கலனுக்குள் AUR தொகுப்பு(களை) நிறுவவும்: +- கொள்கலனில் குறிப்பிட்ட தொகுப்புகளை நிறுவவும்: -`sudo apx install --{{sys|aur}} {{நிரல்தொகுப்பு1 நிரல்தொகுப்பு2 ...}}` +`apx install {{நிரல்தொகுப்பு1 நிரல்தொகுப்பு2 ...}}` -- AUR இலிருந்து நிறுவப்பட்ட தொகுப்பை இயக்கவும்: +- கொள்கலனுக்குள் DEB/RPM தொகுப்பை நிறுவவும் (RPMகளை நிறுவ `--dnf` கொடியைப் பயன்படுத்தவும்): -`apx --aur run {{நிரல்தொகுப்பு}}` +`apx install --sideload {{பாதை/டு/நிரல்தொகுப்பு}}` -- கணினியில் கிடைக்கும் தொகுப்புகளின் பட்டியலைப் புதுப்பிக்கவும்: +- கொள்கலனில் இருந்து குறிப்பிட்ட தொகுப்புகளை அகற்றவும்: -`sudo apx --sys update` +`apx remove {{நிரல்தொகுப்பு1 நிரல்தொகுப்பு2 ...}}` -- கணினியில் நிறுவப்பட்ட அனைத்து தொகுப்புகளையும் அவற்றின் புதிய கிடைக்கக்கூடிய பதிப்பிற்கு மேம்படுத்தவும்: +- குறிப்பிட்ட தொகுப்புகளுக்காக தேடவும்: -`sudo apx --sys upgrade` +`apx search {{நிரல்தொகுப்பு1 நிரல்தொகுப்பு2 ...}}` -- கணினியில் அல்லது AUR கொள்கலனில் இருந்து தொகுப்பு(களை) அகற்றவும்: - -`sudo apx --{{sys|aur}} remove {{நிரல்தொகுப்பு1 நிரல்தொகுப்பு2 ...}}` - -- `apt` ஐப் பயன்படுத்தி தொகுப்புகளை நிறுவ, கொள்கலனை உள்ளிடவும் (அதிலிருந்து வெளியேற, கொள்கலனுக்குள் `exit` என்பதைப் பயன்படுத்தவும்): +- கட்டளைகளை இயக்க நிர்வகிக்கப்படும் கொள்கலன் ஷெல்லை (ஓடு) உள்ளிடவும் (கண்டெய்னரில் இருந்து வெளியேற `exit` என தட்டச்சு செய்யவும்): `apx enter` + +- கொள்கலனில் கிடைக்கும் தொகுப்புகளின் பட்டியலைப் புதுப்பிக்கவும்: + +`apx update` + +- கொள்கலனில் நிறுவப்பட்ட அனைத்து தொகுப்புகளையும் அவற்றின் புதிய கிடைக்கக்கூடிய பதிப்பிற்கு மேம்படுத்தவும்: + +`apx upgrade` diff --git a/pages.ta/linux/batcat.md b/pages.ta/linux/batcat.md new file mode 100644 index 0000000000..1857653ada --- /dev/null +++ b/pages.ta/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> இக்கட்டளை `bat` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr bat` diff --git a/pages.ta/linux/bspwm.md b/pages.ta/linux/bspwm.md new file mode 100644 index 0000000000..e011498b21 --- /dev/null +++ b/pages.ta/linux/bspwm.md @@ -0,0 +1,13 @@ +# bspwm + +> பைனரி ஸ்பேஸ் பார்டிஷனிங் அடிப்படையிலான டைலிங் சாளர மேலாளர். +> இக்கட்டளை `bspc` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- `bspwm` ஐத் தொடங்கவும் (இந்த கட்டளையை இயக்கும் போது ஏற்கனவே இருக்கும் சாளர மேலாளர் திறக்கப்படக்கூடாது என்பதை நினைவில் கொள்ளவும்): + +`bspwm -c {{பாதை/டு/கட்டமைப்பு}}` + +- `bspc`க்கான ஆவணங்களைக் காண்க: + +`tldr bspc` diff --git a/pages.ta/linux/cgroups.md b/pages.ta/linux/cgroups.md new file mode 100644 index 0000000000..63fab4d155 --- /dev/null +++ b/pages.ta/linux/cgroups.md @@ -0,0 +1,17 @@ +# cgroups + +> Cgroups எனப்படும் கட்டுப்பாட்டு குழுக்கள், செயல்முறைகள் மூலம் வள பயன்பாட்டை கட்டுப்படுத்துதல், அளவிடுதல் மற்றும் கட்டுப்படுத்துவதற்கான லினக்ஸ் கர்னல் (Linux kernel) அம்சமாகும். +> Cgroups எனினும் ஒரு கட்டளை அல்ல, மாறாக கட்டளைகளின் தொகுப்பு, கீழே உள்ள தொடர்புடைய பக்கங்களைப் பார்க்கவும். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr cgclassify` + +- `cgcreate` க்கான tldr பக்கத்தைக் காட்டு: + +`tldr cgcreate` + +- `cgexec` க்கான tldr பக்கத்தைக் காட்டு: + +`tldr cgexec` diff --git a/pages.ta/linux/distrobox-create.md b/pages.ta/linux/distrobox-create.md index 9dd588d554..cd8e7f5327 100644 --- a/pages.ta/linux/distrobox-create.md +++ b/pages.ta/linux/distrobox-create.md @@ -1,13 +1,13 @@ # distrobox-create > உள்ளீட்டு பெயர் மற்றும் படத்துடன் டிஸ்ட்ரோபாக்ஸ் கொள்கலன்களை உருவாக்கவும். -> உருவாக்கப்பட்ட கொள்கலன் ஹோஸ்டுடன் இறுக்கமாக ஒருங்கிணைக்கப்படும், இது பயனரின் HOME கோப்பகம், வெளிப்புற சேமிப்பு, வெளிப்புற USB சாதனங்கள் மற்றும் வரைகலை பயன்பாடுகள் (X11/Wayland) மற்றும் ஆடியோவைப் பகிர அனுமதிக்கிறது. -> மேலும் விவரத்திற்கு: . +> உருவாக்கப்பட்ட கொள்கலன் ஹோஸ்டுடன் இறுக்கமாக ஒருங்கிணைக்கப்படும், இது பயனரின் வீட்டு அடைவு, வெளிப்புற சேமிப்பு, வெளிப்புற USB சாதனங்கள், வரைகலை பயன்பாடுகள் (X11/Wayland) மற்றும் ஒலியைப் பகிர அனுமதிக்கிறது. +> மேலும் விவரத்திற்கு: . -- ஆல்பைன் படத்தைப் பயன்படுத்தி டிஸ்ட்ரோபாக்ஸை உருவாக்கவும்: +- உபுண்டு படத்தைப் பயன்படுத்தி டிஸ்ட்ரோபாக்ஸ் கொள்கலனை உருவாக்கவும்: -`distrobox-create {{கொள்கலன்_பெயர்}} --image alpine` +`distrobox-create {{கொள்கலன்_பெயர்}} --image {{ubuntu:latest}}` -- ஒரு டிஸ்ட்ரோபாக்ஸ் குளோன்: +- ஒரு டிஸ்ட்ரோபாக்ஸ் கொள்கலனை நகல் செய்யுங்கள்: -`distrobox-create --clone {{கொள்கலன்_பெயர்}} {{குளோன்_செய்யப்பட்ட_கன்டெய்னர்_பெயர்}}` +`distrobox-create --clone {{கொள்கலன்_பெயர்}} {{நகல்_செய்யப்பட்ட_கொள்கலன்_பெயர்}}` diff --git a/pages.ta/linux/distrobox-enter.md b/pages.ta/linux/distrobox-enter.md index c1da7d838f..e4cc608872 100644 --- a/pages.ta/linux/distrobox-enter.md +++ b/pages.ta/linux/distrobox-enter.md @@ -1,13 +1,17 @@ # distrobox-enter -> டிஸ்ட்ரோபாக்ஸ் கொள்கலனில் கட்டளையை இயக்கவும். -> முன்னிருப்பு கட்டளை செயல்படுத்தப்பட்டது உங்கள் ஷெல் ஆகும், இயக்குவதற்கு வெவ்வேறு ஷெல்கள் அல்லது முழு கட்டளைகளையும் குறிப்பிடவும். ஸ்கிரிப்ட், பயன்பாடு அல்லது சேவையில் பயன்படுத்தினால், tty மற்றும் ஊடாடும் தன்மையை முடக்க --headless பயன்முறையைக் குறிப்பிடலாம். -> மேலும் விவரத்திற்கு: . +> டிஸ்ட்ரோபாக்ஸ் கொள்கலனை உள்ளிடவும். மேலும் காண்க: `tldr distrobox`. +> இயக்கப்படும் இயல்புநிலை கட்டளை உங்கள் SHELL, நீங்கள் இயக்குவதற்கு வெவ்வேறு ஓடுகள் அல்லது முழு கட்டளைகளையும் குறிப்பிடலாம். ஸ்கிரிப்ட், பயன்பாடு அல்லது சேவையில் பயன்படுத்தினால், `--headless' பயன்முறையைப் பயன்படுத்தி tty மற்றும் ஊடாடும் தன்மையை முடக்கலாம். +> மேலும் விவரத்திற்கு: . -- ஒரு டிஸ்ட்ரோபாக்ஸை உள்ளிட்டு, `sh -l` ஐ இயக்கவும்: +- டிஸ்ட்ரோபாக்ஸ் கொள்கலனை உள்ளிடவும்: -`distrobox-enter container-name -- sh -l` +`distrobox-enter {{கொள்கலன்_பெயர்}}` -- ஒரு tty ஐ உடனடியாகச் செய்யாமல் ஒரு டிஸ்ட்ரோபாக்ஸை உள்ளிடவும்: +- டிஸ்ட்ரோபாக்ஸ் கொள்கலனை உள்ளிட்டு, உள்நுழையும்போது கட்டளையை இயக்கவும்: -`distrobox-enter -H container-name -- uptime -p` +`distrobox-enter {{கொள்கலன்_பெயர்}} -- {{sh -l}}` + +- ஒரு tty ஐ உடனுக்குடன் இல்லாமல் ஒரு டிஸ்ட்ரோபாக்ஸ் கொள்கலனை உள்ளிடவும்: + +`distrobox-enter --name {{கொள்கலன்_பெயர்}} -- {{uptime -p}}` diff --git a/pages.ta/linux/distrobox-list.md b/pages.ta/linux/distrobox-list.md index 63a61ce138..532b24af36 100644 --- a/pages.ta/linux/distrobox-list.md +++ b/pages.ta/linux/distrobox-list.md @@ -1,7 +1,8 @@ # distrobox-list -> கிடைக்கக்கூடிய டிஸ்ட்ரோபாக்ஸ் கொள்கலன்களை பட்டியலிடுங்கள். இது அவற்றைக் கண்டறிந்து, மீதமுள்ள சாதாரண பாட்மேன் அல்லது டோக்கர் கொள்கலன்களிலிருந்து தனித்தனியாக பட்டியலிடுகிறது. -> மேலும் விவரத்திற்கு: . +> அனைத்து டிஸ்ட்ரோபாக்ஸ் கொள்கலன்களையும் பட்டியலிடுங்கள். மேலும் பார்க்கவும்: `tldr distrobox`. +> டிஸ்ட்ரோபாக்ஸ் கொள்கலன்கள் மற்ற சாதாரண பாட்மேன் அல்லது டோக்கர் கொள்கலன்களிலிருந்து தனித்தனியாக பட்டியலிடப்பட்டுள்ளன. +> மேலும் விவரத்திற்கு: . - அனைத்து டிஸ்ட்ரோபாக்ஸ் கொள்கலன்களையும் பட்டியலிடுங்கள்: @@ -9,4 +10,4 @@ - அனைத்து டிஸ்ட்ரோபாக்ஸ் கொள்கலன்களையும் வர்போஸ் தகவலுடன் பட்டியலிடுங்கள்: -`distrobox-list -v` +`distrobox-list --verbose` diff --git a/pages.ta/linux/distrobox-rm.md b/pages.ta/linux/distrobox-rm.md index c86a3760e9..cca3f6e029 100644 --- a/pages.ta/linux/distrobox-rm.md +++ b/pages.ta/linux/distrobox-rm.md @@ -1,12 +1,13 @@ # distrobox-rm > டிஸ்ட்ரோபாக்ஸ் கொள்கலன்களை நீக்கு. -> மேலும் விவரத்திற்கு: . +> `distrobox`ன் துணைக் கட்டளை. மேலும் பார்க்கவும்: `tldr distrobox`. +> மேலும் விவரத்திற்கு: . -- டிஸ்ட்ரோபாக்ஸை அகற்றவும்: +- டிஸ்ட்ரோபாக்ஸ் கொள்கலனை அகற்று (உதவிக்குறிப்பு: கொள்கலனை அகற்றும் முன் அதை நிறுத்தவும்): `distrobox-rm {{கொள்கலன்_பெயர்}}` -- ஒரு டிஸ்ட்ரோபாக்ஸை வலுக்கட்டாயமாக அகற்றவும்: +- ஒரு டிஸ்ட்ரோபாக்ஸ் கொள்கலனை வலுக்கட்டாயமாக அகற்றவும்: `distrobox-rm {{கொள்கலன்_பெயர்}} --force` diff --git a/pages.ta/linux/fdisk.md b/pages.ta/linux/fdisk.md index 05519f5e6e..2b81980a97 100644 --- a/pages.ta/linux/fdisk.md +++ b/pages.ta/linux/fdisk.md @@ -32,6 +32,6 @@ `q` -- ஒரு வட்டை பகிர்ந்தவுடன், உதவி மெனுவைத் திறக்கவும்: +- ஒரு வட்டை பகிர்ந்தவுடன், உதவி பட்டியலைத் திறக்கவும்: `m` diff --git a/pages.ta/linux/gnome-extensions.md b/pages.ta/linux/gnome-extensions.md index ffd88566ac..754a4a7640 100644 --- a/pages.ta/linux/gnome-extensions.md +++ b/pages.ta/linux/gnome-extensions.md @@ -17,7 +17,7 @@ - துணைக் கட்டளைக்கான உதவியைக் காண்பி (`பட்டியல்` போன்றவை): -`gnome-extensions help {{துணைகட்டளை}}` +`gnome-extensions help {{துணை_கட்டளை}}` - ஒரு குறிப்பிட்ட நீட்டிப்பை இயக்கு: diff --git a/pages.ta/linux/ip-route-list.md b/pages.ta/linux/ip-route-list.md new file mode 100644 index 0000000000..69e8359ba7 --- /dev/null +++ b/pages.ta/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> இக்கட்டளை `ip-route-show` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr ip-route-show` diff --git a/pages.ta/linux/megadl.md b/pages.ta/linux/megadl.md new file mode 100644 index 0000000000..15cf4f0036 --- /dev/null +++ b/pages.ta/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> இக்கட்டளை `megatools-dl` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr megatools-dl` diff --git a/pages.ta/linux/pacman-database.md b/pages.ta/linux/pacman-database.md index 49e5a13e6a..63701db2f2 100644 --- a/pages.ta/linux/pacman-database.md +++ b/pages.ta/linux/pacman-database.md @@ -2,6 +2,7 @@ > ஆர்ச் லினக்ஸ் தொகுப்பு தரவுத்தளத்தில் செயல்படவும். > நிறுவப்பட்ட தொகுப்புகளின் சில பண்புகளை மாற்றவும். +> இதையும் பார்க்கவும்: `pacman`. > மேலும் விவரத்திற்கு: . - ஒரு தொகுப்பை மறைமுகமாக நிறுவியதாகக் குறிக்கவும்: diff --git a/pages.ta/linux/pacman-deptest.md b/pages.ta/linux/pacman-deptest.md index 69b9efb156..8b7817b865 100644 --- a/pages.ta/linux/pacman-deptest.md +++ b/pages.ta/linux/pacman-deptest.md @@ -1,6 +1,7 @@ # pacman --deptest > குறிப்பிடப்பட்ட ஒவ்வொரு சார்புநிலையையும் சரிபார்த்து, கணினியில் தற்போது திருப்தி அடையாத சார்புகளின் பட்டியலைத் திருப்பி அனுப்பவும். +> இதையும் பார்க்கவும்: `pacman`. > மேலும் விவரத்திற்கு: . - நிறுவப்படாத சார்புகளின் தொகுப்பு பெயர்களை அச்சிடவும்: diff --git a/pages.ta/linux/pacman-files.md b/pages.ta/linux/pacman-files.md index 9c88e46e1f..4e2d47f7d5 100644 --- a/pages.ta/linux/pacman-files.md +++ b/pages.ta/linux/pacman-files.md @@ -1,7 +1,7 @@ # pacman --files > ஆர்ச் லினக்ஸ் தொகுப்பு மேலாளர் பயன்பாடு. -> `pkgfile` ஐயும் பார்க்கவும். +> இதையும் பார்க்கவும்: `pacman`, `pkgfile`. > மேலும் விவரத்திற்கு: . - தொகுப்பு தரவுத்தளத்தைப் புதுப்பிக்கவும்: @@ -24,10 +24,6 @@ `pacman --files --list {{நிரல்தொகுப்பு_பெயர்}}` -- கோப்புகளுக்கான முழுமையான பாதையை மட்டும் பட்டியலிடுங்கள்: - -`pacman --query --list --quiet {{நிரல்தொகுப்பு_பெயர்}}` - - உதவியைக் காட்டு: `pacman --files --help` diff --git a/pages.ta/linux/pacman-key.md b/pages.ta/linux/pacman-key.md index f91376943e..4549e16aab 100644 --- a/pages.ta/linux/pacman-key.md +++ b/pages.ta/linux/pacman-key.md @@ -1,6 +1,7 @@ # pacman-key > பேக்மேனின் கீரிங்கை நிர்வகிக்க GnuPGக்கான ரேப்பர் ஸ்கிரிப்ட் பயன்படுத்தப்படுகிறது. +> இதையும் பார்க்கவும்: `pacman`. > மேலும் விவரத்திற்கு: . - பேக்மேன் கீரிங்கை துவக்கவும்: diff --git a/pages.ta/linux/pacman-mirrors.md b/pages.ta/linux/pacman-mirrors.md index ddfd64ae44..00fa492b6b 100644 --- a/pages.ta/linux/pacman-mirrors.md +++ b/pages.ta/linux/pacman-mirrors.md @@ -2,6 +2,7 @@ > மஞ்சாரோ லினக்ஸுக்கு பேக்மேன் கண்ணாடி பட்டியலை உருவாக்கவும். > பேக்மேன்-கண்ணாடிகள் ஒவ்வொரு ஓட்டத்திற்கும் உங்கள் தரவுத்தளத்தை ஒத்திசைக்க மற்றும் `sudo pacman -Syyu` ஐப் பயன்படுத்தி உங்கள் கணினியைப் புதுப்பிக்க வேண்டும். +> இதையும் பார்க்கவும்: `pacman`. > மேலும் விவரத்திற்கு: . - இயல்புநிலை அமைப்புகளைப் பயன்படுத்தி ஒரு கண்ணாடி பட்டியலை உருவாக்கவும்: diff --git a/pages.ta/linux/pacman-remove.md b/pages.ta/linux/pacman-remove.md index b272cfd26e..bd255dc112 100644 --- a/pages.ta/linux/pacman-remove.md +++ b/pages.ta/linux/pacman-remove.md @@ -1,6 +1,7 @@ # pacman --remove > ஆர்ச் லினக்ஸ் தொகுப்பு மேலாளர் பயன்பாடு. +> இதையும் பார்க்கவும்: `pacman`. > மேலும் விவரத்திற்கு: . - ஒரு தொகுப்பு மற்றும் அதன் சார்புகளை அகற்றவும்: diff --git a/pages.ta/linux/pacman-sync.md b/pages.ta/linux/pacman-sync.md index 06afcb3c74..2e102722aa 100644 --- a/pages.ta/linux/pacman-sync.md +++ b/pages.ta/linux/pacman-sync.md @@ -1,6 +1,7 @@ # pacman --sync > ஆர்ச் லினக்ஸ் தொகுப்பு மேலாளர் பயன்பாடு. +> இதையும் பார்க்கவும்: `pacman`. > மேலும் விவரத்திற்கு: . - ஒரு புதிய தொகுப்பை நிறுவவும்: diff --git a/pages.ta/linux/pacman-upgrade.md b/pages.ta/linux/pacman-upgrade.md index c3fef1b856..c0e8d16af9 100644 --- a/pages.ta/linux/pacman-upgrade.md +++ b/pages.ta/linux/pacman-upgrade.md @@ -1,6 +1,7 @@ # pacman --upgrade > ஆர்ச் லினக்ஸ் தொகுப்பு மேலாளர் பயன்பாடு. +> இதையும் பார்க்கவும்: `pacman`. > மேலும் விவரத்திற்கு: . - கோப்புகளிலிருந்து ஒன்று அல்லது அதற்கு மேற்பட்ட தொகுப்புகளை நிறுவவும்: diff --git a/pages.ta/linux/pacman.md b/pages.ta/linux/pacman.md index d57e3753ee..5e0f386515 100644 --- a/pages.ta/linux/pacman.md +++ b/pages.ta/linux/pacman.md @@ -1,7 +1,7 @@ # pacman > ஆர்ச் லினக்ஸ் தொகுப்பு மேலாளர் பயன்பாடு. -> `pacman sync` போன்ற சில துணைக் கட்டளைகள் அவற்றின் சொந்த பயன்பாட்டு ஆவணங்களைக் கொண்டுள்ளன. +> இதையும் பார்க்கவும்: `pacman-database`, `pacman-deptest`, `pacman-files`, `pacman-key`, `pacman-mirrors`, `pacman-query`, `pacman-remove`, `pacman-sync`, `pacman-upgrade`.. > மேலும் விவரத்திற்கு: . - அனைத்து தொகுப்புகளையும் ஒத்திசைத்து புதுப்பிக்கவும்: diff --git a/pages.ta/linux/toolbox-create.md b/pages.ta/linux/toolbox-create.md index 182845af79..a413be256c 100644 --- a/pages.ta/linux/toolbox-create.md +++ b/pages.ta/linux/toolbox-create.md @@ -17,8 +17,8 @@ - தனிப்பயன் ஃபெடோரா படத்திலிருந்து `toolbox` கொள்கலனை உருவாக்கவும்: -`toolbox create --image {{registry.fedoraproject.org/fedora-toolbox:36}}` +`toolbox create --image {{registry.fedoraproject.org/fedora-toolbox:38}}` - ஃபெடோரா 36க்கான இயல்புநிலை படத்தைப் பயன்படுத்தி `toolbox` கொள்கலனை உருவாக்கவும்: -`toolbox create --distro {{fedora}} --release {{f36}}` +`toolbox create --distro {{fedora}} --release {{f38}}` diff --git a/pages.ta/linux/toolbox-enter.md b/pages.ta/linux/toolbox-enter.md index 698eeb63a8..45d5050e3f 100644 --- a/pages.ta/linux/toolbox-enter.md +++ b/pages.ta/linux/toolbox-enter.md @@ -14,4 +14,4 @@ - ஃபெடோரா 36 க்கான இயல்புநிலை படத்தைப் பயன்படுத்தி ஒரு கருவிப்பெட்டி கொள்கலனை உள்ளிடவும்: -`toolbox enter --distro {{fedora}} --release {{f36}}` +`toolbox enter --distro {{fedora}} --release {{f38}}` diff --git a/pages.ta/linux/toolbox-help.md b/pages.ta/linux/toolbox-help.md index 155610de89..218897c788 100644 --- a/pages.ta/linux/toolbox-help.md +++ b/pages.ta/linux/toolbox-help.md @@ -9,4 +9,4 @@ - குறிப்பிட்ட துணைக் கட்டளைக்கான `toolbox` கையேட்டைக் காண்பி: -`toolbox help {{துணைக்_கட்டளை}}` +`toolbox help {{துணை_கட்டளை}}` diff --git a/pages.ta/linux/toolbox-run.md b/pages.ta/linux/toolbox-run.md index ff1ff86191..1f078069de 100644 --- a/pages.ta/linux/toolbox-run.md +++ b/pages.ta/linux/toolbox-run.md @@ -1,10 +1,10 @@ # toolbox run -> ஏற்கனவே உள்ள `toolbox` கண்டெய்னரில் கட்டளையை இயக்கவும். +> ஏற்கனவே உள்ள `toolbox` கொள்கலனுக்குள் கட்டளையை இயக்கவும். > மேலும் பார்க்கவும்: `toolbox enter`. > மேலும் விவரத்திற்கு: . -- ஒரு குறிப்பிட்ட `toolbox` கொள்கலனில் ஒரு கட்டளையை இயக்கவும்: +- ஒரு குறிப்பிட்ட `toolbox` கொள்கலனுக்குள் ஒரு கட்டளையை இயக்கவும்: `toolbox run --container {{கொள்கலன்_பெயர்}} {{கட்டளை}}` @@ -12,6 +12,6 @@ `toolbox run --distro {{விநியோகம்}} --release {{வெளியீடு}} {{கட்டளை}}` -- ஃபெடோரா 36க்கான இயல்புநிலை படத்தைப் பயன்படுத்தி `toolbox` கொள்கலனுக்குள் `emacs` ஐ இயக்கவும்: +- ஃபெடோரா 38க்கான இயல்புநிலை படத்தைப் பயன்படுத்தி `toolbox` கொள்கலனுக்குள் `emacs` ஐ இயக்கவும்: -`toolbox run --distro {{fedora}} --release {{f36}} {{emacs}}` +`toolbox run --distro {{fedora}} --release {{f38}} {{emacs}}` diff --git a/pages.ta/linux/toolbox.md b/pages.ta/linux/toolbox.md index 7dd8217815..b71e0a9871 100644 --- a/pages.ta/linux/toolbox.md +++ b/pages.ta/linux/toolbox.md @@ -1,16 +1,16 @@ # toolbox -> லினக்ஸ் இல் கண்டெய்னரைஸ் செய்யப்பட்ட கட்டளை வரி சூழல்களுக்கான கருவி. +> லினக்ஸ் இல் கொள்கலன்கள் செய்யப்பட்ட கட்டளை வரி சூழல்களுக்கான கருவி. > `toolbox create` போன்ற சில துணைக் கட்டளைகள் அவற்றின் சொந்த பயன்பாட்டு ஆவணங்களைக் கொண்டுள்ளன. > மேலும் விவரத்திற்கு: . - `toolbox` துணைக் கட்டளையை இயக்கவும்: -`toolbox {{துணைக்_கட்டளை}}` +`toolbox {{துணை_கட்டளை}}` - `toolbox` துணைக் கட்டளைக்கான உதவியைக் காட்டு (`create`, `enter`, `rm`, `rmi` போன்றவை.): -`toolbox help {{துணைக்_கட்டளை}}` +`toolbox help {{துணை_கட்டளை}}` - பொதுவான உதவியைக் காட்டு: diff --git a/pages.ta/linux/ubuntu-bug.md b/pages.ta/linux/ubuntu-bug.md new file mode 100644 index 0000000000..7660498002 --- /dev/null +++ b/pages.ta/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> இக்கட்டளை `apport-bug` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr apport-bug` diff --git a/pages.ta/linux/ufw.md b/pages.ta/linux/ufw.md index 1401f886e3..2ff152670a 100644 --- a/pages.ta/linux/ufw.md +++ b/pages.ta/linux/ufw.md @@ -1,8 +1,8 @@ # ufw > சிக்கலற்ற ஃபயர்வால். -> ஃபயர்வாலின் உள்ளமைவை எளிதாக்குவதை நோக்கமாகக் கொண்ட ஐப்டேபிள்களுக்கான முன்பக்கம். -> மேலும் விவரத்திற்கு: . +> ஃபயர்வாலின் உள்ளமைவை எளிதாக்குவதை நோக்கமாகக் கொண்ட `iptables` முன்பக்கம். +> மேலும் விவரத்திற்கு: . - `ufw` ஐ இயக்கு: diff --git a/pages.ta/linux/wine.md b/pages.ta/linux/wine.md index 19d434d3f5..f053e8ea30 100644 --- a/pages.ta/linux/wine.md +++ b/pages.ta/linux/wine.md @@ -3,7 +3,7 @@ > யூனிக்ஸ் அடிப்படையிலான கணினிகளில் விண்டோஸ் இயங்குதளங்களை இயக்கவும். > மேலும் விவரத்திற்கு: . -- `wine` சூழலில் ஒரு குறிப்பிட்ட நிரலை இயக்கவும்:: +- `wine` சூழலில் ஒரு குறிப்பிட்ட நிரலை இயக்கவும்: `wine {{கட்டளை}}` diff --git a/pages.ta/osx/aa.md b/pages.ta/osx/aa.md new file mode 100644 index 0000000000..bbb0a19d41 --- /dev/null +++ b/pages.ta/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> இக்கட்டளை `yaa` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr yaa` diff --git a/pages.ta/osx/g[.md b/pages.ta/osx/g[.md new file mode 100644 index 0000000000..7667b36abe --- /dev/null +++ b/pages.ta/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> இக்கட்டளை `-p linux [` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux [` diff --git a/pages.ta/osx/gawk.md b/pages.ta/osx/gawk.md new file mode 100644 index 0000000000..acc2033367 --- /dev/null +++ b/pages.ta/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> இக்கட்டளை `-p linux awk` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux awk` diff --git a/pages.ta/osx/gb2sum.md b/pages.ta/osx/gb2sum.md new file mode 100644 index 0000000000..27175c6afe --- /dev/null +++ b/pages.ta/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> இக்கட்டளை `-p linux b2sum` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux b2sum` diff --git a/pages.ta/osx/gbase32.md b/pages.ta/osx/gbase32.md new file mode 100644 index 0000000000..a9644d1ddb --- /dev/null +++ b/pages.ta/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> இக்கட்டளை `-p linux base32` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux base32` diff --git a/pages.ta/osx/gbase64.md b/pages.ta/osx/gbase64.md new file mode 100644 index 0000000000..52737eb931 --- /dev/null +++ b/pages.ta/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> இக்கட்டளை `-p linux base64` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux base64` diff --git a/pages.ta/osx/gbasename.md b/pages.ta/osx/gbasename.md new file mode 100644 index 0000000000..de709748d2 --- /dev/null +++ b/pages.ta/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> இக்கட்டளை `-p linux basename` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux basename` diff --git a/pages.ta/osx/gbasenc.md b/pages.ta/osx/gbasenc.md new file mode 100644 index 0000000000..8225088e8a --- /dev/null +++ b/pages.ta/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> இக்கட்டளை `-p linux basenc` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux basenc` diff --git a/pages.ta/osx/gcat.md b/pages.ta/osx/gcat.md new file mode 100644 index 0000000000..304ea5d38d --- /dev/null +++ b/pages.ta/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> இக்கட்டளை `-p linux cat` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux cat` diff --git a/pages.ta/osx/gchcon.md b/pages.ta/osx/gchcon.md new file mode 100644 index 0000000000..52ed519b82 --- /dev/null +++ b/pages.ta/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> இக்கட்டளை `-p linux chcon` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux chcon` diff --git a/pages.ta/osx/gchgrp.md b/pages.ta/osx/gchgrp.md new file mode 100644 index 0000000000..4501d65ca8 --- /dev/null +++ b/pages.ta/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> இக்கட்டளை `-p linux chgrp` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux chgrp` diff --git a/pages.ta/osx/gchmod.md b/pages.ta/osx/gchmod.md new file mode 100644 index 0000000000..2d9d21a159 --- /dev/null +++ b/pages.ta/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> இக்கட்டளை `-p linux chmod` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux chmod` diff --git a/pages.ta/osx/gchown.md b/pages.ta/osx/gchown.md new file mode 100644 index 0000000000..873b8f44ef --- /dev/null +++ b/pages.ta/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> இக்கட்டளை `-p linux chown` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux chown` diff --git a/pages.ta/osx/gchroot.md b/pages.ta/osx/gchroot.md new file mode 100644 index 0000000000..d1345d7856 --- /dev/null +++ b/pages.ta/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> இக்கட்டளை `-p linux chroot` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux chroot` diff --git a/pages.ta/osx/gcksum.md b/pages.ta/osx/gcksum.md new file mode 100644 index 0000000000..0e3f5d6b52 --- /dev/null +++ b/pages.ta/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> இக்கட்டளை `-p linux cksum` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux cksum` diff --git a/pages.ta/osx/gcomm.md b/pages.ta/osx/gcomm.md new file mode 100644 index 0000000000..0650184683 --- /dev/null +++ b/pages.ta/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> இக்கட்டளை `-p linux comm` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux comm` diff --git a/pages.ta/osx/gcp.md b/pages.ta/osx/gcp.md new file mode 100644 index 0000000000..4e62a3a275 --- /dev/null +++ b/pages.ta/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> இக்கட்டளை `-p linux cp` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux cp` diff --git a/pages.ta/osx/gcsplit.md b/pages.ta/osx/gcsplit.md new file mode 100644 index 0000000000..f2f0c59edc --- /dev/null +++ b/pages.ta/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> இக்கட்டளை `-p linux csplit` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux csplit` diff --git a/pages.ta/osx/gcut.md b/pages.ta/osx/gcut.md new file mode 100644 index 0000000000..b74407385f --- /dev/null +++ b/pages.ta/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> இக்கட்டளை `-p linux cut` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux cut` diff --git a/pages.ta/osx/gdate.md b/pages.ta/osx/gdate.md new file mode 100644 index 0000000000..0b0ee60cd4 --- /dev/null +++ b/pages.ta/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> இக்கட்டளை `-p linux date` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux date` diff --git a/pages.ta/osx/gdd.md b/pages.ta/osx/gdd.md new file mode 100644 index 0000000000..63910fba26 --- /dev/null +++ b/pages.ta/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> இக்கட்டளை `-p linux dd` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux dd` diff --git a/pages.ta/osx/gdf.md b/pages.ta/osx/gdf.md new file mode 100644 index 0000000000..e754f6da01 --- /dev/null +++ b/pages.ta/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> இக்கட்டளை `-p linux df` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux df` diff --git a/pages.ta/osx/gdir.md b/pages.ta/osx/gdir.md new file mode 100644 index 0000000000..7cd8531d4b --- /dev/null +++ b/pages.ta/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> இக்கட்டளை `-p linux dir` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux dir` diff --git a/pages.ta/osx/gdircolors.md b/pages.ta/osx/gdircolors.md new file mode 100644 index 0000000000..fa31084d32 --- /dev/null +++ b/pages.ta/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> இக்கட்டளை `-p linux dircolors` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux dircolors` diff --git a/pages.ta/osx/gdirname.md b/pages.ta/osx/gdirname.md new file mode 100644 index 0000000000..34b533af7d --- /dev/null +++ b/pages.ta/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> இக்கட்டளை `-p linux dirname` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux dirname` diff --git a/pages.ta/osx/gdnsdomainname.md b/pages.ta/osx/gdnsdomainname.md new file mode 100644 index 0000000000..5a42825707 --- /dev/null +++ b/pages.ta/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> இக்கட்டளை `-p linux dnsdomainname` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux dnsdomainname` diff --git a/pages.ta/osx/gecho.md b/pages.ta/osx/gecho.md new file mode 100644 index 0000000000..ce0ec59f38 --- /dev/null +++ b/pages.ta/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> இக்கட்டளை `-p linux echo` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux echo` diff --git a/pages.ta/osx/ged.md b/pages.ta/osx/ged.md new file mode 100644 index 0000000000..c3b7b91eff --- /dev/null +++ b/pages.ta/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> இக்கட்டளை `-p linux ed` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux ed` diff --git a/pages.ta/osx/gegrep.md b/pages.ta/osx/gegrep.md new file mode 100644 index 0000000000..862cd2584b --- /dev/null +++ b/pages.ta/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> இக்கட்டளை `-p linux egrep` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux egrep` diff --git a/pages.ta/osx/genv.md b/pages.ta/osx/genv.md new file mode 100644 index 0000000000..7ec63f081a --- /dev/null +++ b/pages.ta/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> இக்கட்டளை `-p linux env` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux env` diff --git a/pages.ta/osx/gexpand.md b/pages.ta/osx/gexpand.md new file mode 100644 index 0000000000..b5e93ede37 --- /dev/null +++ b/pages.ta/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> இக்கட்டளை `-p linux expand` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux expand` diff --git a/pages.ta/osx/gexpr.md b/pages.ta/osx/gexpr.md new file mode 100644 index 0000000000..01abdb869e --- /dev/null +++ b/pages.ta/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> இக்கட்டளை `-p linux expr` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux expr` diff --git a/pages.ta/osx/gfactor.md b/pages.ta/osx/gfactor.md new file mode 100644 index 0000000000..d1d85cf593 --- /dev/null +++ b/pages.ta/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> இக்கட்டளை `-p linux factor` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux factor` diff --git a/pages.ta/osx/gfalse.md b/pages.ta/osx/gfalse.md new file mode 100644 index 0000000000..be04339fbb --- /dev/null +++ b/pages.ta/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> இக்கட்டளை `-p linux false` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux false` diff --git a/pages.ta/osx/gfgrep.md b/pages.ta/osx/gfgrep.md new file mode 100644 index 0000000000..46a0ca658b --- /dev/null +++ b/pages.ta/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> இக்கட்டளை `-p linux fgrep` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux fgrep` diff --git a/pages.ta/osx/gfind.md b/pages.ta/osx/gfind.md new file mode 100644 index 0000000000..cb3aaf7649 --- /dev/null +++ b/pages.ta/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> இக்கட்டளை `-p linux find` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux find` diff --git a/pages.ta/osx/gfmt.md b/pages.ta/osx/gfmt.md new file mode 100644 index 0000000000..86960eac32 --- /dev/null +++ b/pages.ta/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> இக்கட்டளை `-p linux fmt` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux fmt` diff --git a/pages.ta/osx/gfold.md b/pages.ta/osx/gfold.md new file mode 100644 index 0000000000..c8c726d108 --- /dev/null +++ b/pages.ta/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> இக்கட்டளை `-p linux fold` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux fold` diff --git a/pages.ta/osx/gftp.md b/pages.ta/osx/gftp.md new file mode 100644 index 0000000000..46d13d0049 --- /dev/null +++ b/pages.ta/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> இக்கட்டளை `-p linux ftp` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux ftp` diff --git a/pages.ta/osx/ggrep.md b/pages.ta/osx/ggrep.md new file mode 100644 index 0000000000..47f8b9daf2 --- /dev/null +++ b/pages.ta/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> இக்கட்டளை `-p linux grep` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux grep` diff --git a/pages.ta/osx/ggroups.md b/pages.ta/osx/ggroups.md new file mode 100644 index 0000000000..ff6a9e0686 --- /dev/null +++ b/pages.ta/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> இக்கட்டளை `-p linux groups` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux groups` diff --git a/pages.ta/osx/ghead.md b/pages.ta/osx/ghead.md new file mode 100644 index 0000000000..4ffd74996e --- /dev/null +++ b/pages.ta/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> இக்கட்டளை `-p linux head` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux head` diff --git a/pages.ta/osx/ghostid.md b/pages.ta/osx/ghostid.md new file mode 100644 index 0000000000..12bd4b77a9 --- /dev/null +++ b/pages.ta/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> இக்கட்டளை `-p linux hostid` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux hostid` diff --git a/pages.ta/osx/ghostname.md b/pages.ta/osx/ghostname.md new file mode 100644 index 0000000000..66599b02c5 --- /dev/null +++ b/pages.ta/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> இக்கட்டளை `-p linux hostname` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux hostname` diff --git a/pages.ta/osx/gid.md b/pages.ta/osx/gid.md new file mode 100644 index 0000000000..66ede1055f --- /dev/null +++ b/pages.ta/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> இக்கட்டளை `-p linux id` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux id` diff --git a/pages.ta/osx/gifconfig.md b/pages.ta/osx/gifconfig.md new file mode 100644 index 0000000000..758983de6e --- /dev/null +++ b/pages.ta/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> இக்கட்டளை `-p linux ifconfig` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux ifconfig` diff --git a/pages.ta/osx/gindent.md b/pages.ta/osx/gindent.md new file mode 100644 index 0000000000..3355056fbe --- /dev/null +++ b/pages.ta/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> இக்கட்டளை `-p linux indent` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux indent` diff --git a/pages.ta/osx/ginstall.md b/pages.ta/osx/ginstall.md new file mode 100644 index 0000000000..096a7ae14c --- /dev/null +++ b/pages.ta/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> இக்கட்டளை `-p linux install` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux install` diff --git a/pages.ta/osx/gjoin.md b/pages.ta/osx/gjoin.md new file mode 100644 index 0000000000..bb38f23689 --- /dev/null +++ b/pages.ta/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> இக்கட்டளை `-p linux join` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux join` diff --git a/pages.ta/osx/gkill.md b/pages.ta/osx/gkill.md new file mode 100644 index 0000000000..4955618d74 --- /dev/null +++ b/pages.ta/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> இக்கட்டளை `-p linux kill` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux kill` diff --git a/pages.ta/osx/glibtool.md b/pages.ta/osx/glibtool.md new file mode 100644 index 0000000000..63580e1a9c --- /dev/null +++ b/pages.ta/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> இக்கட்டளை `-p linux libtool` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux libtool` diff --git a/pages.ta/osx/glibtoolize.md b/pages.ta/osx/glibtoolize.md new file mode 100644 index 0000000000..9cc0e81854 --- /dev/null +++ b/pages.ta/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> இக்கட்டளை `-p linux libtoolize` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux libtoolize` diff --git a/pages.ta/osx/glink.md b/pages.ta/osx/glink.md new file mode 100644 index 0000000000..80a1d77e37 --- /dev/null +++ b/pages.ta/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> இக்கட்டளை `-p linux link` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux link` diff --git a/pages.ta/osx/gln.md b/pages.ta/osx/gln.md new file mode 100644 index 0000000000..8a838cc3c7 --- /dev/null +++ b/pages.ta/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> இக்கட்டளை `-p linux ln` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux ln` diff --git a/pages.ta/osx/glocate.md b/pages.ta/osx/glocate.md new file mode 100644 index 0000000000..d72ccd78d0 --- /dev/null +++ b/pages.ta/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> இக்கட்டளை `-p linux locate` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux locate` diff --git a/pages.ta/osx/glogger.md b/pages.ta/osx/glogger.md new file mode 100644 index 0000000000..0cb939cae4 --- /dev/null +++ b/pages.ta/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> இக்கட்டளை `-p linux logger` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux logger` diff --git a/pages.ta/osx/glogname.md b/pages.ta/osx/glogname.md new file mode 100644 index 0000000000..52ea39e5f0 --- /dev/null +++ b/pages.ta/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> இக்கட்டளை `-p linux logname` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux logname` diff --git a/pages.ta/osx/gls.md b/pages.ta/osx/gls.md new file mode 100644 index 0000000000..0b763fd16b --- /dev/null +++ b/pages.ta/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> இக்கட்டளை `-p linux ls` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux ls` diff --git a/pages.ta/osx/gmake.md b/pages.ta/osx/gmake.md new file mode 100644 index 0000000000..1b2bc1affa --- /dev/null +++ b/pages.ta/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> இக்கட்டளை `-p linux make` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux make` diff --git a/pages.ta/osx/gmd5sum.md b/pages.ta/osx/gmd5sum.md new file mode 100644 index 0000000000..41a044ccaa --- /dev/null +++ b/pages.ta/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> இக்கட்டளை `-p linux md5sum` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux md5sum` diff --git a/pages.ta/osx/gmkdir.md b/pages.ta/osx/gmkdir.md new file mode 100644 index 0000000000..4253c85145 --- /dev/null +++ b/pages.ta/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> இக்கட்டளை `-p linux mkdir` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux mkdir` diff --git a/pages.ta/osx/gmkfifo.md b/pages.ta/osx/gmkfifo.md new file mode 100644 index 0000000000..e6fa5189cb --- /dev/null +++ b/pages.ta/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> இக்கட்டளை `-p linux mkfifo` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux mkfifo` diff --git a/pages.ta/osx/gmknod.md b/pages.ta/osx/gmknod.md new file mode 100644 index 0000000000..18debc745c --- /dev/null +++ b/pages.ta/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> இக்கட்டளை `-p linux mknod` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux mknod` diff --git a/pages.ta/osx/gmktemp.md b/pages.ta/osx/gmktemp.md new file mode 100644 index 0000000000..b5f5c63e03 --- /dev/null +++ b/pages.ta/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> இக்கட்டளை `-p linux mktemp` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux mktemp` diff --git a/pages.ta/osx/gmv.md b/pages.ta/osx/gmv.md new file mode 100644 index 0000000000..48b86a7c64 --- /dev/null +++ b/pages.ta/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> இக்கட்டளை `-p linux mv` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux mv` diff --git a/pages.ta/osx/gnice.md b/pages.ta/osx/gnice.md new file mode 100644 index 0000000000..ae4f2353c9 --- /dev/null +++ b/pages.ta/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> இக்கட்டளை `-p linux nice` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux nice` diff --git a/pages.ta/osx/gnl.md b/pages.ta/osx/gnl.md new file mode 100644 index 0000000000..1b53a0775b --- /dev/null +++ b/pages.ta/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> இக்கட்டளை `-p linux nl` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux nl` diff --git a/pages.ta/osx/gnohup.md b/pages.ta/osx/gnohup.md new file mode 100644 index 0000000000..f78786a973 --- /dev/null +++ b/pages.ta/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> இக்கட்டளை `-p linux nohup` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux nohup` diff --git a/pages.ta/osx/gnproc.md b/pages.ta/osx/gnproc.md new file mode 100644 index 0000000000..898b0ab0f3 --- /dev/null +++ b/pages.ta/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> இக்கட்டளை `-p linux nproc` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux nproc` diff --git a/pages.ta/osx/gnumfmt.md b/pages.ta/osx/gnumfmt.md new file mode 100644 index 0000000000..dba08ea983 --- /dev/null +++ b/pages.ta/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> இக்கட்டளை `-p linux numfmt` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux numfmt` diff --git a/pages.ta/osx/god.md b/pages.ta/osx/god.md new file mode 100644 index 0000000000..f1665f3e8d --- /dev/null +++ b/pages.ta/osx/god.md @@ -0,0 +1,7 @@ +# god + +> இக்கட்டளை `-p linux od` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux od` diff --git a/pages.ta/osx/gpaste.md b/pages.ta/osx/gpaste.md new file mode 100644 index 0000000000..b1e03b6d1f --- /dev/null +++ b/pages.ta/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> இக்கட்டளை `-p linux paste` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux paste` diff --git a/pages.ta/osx/gpathchk.md b/pages.ta/osx/gpathchk.md new file mode 100644 index 0000000000..c5086b5a5f --- /dev/null +++ b/pages.ta/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> இக்கட்டளை `-p linux pathchk` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux pathchk` diff --git a/pages.ta/osx/gping.md b/pages.ta/osx/gping.md new file mode 100644 index 0000000000..c4ca4c546e --- /dev/null +++ b/pages.ta/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> இக்கட்டளை `-p linux ping` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux ping` diff --git a/pages.ta/osx/gping6.md b/pages.ta/osx/gping6.md new file mode 100644 index 0000000000..f686264e71 --- /dev/null +++ b/pages.ta/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> இக்கட்டளை `-p linux ping6` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux ping6` diff --git a/pages.ta/osx/gpinky.md b/pages.ta/osx/gpinky.md new file mode 100644 index 0000000000..4561f2a13a --- /dev/null +++ b/pages.ta/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> இக்கட்டளை `-p linux pinky` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux pinky` diff --git a/pages.ta/osx/gpr.md b/pages.ta/osx/gpr.md new file mode 100644 index 0000000000..21d9d0b69c --- /dev/null +++ b/pages.ta/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> இக்கட்டளை `-p linux pr` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux pr` diff --git a/pages.ta/osx/gprintenv.md b/pages.ta/osx/gprintenv.md new file mode 100644 index 0000000000..a39c83abaa --- /dev/null +++ b/pages.ta/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> இக்கட்டளை `-p linux printenv` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux printenv` diff --git a/pages.ta/osx/gprintf.md b/pages.ta/osx/gprintf.md new file mode 100644 index 0000000000..623af7cda4 --- /dev/null +++ b/pages.ta/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> இக்கட்டளை `-p linux printf` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux printf` diff --git a/pages.ta/osx/gptx.md b/pages.ta/osx/gptx.md new file mode 100644 index 0000000000..fa3bc2e7cf --- /dev/null +++ b/pages.ta/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> இக்கட்டளை `-p linux ptx` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux ptx` diff --git a/pages.ta/osx/gpwd.md b/pages.ta/osx/gpwd.md new file mode 100644 index 0000000000..899705f4f2 --- /dev/null +++ b/pages.ta/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> இக்கட்டளை `-p linux pwd` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux pwd` diff --git a/pages.ta/osx/grcp.md b/pages.ta/osx/grcp.md new file mode 100644 index 0000000000..bf349a806d --- /dev/null +++ b/pages.ta/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> இக்கட்டளை `-p linux rcp` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux rcp` diff --git a/pages.ta/osx/greadlink.md b/pages.ta/osx/greadlink.md new file mode 100644 index 0000000000..eabbc916f3 --- /dev/null +++ b/pages.ta/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> இக்கட்டளை `-p linux readlink` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux readlink` diff --git a/pages.ta/osx/grealpath.md b/pages.ta/osx/grealpath.md new file mode 100644 index 0000000000..0d3e9af677 --- /dev/null +++ b/pages.ta/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> இக்கட்டளை `-p linux realpath` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux realpath` diff --git a/pages.ta/osx/grexec.md b/pages.ta/osx/grexec.md new file mode 100644 index 0000000000..fbb7ed07d8 --- /dev/null +++ b/pages.ta/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> இக்கட்டளை `-p linux rexec` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux rexec` diff --git a/pages.ta/osx/grlogin.md b/pages.ta/osx/grlogin.md new file mode 100644 index 0000000000..3ec078efb0 --- /dev/null +++ b/pages.ta/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> இக்கட்டளை `-p linux rlogin` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux rlogin` diff --git a/pages.ta/osx/grm.md b/pages.ta/osx/grm.md new file mode 100644 index 0000000000..c413ea7f34 --- /dev/null +++ b/pages.ta/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> இக்கட்டளை `-p linux rm` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux rm` diff --git a/pages.ta/osx/grmdir.md b/pages.ta/osx/grmdir.md new file mode 100644 index 0000000000..b67c052b7e --- /dev/null +++ b/pages.ta/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> இக்கட்டளை `-p linux rmdir` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux rmdir` diff --git a/pages.ta/osx/grsh.md b/pages.ta/osx/grsh.md new file mode 100644 index 0000000000..d4ff94fce8 --- /dev/null +++ b/pages.ta/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> இக்கட்டளை `-p linux rsh` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux rsh` diff --git a/pages.ta/osx/gruncon.md b/pages.ta/osx/gruncon.md new file mode 100644 index 0000000000..bee19ba7ca --- /dev/null +++ b/pages.ta/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> இக்கட்டளை `-p linux runcon` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux runcon` diff --git a/pages.ta/osx/gsed.md b/pages.ta/osx/gsed.md new file mode 100644 index 0000000000..c811486703 --- /dev/null +++ b/pages.ta/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> இக்கட்டளை `-p linux sed` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux sed` diff --git a/pages.ta/osx/gseq.md b/pages.ta/osx/gseq.md new file mode 100644 index 0000000000..f79ce858f3 --- /dev/null +++ b/pages.ta/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> இக்கட்டளை `-p linux seq` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux seq` diff --git a/pages.ta/osx/gsha1sum.md b/pages.ta/osx/gsha1sum.md new file mode 100644 index 0000000000..3e1161ef22 --- /dev/null +++ b/pages.ta/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> இக்கட்டளை `-p linux sha1sum` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux sha1sum` diff --git a/pages.ta/osx/gsha224sum.md b/pages.ta/osx/gsha224sum.md new file mode 100644 index 0000000000..8d35c70218 --- /dev/null +++ b/pages.ta/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> இக்கட்டளை `-p linux sha224sum` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux sha224sum` diff --git a/pages.ta/osx/gsha256sum.md b/pages.ta/osx/gsha256sum.md new file mode 100644 index 0000000000..3ee10cd671 --- /dev/null +++ b/pages.ta/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> இக்கட்டளை `-p linux sha256sum` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux sha256sum` diff --git a/pages.ta/osx/gsha384sum.md b/pages.ta/osx/gsha384sum.md new file mode 100644 index 0000000000..7a2ac5589e --- /dev/null +++ b/pages.ta/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> இக்கட்டளை `-p linux sha384sum` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux sha384sum` diff --git a/pages.ta/osx/gsha512sum.md b/pages.ta/osx/gsha512sum.md new file mode 100644 index 0000000000..11bc918e46 --- /dev/null +++ b/pages.ta/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> இக்கட்டளை `-p linux sha512sum` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux sha512sum` diff --git a/pages.ta/osx/gshred.md b/pages.ta/osx/gshred.md new file mode 100644 index 0000000000..184f44c9e0 --- /dev/null +++ b/pages.ta/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> இக்கட்டளை `-p linux shred` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux shred` diff --git a/pages.ta/osx/gshuf.md b/pages.ta/osx/gshuf.md new file mode 100644 index 0000000000..63033e969d --- /dev/null +++ b/pages.ta/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> இக்கட்டளை `-p linux shuf` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux shuf` diff --git a/pages.ta/osx/gsleep.md b/pages.ta/osx/gsleep.md new file mode 100644 index 0000000000..8d5fe0ad98 --- /dev/null +++ b/pages.ta/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> இக்கட்டளை `-p linux sleep` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux sleep` diff --git a/pages.ta/osx/gsort.md b/pages.ta/osx/gsort.md new file mode 100644 index 0000000000..83dec26722 --- /dev/null +++ b/pages.ta/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> இக்கட்டளை `-p linux sort` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux sort` diff --git a/pages.ta/osx/gsplit.md b/pages.ta/osx/gsplit.md new file mode 100644 index 0000000000..25d47c0e32 --- /dev/null +++ b/pages.ta/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> இக்கட்டளை `-p linux split` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux split` diff --git a/pages.ta/osx/gstat.md b/pages.ta/osx/gstat.md new file mode 100644 index 0000000000..f62d84f10c --- /dev/null +++ b/pages.ta/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> இக்கட்டளை `-p linux stat` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux stat` diff --git a/pages.ta/osx/gstdbuf.md b/pages.ta/osx/gstdbuf.md new file mode 100644 index 0000000000..23e312349d --- /dev/null +++ b/pages.ta/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> இக்கட்டளை `-p linux stdbuf` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux stdbuf` diff --git a/pages.ta/osx/gstty.md b/pages.ta/osx/gstty.md new file mode 100644 index 0000000000..b3f401b564 --- /dev/null +++ b/pages.ta/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> இக்கட்டளை `-p linux stty` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux stty` diff --git a/pages.ta/osx/gsum.md b/pages.ta/osx/gsum.md new file mode 100644 index 0000000000..dca33dfea3 --- /dev/null +++ b/pages.ta/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> இக்கட்டளை `-p linux sum` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux sum` diff --git a/pages.ta/osx/gsync.md b/pages.ta/osx/gsync.md new file mode 100644 index 0000000000..618f4e8cdc --- /dev/null +++ b/pages.ta/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> இக்கட்டளை `-p linux sync` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux sync` diff --git a/pages.ta/osx/gtac.md b/pages.ta/osx/gtac.md new file mode 100644 index 0000000000..cbcb1e96aa --- /dev/null +++ b/pages.ta/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> இக்கட்டளை `-p linux tac` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux tac` diff --git a/pages.ta/osx/gtail.md b/pages.ta/osx/gtail.md new file mode 100644 index 0000000000..b72d7026fa --- /dev/null +++ b/pages.ta/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> இக்கட்டளை `-p linux tail` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux tail` diff --git a/pages.ta/osx/gtalk.md b/pages.ta/osx/gtalk.md new file mode 100644 index 0000000000..6f83d79131 --- /dev/null +++ b/pages.ta/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> இக்கட்டளை `-p linux talk` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux talk` diff --git a/pages.ta/osx/gtar.md b/pages.ta/osx/gtar.md new file mode 100644 index 0000000000..737d56ff38 --- /dev/null +++ b/pages.ta/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> இக்கட்டளை `-p linux tar` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux tar` diff --git a/pages.ta/osx/gtee.md b/pages.ta/osx/gtee.md new file mode 100644 index 0000000000..479925084f --- /dev/null +++ b/pages.ta/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> இக்கட்டளை `-p linux tee` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux tee` diff --git a/pages.ta/osx/gtelnet.md b/pages.ta/osx/gtelnet.md new file mode 100644 index 0000000000..56fe649c35 --- /dev/null +++ b/pages.ta/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> இக்கட்டளை `-p linux telnet` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux telnet` diff --git a/pages.ta/osx/gtest.md b/pages.ta/osx/gtest.md new file mode 100644 index 0000000000..160301c818 --- /dev/null +++ b/pages.ta/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> இக்கட்டளை `-p linux test` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux test` diff --git a/pages.ta/osx/gtftp.md b/pages.ta/osx/gtftp.md new file mode 100644 index 0000000000..c1f57b4daa --- /dev/null +++ b/pages.ta/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> இக்கட்டளை `-p linux tftp` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux tftp` diff --git a/pages.ta/osx/gtime.md b/pages.ta/osx/gtime.md new file mode 100644 index 0000000000..84bd5e646a --- /dev/null +++ b/pages.ta/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> இக்கட்டளை `-p linux time` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux time` diff --git a/pages.ta/osx/gtimeout.md b/pages.ta/osx/gtimeout.md new file mode 100644 index 0000000000..8988f5b4c2 --- /dev/null +++ b/pages.ta/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> இக்கட்டளை `-p linux timeout` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux timeout` diff --git a/pages.ta/osx/gtouch.md b/pages.ta/osx/gtouch.md new file mode 100644 index 0000000000..5c86655ee2 --- /dev/null +++ b/pages.ta/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> இக்கட்டளை `-p linux touch` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux touch` diff --git a/pages.ta/osx/gtr.md b/pages.ta/osx/gtr.md new file mode 100644 index 0000000000..f378077df6 --- /dev/null +++ b/pages.ta/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> இக்கட்டளை `-p linux tr` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux tr` diff --git a/pages.ta/osx/gtraceroute.md b/pages.ta/osx/gtraceroute.md new file mode 100644 index 0000000000..083bec9cac --- /dev/null +++ b/pages.ta/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> இக்கட்டளை `-p linux traceroute` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux traceroute` diff --git a/pages.ta/osx/gtrue.md b/pages.ta/osx/gtrue.md new file mode 100644 index 0000000000..5a7c12ab8f --- /dev/null +++ b/pages.ta/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> இக்கட்டளை `-p linux true` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux true` diff --git a/pages.ta/osx/gtruncate.md b/pages.ta/osx/gtruncate.md new file mode 100644 index 0000000000..32c33ebe65 --- /dev/null +++ b/pages.ta/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> இக்கட்டளை `-p linux truncate` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux truncate` diff --git a/pages.ta/osx/gtsort.md b/pages.ta/osx/gtsort.md new file mode 100644 index 0000000000..165a8a90e1 --- /dev/null +++ b/pages.ta/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> இக்கட்டளை `-p linux tsort` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux tsort` diff --git a/pages.ta/osx/gtty.md b/pages.ta/osx/gtty.md new file mode 100644 index 0000000000..47456917c8 --- /dev/null +++ b/pages.ta/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> இக்கட்டளை `-p linux tty` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux tty` diff --git a/pages.ta/osx/guname.md b/pages.ta/osx/guname.md new file mode 100644 index 0000000000..589c06d369 --- /dev/null +++ b/pages.ta/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> இக்கட்டளை `-p linux uname` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux uname` diff --git a/pages.ta/osx/gunexpand.md b/pages.ta/osx/gunexpand.md new file mode 100644 index 0000000000..f15e045a37 --- /dev/null +++ b/pages.ta/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> இக்கட்டளை `-p linux unexpand` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux unexpand` diff --git a/pages.ta/osx/guniq.md b/pages.ta/osx/guniq.md new file mode 100644 index 0000000000..162260b5b6 --- /dev/null +++ b/pages.ta/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> இக்கட்டளை `-p linux uniq` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux uniq` diff --git a/pages.ta/osx/gunits.md b/pages.ta/osx/gunits.md new file mode 100644 index 0000000000..d467e5d1dd --- /dev/null +++ b/pages.ta/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> இக்கட்டளை `-p linux units` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux units` diff --git a/pages.ta/osx/gunlink.md b/pages.ta/osx/gunlink.md new file mode 100644 index 0000000000..6a8a91b10d --- /dev/null +++ b/pages.ta/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> இக்கட்டளை `-p linux unlink` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux unlink` diff --git a/pages.ta/osx/gupdatedb.md b/pages.ta/osx/gupdatedb.md new file mode 100644 index 0000000000..927aaa22ea --- /dev/null +++ b/pages.ta/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> இக்கட்டளை `-p linux updatedb` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux updatedb` diff --git a/pages.ta/osx/guptime.md b/pages.ta/osx/guptime.md new file mode 100644 index 0000000000..2e65d1cbc9 --- /dev/null +++ b/pages.ta/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> இக்கட்டளை `-p linux uptime` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux uptime` diff --git a/pages.ta/osx/gusers.md b/pages.ta/osx/gusers.md new file mode 100644 index 0000000000..4e348eea5c --- /dev/null +++ b/pages.ta/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> இக்கட்டளை `-p linux users` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux users` diff --git a/pages.ta/osx/gvdir.md b/pages.ta/osx/gvdir.md new file mode 100644 index 0000000000..2a5c4aa8ab --- /dev/null +++ b/pages.ta/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> இக்கட்டளை `-p linux vdir` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux vdir` diff --git a/pages.ta/osx/gwc.md b/pages.ta/osx/gwc.md new file mode 100644 index 0000000000..ac021cf40c --- /dev/null +++ b/pages.ta/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> இக்கட்டளை `-p linux wc` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux wc` diff --git a/pages.ta/osx/gwhich.md b/pages.ta/osx/gwhich.md new file mode 100644 index 0000000000..b0f49a97e9 --- /dev/null +++ b/pages.ta/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> இக்கட்டளை `-p linux which` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux which` diff --git a/pages.ta/osx/gwho.md b/pages.ta/osx/gwho.md new file mode 100644 index 0000000000..01305fc068 --- /dev/null +++ b/pages.ta/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> இக்கட்டளை `-p linux who` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux who` diff --git a/pages.ta/osx/gwhoami.md b/pages.ta/osx/gwhoami.md new file mode 100644 index 0000000000..3899d1e0aa --- /dev/null +++ b/pages.ta/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> இக்கட்டளை `-p linux whoami` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux whoami` diff --git a/pages.ta/osx/gwhois.md b/pages.ta/osx/gwhois.md new file mode 100644 index 0000000000..d03a000699 --- /dev/null +++ b/pages.ta/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> இக்கட்டளை `-p linux whois` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux whois` diff --git a/pages.ta/osx/gxargs.md b/pages.ta/osx/gxargs.md new file mode 100644 index 0000000000..34ad98bbeb --- /dev/null +++ b/pages.ta/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> இக்கட்டளை `-p linux xargs` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux xargs` diff --git a/pages.ta/osx/gyes.md b/pages.ta/osx/gyes.md new file mode 100644 index 0000000000..ddae4d771e --- /dev/null +++ b/pages.ta/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> இக்கட்டளை `-p linux yes` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr -p linux yes` diff --git a/pages.ta/osx/launchd.md b/pages.ta/osx/launchd.md new file mode 100644 index 0000000000..46041bf1ff --- /dev/null +++ b/pages.ta/osx/launchd.md @@ -0,0 +1,13 @@ +# launchd + +> இது கணினி மற்றும் பயனர்களுக்கான செயல்முறைகளை நிர்வகிக்கிறது. +> கைமுறையாகத் `launchd` நீங்கள் அழைக்க முடியாது, அதனுடன் தொடர்பு கொள்ள `launchctl` ஐப் பயன்படுத்தவும். +> மேலும் விவரத்திற்கு: . + +- init ஐ இயக்கவும்: + +`/sbin/launchd` + +- `launchctl` ஐப் பயன்படுத்தி `launchd` உடன் தொடர்புகொள்வதற்கான ஆவணங்களைப் காண்க: + +`tldr launchctl` diff --git a/pages.ta/windows/assoc.md b/pages.ta/windows/assoc.md index f5c0e8fc7c..57b4b68dd0 100644 --- a/pages.ta/windows/assoc.md +++ b/pages.ta/windows/assoc.md @@ -14,3 +14,7 @@ - குறிப்பிட்ட நீட்டிப்புக்கு தொடர்புடைய கோப்பு வகையை அமைக்கவும்: `assoc .{{txt}}={{txtfile}}` + +- ஒரு நேரத்தில் ஒரு திரையின் `assoc` வெளியீட்டைப் பார்க்கவும்: + +`assoc | {{more}}` diff --git a/pages.ta/windows/choco-apikey.md b/pages.ta/windows/choco-apikey.md index 3812d5403c..96217a6fc6 100644 --- a/pages.ta/windows/choco-apikey.md +++ b/pages.ta/windows/choco-apikey.md @@ -1,7 +1,7 @@ # choco-apikey > சாக்லேட்டி மூலங்களுக்கான API விசைகளை நிர்வகிக்கவும். -> மேலும் விவரத்திற்கு: . +> மேலும் விவரத்திற்கு: . - ஆதாரங்களின் பட்டியலையும் அவற்றின் API விசைகளையும் காட்டவும்: diff --git a/pages.ta/windows/choco-list.md b/pages.ta/windows/choco-list.md index 05441078c2..fd87217b9b 100644 --- a/pages.ta/windows/choco-list.md +++ b/pages.ta/windows/choco-list.md @@ -1,7 +1,7 @@ # choco list > சாக்லேட்டியுடன் ஒன்று அல்லது அதற்கு மேற்பட்ட தொகுப்புகளை நிறுவவும். -> மேலும் விவரத்திற்கு: . +> மேலும் விவரத்திற்கு: . - கிடைக்கக்கூடிய அனைத்து தொகுப்புகளையும் காண்பி: diff --git a/pages.ta/windows/choco-outdated.md b/pages.ta/windows/choco-outdated.md index de5d7c3ad5..4847b792eb 100644 --- a/pages.ta/windows/choco-outdated.md +++ b/pages.ta/windows/choco-outdated.md @@ -1,7 +1,7 @@ # choco outdated > சாக்லேட்டியுடன் காலாவதியான தொகுப்புகளைச் சரிபார்க்கவும். -> மேலும் விவரத்திற்கு: . +> மேலும் விவரத்திற்கு: . - காலாவதியான தொகுப்புகளின் பட்டியலை அட்டவணை வடிவத்தில் காண்பி: diff --git a/pages.ta/windows/iwr.md b/pages.ta/windows/iwr.md new file mode 100644 index 0000000000..8423c7d940 --- /dev/null +++ b/pages.ta/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> இக்கட்டளை `invoke-webrequest` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr invoke-webrequest` diff --git a/pages.ta/windows/pwsh-where.md b/pages.ta/windows/pwsh-where.md new file mode 100644 index 0000000000..c15d32490c --- /dev/null +++ b/pages.ta/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> இக்கட்டளை `Where-Object` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr Where-Object` diff --git a/pages.ta/windows/rd.md b/pages.ta/windows/rd.md new file mode 100644 index 0000000000..5530814a9e --- /dev/null +++ b/pages.ta/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> இக்கட்டளை `rmdir` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr rmdir` diff --git a/pages.ta/windows/sls.md b/pages.ta/windows/sls.md new file mode 100644 index 0000000000..d7b1e160d8 --- /dev/null +++ b/pages.ta/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> இக்கட்டளை `where-object` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr where-object` diff --git a/pages.ta/windows/wget.md b/pages.ta/windows/wget.md new file mode 100644 index 0000000000..8d41fbb326 --- /dev/null +++ b/pages.ta/windows/wget.md @@ -0,0 +1,19 @@ +# wget + +> PowerShell இல், அசல் `wget` நிரல் () சரியாக நிறுவப்படாதபோது இந்தக் கட்டளை `Invoke-WebRequest` என்பதன் மாற்றுப் பெயராக இருக்கலாம். + +- அதன் பதிப்பு எண்ணை அச்சிட்டு `wget` சரியாக நிறுவப்பட்டுள்ளதா என்பதைச் சரிபார்க்கவும். இந்த கட்டளை பிழையாக மதிப்பிடப்பட்டால், PowerShell இந்த கட்டளையை `Invoke-WebRequest` உடன் மாற்றியிருக்கலாம்: + +`curl --version` + +- அசல் `wget` கட்டளைக்கான ஆவணங்களைக் காண்க: + +`tldr wget -p common` + +- `tldr` கட்டளை வரி கிளையண்டின் பழைய பதிப்புகளில் அசல் `wget` கட்டளைக்கான ஆவணங்களைக் காண்க: + +`tldr wget -o common` + +- PowerShell இன் 'Invoke-WebRequest' கட்டளைக்கான ஆவணங்களைக் காண்க: + +`tldr invoke-webrequest` diff --git a/pages.ta/windows/winget.md b/pages.ta/windows/winget.md new file mode 100644 index 0000000000..234e16415c --- /dev/null +++ b/pages.ta/windows/winget.md @@ -0,0 +1,36 @@ +# winget + +> விண்டோஸ் தொகுப்பு மேலாளர் CLI. +> மேலும் விவரத்திற்கு: . + +- ஒரு தொகுப்பை நிறுவவும்: + +`winget install {{தொகுப்பு}}` + +- தொகுப்பை அகற்று (குறிப்பு: `uninstall` என்பதற்குப் பதிலாக `remove` என்பதும் பயன்படுத்தப்படலாம்): + +`winget uninstall {{தொகுப்பு}}` + +- ஒரு தொகுப்பு பற்றிய தகவலை காட்டு: + +`winget show {{தொகுப்பு}}` + +- ஒரு தொகுப்பை தேடுங்கள்: + +`winget search {{தொகுப்பு}}` + +- அனைத்து தொகுப்புகளையும் சமீபத்திய பதிப்புகளுக்கு மேம்படுத்தவும்: + +`winget upgrade --all` + +- `winget` மூலம் நிர்வகிக்கக்கூடிய நிறுவப்பட்ட அனைத்து தொகுப்புகளையும் பட்டியலிடுங்கள்: + +`winget list --source winget` + +- ஒரு கோப்பிலிருந்து தொகுப்புகளை இறக்குமதி செய்யவும் அல்லது நிறுவப்பட்ட தொகுப்புகளை ஒரு கோப்பிற்கு ஏற்றுமதி செய்யவும்: + +`winget {{import|export}} {{--import-file|--output}} {{பாதை/டு/கோப்பு}}` + +- winget-pkgs களஞ்சியத்தில் PR ஐச் சமர்ப்பிக்கும் முன் மேனிஃபெஸ்ட்டைச் சரிபார்க்கவும்: + +`winget validate {{பாதை/டு/மேனிஃபெஸ்ட்}}` diff --git a/pages.ta/windows/wsl-open.md b/pages.ta/windows/wsl-open.md new file mode 100644 index 0000000000..451eb4fe54 --- /dev/null +++ b/pages.ta/windows/wsl-open.md @@ -0,0 +1,24 @@ +# wsl-open + +> பயனரின் இயல்புநிலை விண்டோஸ் GUI பயன்பாட்டில் லினக்ஸ்க்கான விண்டோஸ் துணை அமைப்பிலிருந்து ஒரு கோப்பு அல்லது URL ஐத் திறக்கவும். +> மேலும் விவரத்திற்கு: . + +- விண்டோஸ் எக்ஸ்ப்ளோரரில் தற்போதைய கோப்பகத்தைத் திறக்கவும்: + +`wsl-open {{.}}` + +- விண்டோஸில் பயனரின் இயல்புநிலை இணைய உலாவியில் URL ஐத் திறக்கவும்: + +`wsl-open {{https://example.com}}` + +- விண்டோஸில் பயனரின் இயல்புநிலை பயன்பாட்டில் ஒரு குறிப்பிட்ட கோப்பைத் திறக்கவும்: + +`wsl-open {{பாதை\டு\கோப்பு}}` + +- ஷெல்லின் இணைய உலாவியாக `wsl-open` ஐ அமைக்கவும் (`wsl-open` உடன் இணைப்புகளைத் திறக்கவும்): + +`wsl-open -w` + +- உதவியைக் காட்டு: + +`wsl-open -h` diff --git a/pages.ta/windows/wsl.md b/pages.ta/windows/wsl.md new file mode 100644 index 0000000000..d97e0b0b83 --- /dev/null +++ b/pages.ta/windows/wsl.md @@ -0,0 +1,36 @@ +# wsl + +> லினக்ஸிற்கான விண்டோஸ் துணை அமைப்பை கட்டளை வரியிலிருந்து நிர்வகிக்கவும். +> மேலும் விவரத்திற்கு: . + +- லினக்ஸ் ஷெல்லைத் தொடங்கவும் (இயல்புநிலை விநியோகத்தில்): + +`wsl {{ஷெல்_கட்டளை}}` + +- ஷெல்லைப் பயன்படுத்தாமல் லினக்ஸ் கட்டளையை இயக்கவும்: + +`wsl --exec {{கட்டளை}} {{கட்டளை_வாதங்கள்}}` + +- குறிப்பிட்ட விநியோகத்தைக் குறிப்பிடவும்: + +`wsl --distribution {{விநியோகம்}} {{ஷெல்_கட்டளை}}` + +- கிடைக்கக்கூடிய விநியோகங்களின் பட்டியல்: + +`wsl --list` + +- விநியோகத்தை `.tar` கோப்பிற்கு ஏற்றுமதி செய்யவும்: + +`wsl --export {{விநியோகம்}} {{பாதை\டு\விநியோக_கோப்பு.tar}}` + +- `.tar` கோப்பிலிருந்து விநியோகத்தை இறக்குமதி செய்: + +`wsl --import {{விநியோகம்}} {{பாதை\டு\நிறுவல்_இடம்}} {{பாதை/டு/விநியோக_கோப்பு.tar}}` + +- குறிப்பிட்ட விநியோகத்திற்கு பயன்படுத்தப்படும் `wsl` பதிப்பை மாற்றவும்: + +`wsl --set-version {{விநியோகம்}} {{பதிப்பு}}` + +- லினக்ஸிற்கான விண்டோஸ் துணை அமைப்பை மூடவும்: + +`wsl --shutdown` diff --git a/pages.th/common/bundler.md b/pages.th/common/bundler.md new file mode 100644 index 0000000000..727baae100 --- /dev/null +++ b/pages.th/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `bundle` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr bundle` diff --git a/pages.th/common/calc.md b/pages.th/common/calc.md index 8448ee4b13..03d90a6a06 100644 --- a/pages.th/common/calc.md +++ b/pages.th/common/calc.md @@ -1,7 +1,7 @@ # calc > เครื่องคิดเลขแบบโต้ตอบในเทอร์มินัล -> ข้อมูลเพิ่มเติม: . +> ข้อมูลเพิ่มเติม: - คำนวณในแบบโต้ตอบ: diff --git a/pages.th/common/clamav.md b/pages.th/common/clamav.md index a7ed041eac..7696a63707 100644 --- a/pages.th/common/clamav.md +++ b/pages.th/common/clamav.md @@ -2,7 +2,7 @@ > โปรแกรมต้านไวรัสแบบเปิดเผยซอร์สโค้ด > ClamAV ไม่ใช่คำสั่ง แต่เป็นกลุ่มของคำสั่ง -> ข้อมูลเพิ่มเติม: . +> ข้อมูลเพิ่มเติม: - แสดงหน้า tldr สำหรับการแสกนไฟล์ด้วยโปรแกรมพื้นหลัง `clamd`: diff --git a/pages.th/common/clamdscan.md b/pages.th/common/clamdscan.md index b0f61a0961..530045d412 100644 --- a/pages.th/common/clamdscan.md +++ b/pages.th/common/clamdscan.md @@ -1,7 +1,7 @@ # clamdscan -> โปรแกรมแสกนหาไวรัสบนคอมมานด์ไลน์ โดยใช้โปรแกรมพื้นหลัง ClamAV. -> ข้อมูลเพิ่มเติม: . +> โปรแกรมแสกนหาไวรัสบนคอมมานด์ไลน์ โดยใช้โปรแกรมพื้นหลัง ClamAV +> ข้อมูลเพิ่มเติม: - แสกนข้อบกพร่องของไฟล์หรือไฟล์ในไดเรคทอรี: diff --git a/pages.th/common/clamscan.md b/pages.th/common/clamscan.md index afe01b9b9b..e111910e45 100644 --- a/pages.th/common/clamscan.md +++ b/pages.th/common/clamscan.md @@ -1,7 +1,7 @@ # clamscan > โปรแกรมตรวจหาไวรัสบนคอมมานด์ไลน์ -> ข้อมูลเพิ่มเติม: . +> ข้อมูลเพิ่มเติม: - แสกนไฟล์หาช่องโหว่ทางความปลอดภัย: diff --git a/pages.th/common/clang-cpp.md b/pages.th/common/clang-cpp.md index 0bd0fdf129..c3221f0b08 100644 --- a/pages.th/common/clang-cpp.md +++ b/pages.th/common/clang-cpp.md @@ -1,6 +1,6 @@ # clang-cpp -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `clang++`. +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `clang++` - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/common/clojure.md b/pages.th/common/clojure.md index 623f6a3715..fb6fa4a43a 100644 --- a/pages.th/common/clojure.md +++ b/pages.th/common/clojure.md @@ -1,6 +1,6 @@ # clojure -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `clj`. +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `clj` - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/common/cola.md b/pages.th/common/cola.md index 5ecdf744d1..8983526d5f 100644 --- a/pages.th/common/cola.md +++ b/pages.th/common/cola.md @@ -1,6 +1,6 @@ # cola -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `git-cola`. +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `git-cola` - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/common/cron.md b/pages.th/common/cron.md new file mode 100644 index 0000000000..f97c78789b --- /dev/null +++ b/pages.th/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `crontab` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr crontab` diff --git a/pages.th/common/fossil-ci.md b/pages.th/common/fossil-ci.md new file mode 100644 index 0000000000..e927ec0328 --- /dev/null +++ b/pages.th/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `fossil-commit` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr fossil-commit` diff --git a/pages.th/common/fossil-delete.md b/pages.th/common/fossil-delete.md new file mode 100644 index 0000000000..6040fdc45f --- /dev/null +++ b/pages.th/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `fossil rm` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr fossil rm` diff --git a/pages.th/common/fossil-forget.md b/pages.th/common/fossil-forget.md new file mode 100644 index 0000000000..c29a87b723 --- /dev/null +++ b/pages.th/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `fossil rm` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr fossil rm` diff --git a/pages.th/common/fossil-new.md b/pages.th/common/fossil-new.md new file mode 100644 index 0000000000..629966844a --- /dev/null +++ b/pages.th/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `fossil-init` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr fossil-init` diff --git a/pages.th/common/freshclam.md b/pages.th/common/freshclam.md index 2123d6aae7..fa95dc890a 100644 --- a/pages.th/common/freshclam.md +++ b/pages.th/common/freshclam.md @@ -1,7 +1,7 @@ # freshclam -> อัพเดทฐานข้อมูลไวรัสที่อ้างอิงโดยโปรแกรมต้านไวรัส ClamAV. -> ข้อมูลเพิ่มเติม: . +> อัพเดทฐานข้อมูลไวรัสที่อ้างอิงโดยโปรแกรมต้านไวรัส ClamAV +> ข้อมูลเพิ่มเติม: - อัพเดทฐานข้อมูลไวรัส: diff --git a/pages.th/common/gh-cs.md b/pages.th/common/gh-cs.md new file mode 100644 index 0000000000..6c21f666e6 --- /dev/null +++ b/pages.th/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `gh-codespace` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr gh-codespace` diff --git a/pages.th/common/gnmic-sub.md b/pages.th/common/gnmic-sub.md new file mode 100644 index 0000000000..9238028d6d --- /dev/null +++ b/pages.th/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `gnmic subscribe` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr gnmic subscribe` diff --git a/pages.th/common/google-chrome.md b/pages.th/common/google-chrome.md new file mode 100644 index 0000000000..27fe6aaee3 --- /dev/null +++ b/pages.th/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `chromium` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr chromium` diff --git a/pages.th/common/hx.md b/pages.th/common/hx.md new file mode 100644 index 0000000000..990c9f4133 --- /dev/null +++ b/pages.th/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `helix` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr helix` diff --git a/pages.th/common/kafkacat.md b/pages.th/common/kafkacat.md new file mode 100644 index 0000000000..3590c3e74d --- /dev/null +++ b/pages.th/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `kcat` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr kcat` diff --git a/pages.th/common/kubectx.md b/pages.th/common/kubectx.md index aed3d0b6d3..98451a4529 100644 --- a/pages.th/common/kubectx.md +++ b/pages.th/common/kubectx.md @@ -1,7 +1,7 @@ # kubectx -> คำสั่งอรรถประโยชน์สำหรับสลับบริบทของคำสั่ง `kubectl`. -> ข้อมูลเพิ่มเติม: . +> คำสั่งอรรถประโยชน์สำหรับสลับบริบทของคำสั่ง `kubectl` +> ข้อมูลเพิ่มเติม: - แสดงบริบททั้งหมด: diff --git a/pages.th/common/kubens.md b/pages.th/common/kubens.md index 527a2c60e1..272de55dff 100644 --- a/pages.th/common/kubens.md +++ b/pages.th/common/kubens.md @@ -1,7 +1,7 @@ # kubens -> คำสั่งอรรถประโยชน์สำหรับสลับเนมสเปซของ Kubernetes. -> ข้อมูลเพิ่มเติม: . +> คำสั่งอรรถประโยชน์สำหรับสลับเนมสเปซของ Kubernetes +> ข้อมูลเพิ่มเติม: - แสดงเนมสเปซทั้งหมด: diff --git a/pages.th/common/llvm-ar.md b/pages.th/common/llvm-ar.md index 310beb3c0c..4ed9dce1ae 100644 --- a/pages.th/common/llvm-ar.md +++ b/pages.th/common/llvm-ar.md @@ -1,6 +1,6 @@ # llvm-ar -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `ar`. +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `ar` - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/common/llvm-g++.md b/pages.th/common/llvm-g++.md index 9e3e83dc13..529b810e33 100644 --- a/pages.th/common/llvm-g++.md +++ b/pages.th/common/llvm-g++.md @@ -1,6 +1,6 @@ # llvm-g++ -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `clang++`. +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `clang++` - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/common/llvm-gcc.md b/pages.th/common/llvm-gcc.md index 7615564f50..acf1851f1c 100644 --- a/pages.th/common/llvm-gcc.md +++ b/pages.th/common/llvm-gcc.md @@ -1,6 +1,6 @@ # llvm-gcc -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `clang`. +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `clang` - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/common/llvm-nm.md b/pages.th/common/llvm-nm.md index cccbc519e5..f998831754 100644 --- a/pages.th/common/llvm-nm.md +++ b/pages.th/common/llvm-nm.md @@ -1,6 +1,6 @@ # llvm-nm -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `nm`. +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `nm` - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/common/llvm-objdump.md b/pages.th/common/llvm-objdump.md index 4812990689..a50104f5dd 100644 --- a/pages.th/common/llvm-objdump.md +++ b/pages.th/common/llvm-objdump.md @@ -1,6 +1,6 @@ # llvm-objdump -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `objdump`. +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `objdump` - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/common/llvm-strings.md b/pages.th/common/llvm-strings.md index 97b5ebc541..175410b749 100644 --- a/pages.th/common/llvm-strings.md +++ b/pages.th/common/llvm-strings.md @@ -1,6 +1,6 @@ # llvm-strings -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `strings`. +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `strings` - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/common/ls.md b/pages.th/common/ls.md index cb32e94878..c5afbce6b9 100644 --- a/pages.th/common/ls.md +++ b/pages.th/common/ls.md @@ -1,7 +1,7 @@ # ls > แสดงชื่อ ขนาด หรือข้อมูลเบื้องต้นของแต่ละไฟล์หรือโฟลเดอร์ -> ข้อมูลเพิ่มเติม: . +> ข้อมูลเพิ่มเติม: - แสดงชื่อไฟล์หรือโฟลเดอร์ หนึ่งชื่อต่อบรรทัด: diff --git a/pages.th/common/lzcat.md b/pages.th/common/lzcat.md new file mode 100644 index 0000000000..b46252f4bf --- /dev/null +++ b/pages.th/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `xz` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr xz` diff --git a/pages.th/common/lzma.md b/pages.th/common/lzma.md new file mode 100644 index 0000000000..d6179c5eed --- /dev/null +++ b/pages.th/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `xz` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr xz` diff --git a/pages.th/common/mscore.md b/pages.th/common/mscore.md index 748e9d83be..e0be3598a4 100644 --- a/pages.th/common/mscore.md +++ b/pages.th/common/mscore.md @@ -1,7 +1,7 @@ # mscore -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `musescore`. -> ข้อมูลเพิ่มเติม: . +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `musescore` +> ข้อมูลเพิ่มเติม: - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/common/n.md b/pages.th/common/n.md index e0910295a2..4c23210d54 100644 --- a/pages.th/common/n.md +++ b/pages.th/common/n.md @@ -1,7 +1,7 @@ # n -> เครื่องมือในการจัดการเวอร์ชั่นของ node. -> ข้อมูลเพิ่มเติม: . +> เครื่องมือในการจัดการเวอร์ชั่นของ node +> ข้อมูลเพิ่มเติม: - ติดตั้ง node เวอร์ชั่นที่กำหนด ถ้าหากเวอร์ชั่นที่กำหนดถูกติดตั้งแล้ว เวอร์ชั่นดังกล่าวจะถูกเปิดใช้งาน: diff --git a/pages.th/common/nm-classic.md b/pages.th/common/nm-classic.md new file mode 100644 index 0000000000..f4648f7a0a --- /dev/null +++ b/pages.th/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `nm` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr nm` diff --git a/pages.th/common/ntl.md b/pages.th/common/ntl.md new file mode 100644 index 0000000000..437c47e1a7 --- /dev/null +++ b/pages.th/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `netlify` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr netlify` diff --git a/pages.th/common/pio-init.md b/pages.th/common/pio-init.md index 7bd6d9688d..8ba3ea730b 100644 --- a/pages.th/common/pio-init.md +++ b/pages.th/common/pio-init.md @@ -1,6 +1,6 @@ # pio-init -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `pio project`. +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `pio project` - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/common/piodebuggdb.md b/pages.th/common/piodebuggdb.md index 36b79238ec..ce95fa9bd4 100644 --- a/pages.th/common/piodebuggdb.md +++ b/pages.th/common/piodebuggdb.md @@ -1,6 +1,6 @@ # piodebuggdb -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `pio debug`. +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `pio debug` - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/common/platformio.md b/pages.th/common/platformio.md index 0040d248ee..b8ff6df2ba 100644 --- a/pages.th/common/platformio.md +++ b/pages.th/common/platformio.md @@ -1,7 +1,7 @@ # platformio -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `pio`. -> ข้อมูลเพิ่มเติม: . +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `pio` +> ข้อมูลเพิ่มเติม: - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/common/ptpython3.md b/pages.th/common/ptpython3.md new file mode 100644 index 0000000000..e4052a3c35 --- /dev/null +++ b/pages.th/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `ptpython` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr ptpython` diff --git a/pages.th/common/pwd.md b/pages.th/common/pwd.md index 4832028798..b4a7e7c56a 100644 --- a/pages.th/common/pwd.md +++ b/pages.th/common/pwd.md @@ -1,7 +1,7 @@ # pwd > แสดงชื่อของไดเรกทอรีที่ทำงานอยู่ -> ข้อมูลเพิ่มเติม: . +> ข้อมูลเพิ่มเติม: - แสดงชื่อของไดเรกทอรีที่ทำงานอยู่: diff --git a/pages.th/common/python3.md b/pages.th/common/python3.md new file mode 100644 index 0000000000..e8dca54296 --- /dev/null +++ b/pages.th/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `python` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr python` diff --git a/pages.th/common/r2.md b/pages.th/common/r2.md index 5978d6c938..b1d2a26750 100644 --- a/pages.th/common/r2.md +++ b/pages.th/common/r2.md @@ -1,6 +1,6 @@ # r2 -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `radare2`. +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `radare2` - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/common/rcat.md b/pages.th/common/rcat.md new file mode 100644 index 0000000000..753c09ff62 --- /dev/null +++ b/pages.th/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `rc` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr rc` diff --git a/pages.th/common/ripgrep.md b/pages.th/common/ripgrep.md new file mode 100644 index 0000000000..f762e9a46f --- /dev/null +++ b/pages.th/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `rg` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr rg` diff --git a/pages.th/common/tldr.md b/pages.th/common/tldr.md index 5441f22af0..c97d06ad1a 100644 --- a/pages.th/common/tldr.md +++ b/pages.th/common/tldr.md @@ -1,7 +1,7 @@ # tldr > แสดงตัวอย่างแบบง่ายสำหรับเครื่องมือบน command-line จากโปรเจคท์ tldr-pages. -> ข้อมูลเพิ่มเติม: . +> ข้อมูลเพิ่มเติม: - แสดงตัวอย่างการใช้งานคำสั่งที่ใช้บ่อย (บอกใบ้นิดนึง: นี่คือเหตุผลที่คุณสนใจใช้บริการของเราใช่ไหมล่ะ!): diff --git a/pages.th/common/tldrl.md b/pages.th/common/tldrl.md index 522ae6a710..c7e5d6475d 100644 --- a/pages.th/common/tldrl.md +++ b/pages.th/common/tldrl.md @@ -1,7 +1,7 @@ # tldrl -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `tldr-lint`. -> ข้อมูลเพิ่มเติม: . +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `tldr-lint` +> ข้อมูลเพิ่มเติม: - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/common/tlmgr-arch.md b/pages.th/common/tlmgr-arch.md index 31e23d4753..290919e46d 100644 --- a/pages.th/common/tlmgr-arch.md +++ b/pages.th/common/tlmgr-arch.md @@ -1,7 +1,7 @@ # tlmgr-arch -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `tlmgr platform`. -> ข้อมูลเพิ่มเติม: . +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `tlmgr platform` +> ข้อมูลเพิ่มเติม: - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/common/todoman.md b/pages.th/common/todoman.md new file mode 100644 index 0000000000..71654f869d --- /dev/null +++ b/pages.th/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `todo` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr todo` diff --git a/pages.th/common/transmission.md b/pages.th/common/transmission.md new file mode 100644 index 0000000000..5e78340966 --- /dev/null +++ b/pages.th/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `transmission-daemon` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr transmission-daemon` diff --git a/pages.th/common/unlzma.md b/pages.th/common/unlzma.md new file mode 100644 index 0000000000..b66515fd72 --- /dev/null +++ b/pages.th/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `xz` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr xz` diff --git a/pages.th/common/unxz.md b/pages.th/common/unxz.md new file mode 100644 index 0000000000..3f1e39e4b8 --- /dev/null +++ b/pages.th/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `xz` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr xz` diff --git a/pages.th/common/vi.md b/pages.th/common/vi.md index 31e2cf8089..0ba40bb4d6 100644 --- a/pages.th/common/vi.md +++ b/pages.th/common/vi.md @@ -1,6 +1,6 @@ # vi -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `vim`. +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `vim` - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/common/xzcat.md b/pages.th/common/xzcat.md new file mode 100644 index 0000000000..c020c7f2fb --- /dev/null +++ b/pages.th/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `xz` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr xz` diff --git a/pages.th/linux/ac.md b/pages.th/linux/ac.md index 8cf54bf2ba..477b3a4f37 100644 --- a/pages.th/linux/ac.md +++ b/pages.th/linux/ac.md @@ -1,7 +1,7 @@ # ac > แสดงสถิติที่ผู้ใช้งานได้เชื่อมต่อเข้ามาในระบบเป็นเวลานานเท่าไหร่ -> ข้อมูลเพิ่มเติม: . +> ข้อมูลเพิ่มเติม: - แสดงสถิติเวลาที่ผู้ใช้ปัจจุบันได้เชื่อมต่อเข้ามาในระบบในหลักชั่วโมง: diff --git a/pages.th/linux/alternatives.md b/pages.th/linux/alternatives.md new file mode 100644 index 0000000000..355b092727 --- /dev/null +++ b/pages.th/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `update-alternatives` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr update-alternatives` diff --git a/pages.th/linux/apt-add-repository.md b/pages.th/linux/apt-add-repository.md index 9d00475c2f..e8bcef02be 100644 --- a/pages.th/linux/apt-add-repository.md +++ b/pages.th/linux/apt-add-repository.md @@ -1,7 +1,7 @@ # apt-add-repository > ควบคุมและจัดการที่อยู่ของคลัง apt. -> ข้อมูลเพิ่มเติม: . +> ข้อมูลเพิ่มเติม: - เพิ่มที่หมายของคลัง apt: diff --git a/pages.th/linux/batcat.md b/pages.th/linux/batcat.md new file mode 100644 index 0000000000..57bb30a9c7 --- /dev/null +++ b/pages.th/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `bat` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr bat` diff --git a/pages.th/linux/bspwm.md b/pages.th/linux/bspwm.md new file mode 100644 index 0000000000..0e87ac1dc5 --- /dev/null +++ b/pages.th/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `bspc` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr bspc` diff --git a/pages.th/linux/cc.md b/pages.th/linux/cc.md new file mode 100644 index 0000000000..781bf99b3a --- /dev/null +++ b/pages.th/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `gcc` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr gcc` diff --git a/pages.th/linux/cgroups.md b/pages.th/linux/cgroups.md new file mode 100644 index 0000000000..5d05e74604 --- /dev/null +++ b/pages.th/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `cgclassify` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr cgclassify` diff --git a/pages.th/linux/ip-route-list.md b/pages.th/linux/ip-route-list.md new file mode 100644 index 0000000000..3760659399 --- /dev/null +++ b/pages.th/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `ip-route-show` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr ip-route-show` diff --git a/pages.th/linux/megadl.md b/pages.th/linux/megadl.md new file mode 100644 index 0000000000..de3befc973 --- /dev/null +++ b/pages.th/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `megatools-dl` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr megatools-dl` diff --git a/pages.th/linux/ncal.md b/pages.th/linux/ncal.md index c740d46d22..e3ebbc5942 100644 --- a/pages.th/linux/ncal.md +++ b/pages.th/linux/ncal.md @@ -1,7 +1,7 @@ # ncal -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `cal`. -> ข้อมูลเพิ่มเติม: . +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `cal` +> ข้อมูลเพิ่มเติม: - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/linux/pwd.md b/pages.th/linux/pwd.md index d2ac40c065..4727e62964 100644 --- a/pages.th/linux/pwd.md +++ b/pages.th/linux/pwd.md @@ -1,7 +1,7 @@ # pwd > แสดงชื่อของไดเรกทอรีที่ทำงานอยู่ -> ข้อมูลเพิ่มเติม: . +> ข้อมูลเพิ่มเติม: - แสดงชื่อของไดเรกทอรีที่ทำงานอยู่: diff --git a/pages.th/linux/ubuntu-bug.md b/pages.th/linux/ubuntu-bug.md new file mode 100644 index 0000000000..a823a5a2ed --- /dev/null +++ b/pages.th/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `apport-bug` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr apport-bug` diff --git a/pages.th/osx/aa.md b/pages.th/osx/aa.md new file mode 100644 index 0000000000..a5f2c9e95a --- /dev/null +++ b/pages.th/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `yaa` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr yaa` diff --git a/pages.th/osx/g[.md b/pages.th/osx/g[.md new file mode 100644 index 0000000000..dfc71d1f47 --- /dev/null +++ b/pages.th/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux [` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux [` diff --git a/pages.th/osx/gawk.md b/pages.th/osx/gawk.md new file mode 100644 index 0000000000..f626f85291 --- /dev/null +++ b/pages.th/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux awk` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux awk` diff --git a/pages.th/osx/gb2sum.md b/pages.th/osx/gb2sum.md new file mode 100644 index 0000000000..23504ddc01 --- /dev/null +++ b/pages.th/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux b2sum` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux b2sum` diff --git a/pages.th/osx/gbase32.md b/pages.th/osx/gbase32.md new file mode 100644 index 0000000000..95237fdd2e --- /dev/null +++ b/pages.th/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux base32` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux base32` diff --git a/pages.th/osx/gbase64.md b/pages.th/osx/gbase64.md new file mode 100644 index 0000000000..fa5a6cbdc2 --- /dev/null +++ b/pages.th/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux base64` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux base64` diff --git a/pages.th/osx/gbasename.md b/pages.th/osx/gbasename.md new file mode 100644 index 0000000000..1bc7ba4e30 --- /dev/null +++ b/pages.th/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux basename` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux basename` diff --git a/pages.th/osx/gbasenc.md b/pages.th/osx/gbasenc.md new file mode 100644 index 0000000000..efe778623b --- /dev/null +++ b/pages.th/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux basenc` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux basenc` diff --git a/pages.th/osx/gcat.md b/pages.th/osx/gcat.md new file mode 100644 index 0000000000..5ff9a5e215 --- /dev/null +++ b/pages.th/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux cat` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux cat` diff --git a/pages.th/osx/gchcon.md b/pages.th/osx/gchcon.md new file mode 100644 index 0000000000..8c2790041d --- /dev/null +++ b/pages.th/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux chcon` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux chcon` diff --git a/pages.th/osx/gchgrp.md b/pages.th/osx/gchgrp.md new file mode 100644 index 0000000000..0a6df080f0 --- /dev/null +++ b/pages.th/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux chgrp` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux chgrp` diff --git a/pages.th/osx/gchmod.md b/pages.th/osx/gchmod.md new file mode 100644 index 0000000000..558b89f94d --- /dev/null +++ b/pages.th/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux chmod` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux chmod` diff --git a/pages.th/osx/gchown.md b/pages.th/osx/gchown.md new file mode 100644 index 0000000000..a4737f63ce --- /dev/null +++ b/pages.th/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux chown` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux chown` diff --git a/pages.th/osx/gchroot.md b/pages.th/osx/gchroot.md new file mode 100644 index 0000000000..e657a12eec --- /dev/null +++ b/pages.th/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux chroot` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux chroot` diff --git a/pages.th/osx/gcksum.md b/pages.th/osx/gcksum.md new file mode 100644 index 0000000000..3bd1c18eff --- /dev/null +++ b/pages.th/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux cksum` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux cksum` diff --git a/pages.th/osx/gcomm.md b/pages.th/osx/gcomm.md new file mode 100644 index 0000000000..3d35e2d079 --- /dev/null +++ b/pages.th/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux comm` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux comm` diff --git a/pages.th/osx/gcp.md b/pages.th/osx/gcp.md new file mode 100644 index 0000000000..51aa392f1b --- /dev/null +++ b/pages.th/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux cp` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux cp` diff --git a/pages.th/osx/gcsplit.md b/pages.th/osx/gcsplit.md new file mode 100644 index 0000000000..959f30160a --- /dev/null +++ b/pages.th/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux csplit` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux csplit` diff --git a/pages.th/osx/gcut.md b/pages.th/osx/gcut.md new file mode 100644 index 0000000000..ddafaf01df --- /dev/null +++ b/pages.th/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux cut` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux cut` diff --git a/pages.th/osx/gdate.md b/pages.th/osx/gdate.md new file mode 100644 index 0000000000..b1107fc688 --- /dev/null +++ b/pages.th/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux date` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux date` diff --git a/pages.th/osx/gdd.md b/pages.th/osx/gdd.md new file mode 100644 index 0000000000..d5ddc2c42d --- /dev/null +++ b/pages.th/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux dd` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux dd` diff --git a/pages.th/osx/gdf.md b/pages.th/osx/gdf.md new file mode 100644 index 0000000000..1613ebb8bd --- /dev/null +++ b/pages.th/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux df` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux df` diff --git a/pages.th/osx/gdir.md b/pages.th/osx/gdir.md new file mode 100644 index 0000000000..c54d3c59e8 --- /dev/null +++ b/pages.th/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux dir` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux dir` diff --git a/pages.th/osx/gdircolors.md b/pages.th/osx/gdircolors.md new file mode 100644 index 0000000000..cacb204671 --- /dev/null +++ b/pages.th/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux dircolors` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux dircolors` diff --git a/pages.th/osx/gdirname.md b/pages.th/osx/gdirname.md new file mode 100644 index 0000000000..a0ba1e2f67 --- /dev/null +++ b/pages.th/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux dirname` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux dirname` diff --git a/pages.th/osx/gdnsdomainname.md b/pages.th/osx/gdnsdomainname.md new file mode 100644 index 0000000000..68d3ecf658 --- /dev/null +++ b/pages.th/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux dnsdomainname` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux dnsdomainname` diff --git a/pages.th/osx/gecho.md b/pages.th/osx/gecho.md new file mode 100644 index 0000000000..84499c72e6 --- /dev/null +++ b/pages.th/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux echo` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux echo` diff --git a/pages.th/osx/ged.md b/pages.th/osx/ged.md new file mode 100644 index 0000000000..a7c0c40897 --- /dev/null +++ b/pages.th/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux ed` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux ed` diff --git a/pages.th/osx/gegrep.md b/pages.th/osx/gegrep.md new file mode 100644 index 0000000000..ab09b4e322 --- /dev/null +++ b/pages.th/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux egrep` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux egrep` diff --git a/pages.th/osx/genv.md b/pages.th/osx/genv.md new file mode 100644 index 0000000000..c96af9e8d6 --- /dev/null +++ b/pages.th/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux env` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux env` diff --git a/pages.th/osx/gexpand.md b/pages.th/osx/gexpand.md new file mode 100644 index 0000000000..6db41cad6d --- /dev/null +++ b/pages.th/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux expand` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux expand` diff --git a/pages.th/osx/gexpr.md b/pages.th/osx/gexpr.md new file mode 100644 index 0000000000..54367a5ac6 --- /dev/null +++ b/pages.th/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux expr` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux expr` diff --git a/pages.th/osx/gfactor.md b/pages.th/osx/gfactor.md new file mode 100644 index 0000000000..a50e20c9e5 --- /dev/null +++ b/pages.th/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux factor` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux factor` diff --git a/pages.th/osx/gfalse.md b/pages.th/osx/gfalse.md new file mode 100644 index 0000000000..63b47e2e8f --- /dev/null +++ b/pages.th/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux false` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux false` diff --git a/pages.th/osx/gfgrep.md b/pages.th/osx/gfgrep.md new file mode 100644 index 0000000000..885e8cdf58 --- /dev/null +++ b/pages.th/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux fgrep` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux fgrep` diff --git a/pages.th/osx/gfind.md b/pages.th/osx/gfind.md new file mode 100644 index 0000000000..069f37dd4c --- /dev/null +++ b/pages.th/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux find` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux find` diff --git a/pages.th/osx/gfmt.md b/pages.th/osx/gfmt.md new file mode 100644 index 0000000000..6f3784ce33 --- /dev/null +++ b/pages.th/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux fmt` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux fmt` diff --git a/pages.th/osx/gfold.md b/pages.th/osx/gfold.md new file mode 100644 index 0000000000..77d22cd968 --- /dev/null +++ b/pages.th/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux fold` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux fold` diff --git a/pages.th/osx/gftp.md b/pages.th/osx/gftp.md new file mode 100644 index 0000000000..9454531b0a --- /dev/null +++ b/pages.th/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux ftp` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux ftp` diff --git a/pages.th/osx/ggrep.md b/pages.th/osx/ggrep.md new file mode 100644 index 0000000000..82a2ae3b1d --- /dev/null +++ b/pages.th/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux grep` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux grep` diff --git a/pages.th/osx/ggroups.md b/pages.th/osx/ggroups.md new file mode 100644 index 0000000000..3d09fa5489 --- /dev/null +++ b/pages.th/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux groups` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux groups` diff --git a/pages.th/osx/ghead.md b/pages.th/osx/ghead.md new file mode 100644 index 0000000000..5a82473a76 --- /dev/null +++ b/pages.th/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux head` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux head` diff --git a/pages.th/osx/ghostid.md b/pages.th/osx/ghostid.md new file mode 100644 index 0000000000..7a04faca7a --- /dev/null +++ b/pages.th/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux hostid` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux hostid` diff --git a/pages.th/osx/ghostname.md b/pages.th/osx/ghostname.md new file mode 100644 index 0000000000..d5f5242f35 --- /dev/null +++ b/pages.th/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux hostname` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux hostname` diff --git a/pages.th/osx/gid.md b/pages.th/osx/gid.md new file mode 100644 index 0000000000..71714f2205 --- /dev/null +++ b/pages.th/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux id` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux id` diff --git a/pages.th/osx/gifconfig.md b/pages.th/osx/gifconfig.md new file mode 100644 index 0000000000..c2eb1b3237 --- /dev/null +++ b/pages.th/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux ifconfig` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux ifconfig` diff --git a/pages.th/osx/gindent.md b/pages.th/osx/gindent.md new file mode 100644 index 0000000000..21e50766f0 --- /dev/null +++ b/pages.th/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux indent` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux indent` diff --git a/pages.th/osx/ginstall.md b/pages.th/osx/ginstall.md new file mode 100644 index 0000000000..88bdc1a974 --- /dev/null +++ b/pages.th/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux install` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux install` diff --git a/pages.th/osx/gjoin.md b/pages.th/osx/gjoin.md new file mode 100644 index 0000000000..6701fa7dfc --- /dev/null +++ b/pages.th/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux join` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux join` diff --git a/pages.th/osx/gkill.md b/pages.th/osx/gkill.md new file mode 100644 index 0000000000..69735f32be --- /dev/null +++ b/pages.th/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux kill` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux kill` diff --git a/pages.th/osx/glibtool.md b/pages.th/osx/glibtool.md new file mode 100644 index 0000000000..2e1dd7c0d6 --- /dev/null +++ b/pages.th/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux libtool` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux libtool` diff --git a/pages.th/osx/glibtoolize.md b/pages.th/osx/glibtoolize.md new file mode 100644 index 0000000000..348a2f905f --- /dev/null +++ b/pages.th/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux libtoolize` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux libtoolize` diff --git a/pages.th/osx/glink.md b/pages.th/osx/glink.md new file mode 100644 index 0000000000..6c68a702da --- /dev/null +++ b/pages.th/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux link` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux link` diff --git a/pages.th/osx/gln.md b/pages.th/osx/gln.md new file mode 100644 index 0000000000..e6ccf28b28 --- /dev/null +++ b/pages.th/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux ln` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux ln` diff --git a/pages.th/osx/glocate.md b/pages.th/osx/glocate.md new file mode 100644 index 0000000000..bcaabac130 --- /dev/null +++ b/pages.th/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux locate` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux locate` diff --git a/pages.th/osx/glogger.md b/pages.th/osx/glogger.md new file mode 100644 index 0000000000..4c0294c45e --- /dev/null +++ b/pages.th/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux logger` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux logger` diff --git a/pages.th/osx/glogname.md b/pages.th/osx/glogname.md new file mode 100644 index 0000000000..0e64cdb226 --- /dev/null +++ b/pages.th/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux logname` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux logname` diff --git a/pages.th/osx/gls.md b/pages.th/osx/gls.md new file mode 100644 index 0000000000..92b7ddbcf8 --- /dev/null +++ b/pages.th/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux ls` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux ls` diff --git a/pages.th/osx/gmake.md b/pages.th/osx/gmake.md new file mode 100644 index 0000000000..b06649e51b --- /dev/null +++ b/pages.th/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux make` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux make` diff --git a/pages.th/osx/gmd5sum.md b/pages.th/osx/gmd5sum.md new file mode 100644 index 0000000000..3f09a777f9 --- /dev/null +++ b/pages.th/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux md5sum` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux md5sum` diff --git a/pages.th/osx/gmkdir.md b/pages.th/osx/gmkdir.md new file mode 100644 index 0000000000..1a2ed578d5 --- /dev/null +++ b/pages.th/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux mkdir` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux mkdir` diff --git a/pages.th/osx/gmkfifo.md b/pages.th/osx/gmkfifo.md new file mode 100644 index 0000000000..751c13f4cb --- /dev/null +++ b/pages.th/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux mkfifo` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux mkfifo` diff --git a/pages.th/osx/gmknod.md b/pages.th/osx/gmknod.md new file mode 100644 index 0000000000..c935c76cf9 --- /dev/null +++ b/pages.th/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux mknod` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux mknod` diff --git a/pages.th/osx/gmktemp.md b/pages.th/osx/gmktemp.md new file mode 100644 index 0000000000..e55751e3bb --- /dev/null +++ b/pages.th/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux mktemp` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux mktemp` diff --git a/pages.th/osx/gmv.md b/pages.th/osx/gmv.md new file mode 100644 index 0000000000..402ced7a8f --- /dev/null +++ b/pages.th/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux mv` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux mv` diff --git a/pages.th/osx/gnice.md b/pages.th/osx/gnice.md new file mode 100644 index 0000000000..2f2eb58888 --- /dev/null +++ b/pages.th/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux nice` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux nice` diff --git a/pages.th/osx/gnl.md b/pages.th/osx/gnl.md new file mode 100644 index 0000000000..1f86e1f453 --- /dev/null +++ b/pages.th/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux nl` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux nl` diff --git a/pages.th/osx/gnohup.md b/pages.th/osx/gnohup.md new file mode 100644 index 0000000000..fe222f7e29 --- /dev/null +++ b/pages.th/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux nohup` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux nohup` diff --git a/pages.th/osx/gnproc.md b/pages.th/osx/gnproc.md new file mode 100644 index 0000000000..82cfc4f76e --- /dev/null +++ b/pages.th/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux nproc` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux nproc` diff --git a/pages.th/osx/gnumfmt.md b/pages.th/osx/gnumfmt.md new file mode 100644 index 0000000000..e5a7ab4142 --- /dev/null +++ b/pages.th/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux numfmt` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux numfmt` diff --git a/pages.th/osx/god.md b/pages.th/osx/god.md new file mode 100644 index 0000000000..525aea1a1e --- /dev/null +++ b/pages.th/osx/god.md @@ -0,0 +1,7 @@ +# god + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux od` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux od` diff --git a/pages.th/osx/gpaste.md b/pages.th/osx/gpaste.md new file mode 100644 index 0000000000..13462fbec6 --- /dev/null +++ b/pages.th/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux paste` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux paste` diff --git a/pages.th/osx/gpathchk.md b/pages.th/osx/gpathchk.md new file mode 100644 index 0000000000..8016fe989e --- /dev/null +++ b/pages.th/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux pathchk` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux pathchk` diff --git a/pages.th/osx/gping.md b/pages.th/osx/gping.md new file mode 100644 index 0000000000..1ccf5a13af --- /dev/null +++ b/pages.th/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux ping` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux ping` diff --git a/pages.th/osx/gping6.md b/pages.th/osx/gping6.md new file mode 100644 index 0000000000..cd5a1d2b3d --- /dev/null +++ b/pages.th/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux ping6` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux ping6` diff --git a/pages.th/osx/gpinky.md b/pages.th/osx/gpinky.md new file mode 100644 index 0000000000..ef285ccfe3 --- /dev/null +++ b/pages.th/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux pinky` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux pinky` diff --git a/pages.th/osx/gpr.md b/pages.th/osx/gpr.md new file mode 100644 index 0000000000..00b8824ec7 --- /dev/null +++ b/pages.th/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux pr` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux pr` diff --git a/pages.th/osx/gprintenv.md b/pages.th/osx/gprintenv.md new file mode 100644 index 0000000000..8ca1a8c4d9 --- /dev/null +++ b/pages.th/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux printenv` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux printenv` diff --git a/pages.th/osx/gprintf.md b/pages.th/osx/gprintf.md new file mode 100644 index 0000000000..7a19e10d71 --- /dev/null +++ b/pages.th/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux printf` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux printf` diff --git a/pages.th/osx/gptx.md b/pages.th/osx/gptx.md new file mode 100644 index 0000000000..c65728a024 --- /dev/null +++ b/pages.th/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux ptx` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux ptx` diff --git a/pages.th/osx/gpwd.md b/pages.th/osx/gpwd.md new file mode 100644 index 0000000000..4db69af9dc --- /dev/null +++ b/pages.th/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux pwd` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux pwd` diff --git a/pages.th/osx/grcp.md b/pages.th/osx/grcp.md new file mode 100644 index 0000000000..f80f943e68 --- /dev/null +++ b/pages.th/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux rcp` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux rcp` diff --git a/pages.th/osx/greadlink.md b/pages.th/osx/greadlink.md new file mode 100644 index 0000000000..9cc261fcba --- /dev/null +++ b/pages.th/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux readlink` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux readlink` diff --git a/pages.th/osx/grealpath.md b/pages.th/osx/grealpath.md new file mode 100644 index 0000000000..50a7f921dc --- /dev/null +++ b/pages.th/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux realpath` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux realpath` diff --git a/pages.th/osx/grexec.md b/pages.th/osx/grexec.md new file mode 100644 index 0000000000..f8c88f1c4d --- /dev/null +++ b/pages.th/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux rexec` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux rexec` diff --git a/pages.th/osx/grlogin.md b/pages.th/osx/grlogin.md new file mode 100644 index 0000000000..dbe73554ec --- /dev/null +++ b/pages.th/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux rlogin` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux rlogin` diff --git a/pages.th/osx/grm.md b/pages.th/osx/grm.md new file mode 100644 index 0000000000..4877ec3632 --- /dev/null +++ b/pages.th/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux rm` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux rm` diff --git a/pages.th/osx/grmdir.md b/pages.th/osx/grmdir.md new file mode 100644 index 0000000000..9b442d0b67 --- /dev/null +++ b/pages.th/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux rmdir` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux rmdir` diff --git a/pages.th/osx/grsh.md b/pages.th/osx/grsh.md new file mode 100644 index 0000000000..3117aebca8 --- /dev/null +++ b/pages.th/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux rsh` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux rsh` diff --git a/pages.th/osx/gruncon.md b/pages.th/osx/gruncon.md new file mode 100644 index 0000000000..d3e02b541c --- /dev/null +++ b/pages.th/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux runcon` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux runcon` diff --git a/pages.th/osx/gsed.md b/pages.th/osx/gsed.md new file mode 100644 index 0000000000..cc9a6576d6 --- /dev/null +++ b/pages.th/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux sed` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux sed` diff --git a/pages.th/osx/gseq.md b/pages.th/osx/gseq.md new file mode 100644 index 0000000000..3120a9a068 --- /dev/null +++ b/pages.th/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux seq` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux seq` diff --git a/pages.th/osx/gsha1sum.md b/pages.th/osx/gsha1sum.md new file mode 100644 index 0000000000..b895b0e711 --- /dev/null +++ b/pages.th/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux sha1sum` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux sha1sum` diff --git a/pages.th/osx/gsha224sum.md b/pages.th/osx/gsha224sum.md new file mode 100644 index 0000000000..6a231cf7a3 --- /dev/null +++ b/pages.th/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux sha224sum` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux sha224sum` diff --git a/pages.th/osx/gsha256sum.md b/pages.th/osx/gsha256sum.md new file mode 100644 index 0000000000..e49d9d4293 --- /dev/null +++ b/pages.th/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux sha256sum` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux sha256sum` diff --git a/pages.th/osx/gsha384sum.md b/pages.th/osx/gsha384sum.md new file mode 100644 index 0000000000..c8f5285f47 --- /dev/null +++ b/pages.th/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux sha384sum` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux sha384sum` diff --git a/pages.th/osx/gsha512sum.md b/pages.th/osx/gsha512sum.md new file mode 100644 index 0000000000..7c6a9d7a8c --- /dev/null +++ b/pages.th/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux sha512sum` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux sha512sum` diff --git a/pages.th/osx/gshred.md b/pages.th/osx/gshred.md new file mode 100644 index 0000000000..5b54a344dd --- /dev/null +++ b/pages.th/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux shred` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux shred` diff --git a/pages.th/osx/gshuf.md b/pages.th/osx/gshuf.md new file mode 100644 index 0000000000..c37ba72921 --- /dev/null +++ b/pages.th/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux shuf` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux shuf` diff --git a/pages.th/osx/gsleep.md b/pages.th/osx/gsleep.md new file mode 100644 index 0000000000..0bff744a00 --- /dev/null +++ b/pages.th/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux sleep` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux sleep` diff --git a/pages.th/osx/gsort.md b/pages.th/osx/gsort.md new file mode 100644 index 0000000000..551c8ac5ff --- /dev/null +++ b/pages.th/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux sort` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux sort` diff --git a/pages.th/osx/gsplit.md b/pages.th/osx/gsplit.md new file mode 100644 index 0000000000..44014f46cd --- /dev/null +++ b/pages.th/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux split` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux split` diff --git a/pages.th/osx/gstat.md b/pages.th/osx/gstat.md new file mode 100644 index 0000000000..c498fd89e5 --- /dev/null +++ b/pages.th/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux stat` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux stat` diff --git a/pages.th/osx/gstdbuf.md b/pages.th/osx/gstdbuf.md new file mode 100644 index 0000000000..fc898cacb2 --- /dev/null +++ b/pages.th/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux stdbuf` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux stdbuf` diff --git a/pages.th/osx/gstty.md b/pages.th/osx/gstty.md new file mode 100644 index 0000000000..2bc8f02b20 --- /dev/null +++ b/pages.th/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux stty` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux stty` diff --git a/pages.th/osx/gsum.md b/pages.th/osx/gsum.md new file mode 100644 index 0000000000..a470650654 --- /dev/null +++ b/pages.th/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux sum` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux sum` diff --git a/pages.th/osx/gsync.md b/pages.th/osx/gsync.md new file mode 100644 index 0000000000..b0997e745e --- /dev/null +++ b/pages.th/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux sync` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux sync` diff --git a/pages.th/osx/gtac.md b/pages.th/osx/gtac.md new file mode 100644 index 0000000000..3d34fa6baa --- /dev/null +++ b/pages.th/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux tac` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux tac` diff --git a/pages.th/osx/gtail.md b/pages.th/osx/gtail.md new file mode 100644 index 0000000000..1c7ec1751a --- /dev/null +++ b/pages.th/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux tail` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux tail` diff --git a/pages.th/osx/gtalk.md b/pages.th/osx/gtalk.md new file mode 100644 index 0000000000..6966689855 --- /dev/null +++ b/pages.th/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux talk` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux talk` diff --git a/pages.th/osx/gtar.md b/pages.th/osx/gtar.md new file mode 100644 index 0000000000..d9176f358b --- /dev/null +++ b/pages.th/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux tar` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux tar` diff --git a/pages.th/osx/gtee.md b/pages.th/osx/gtee.md new file mode 100644 index 0000000000..47833e01c6 --- /dev/null +++ b/pages.th/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux tee` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux tee` diff --git a/pages.th/osx/gtelnet.md b/pages.th/osx/gtelnet.md new file mode 100644 index 0000000000..e785e15c9c --- /dev/null +++ b/pages.th/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux telnet` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux telnet` diff --git a/pages.th/osx/gtest.md b/pages.th/osx/gtest.md new file mode 100644 index 0000000000..ef1bf66832 --- /dev/null +++ b/pages.th/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux test` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux test` diff --git a/pages.th/osx/gtftp.md b/pages.th/osx/gtftp.md new file mode 100644 index 0000000000..e6d79999c0 --- /dev/null +++ b/pages.th/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux tftp` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux tftp` diff --git a/pages.th/osx/gtime.md b/pages.th/osx/gtime.md new file mode 100644 index 0000000000..a7b009776c --- /dev/null +++ b/pages.th/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux time` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux time` diff --git a/pages.th/osx/gtimeout.md b/pages.th/osx/gtimeout.md new file mode 100644 index 0000000000..202f51272b --- /dev/null +++ b/pages.th/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux timeout` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux timeout` diff --git a/pages.th/osx/gtouch.md b/pages.th/osx/gtouch.md new file mode 100644 index 0000000000..872011d567 --- /dev/null +++ b/pages.th/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux touch` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux touch` diff --git a/pages.th/osx/gtr.md b/pages.th/osx/gtr.md new file mode 100644 index 0000000000..ba4ff8bdd7 --- /dev/null +++ b/pages.th/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux tr` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux tr` diff --git a/pages.th/osx/gtraceroute.md b/pages.th/osx/gtraceroute.md new file mode 100644 index 0000000000..3603c16781 --- /dev/null +++ b/pages.th/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux traceroute` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux traceroute` diff --git a/pages.th/osx/gtrue.md b/pages.th/osx/gtrue.md new file mode 100644 index 0000000000..c9ab6c7d2e --- /dev/null +++ b/pages.th/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux true` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux true` diff --git a/pages.th/osx/gtruncate.md b/pages.th/osx/gtruncate.md new file mode 100644 index 0000000000..7ebdb0401a --- /dev/null +++ b/pages.th/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux truncate` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux truncate` diff --git a/pages.th/osx/gtsort.md b/pages.th/osx/gtsort.md new file mode 100644 index 0000000000..d5cf08cd9d --- /dev/null +++ b/pages.th/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux tsort` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux tsort` diff --git a/pages.th/osx/gtty.md b/pages.th/osx/gtty.md new file mode 100644 index 0000000000..565311acfa --- /dev/null +++ b/pages.th/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux tty` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux tty` diff --git a/pages.th/osx/guname.md b/pages.th/osx/guname.md new file mode 100644 index 0000000000..4e4ce1df31 --- /dev/null +++ b/pages.th/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux uname` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux uname` diff --git a/pages.th/osx/gunexpand.md b/pages.th/osx/gunexpand.md new file mode 100644 index 0000000000..83027424ef --- /dev/null +++ b/pages.th/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux unexpand` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux unexpand` diff --git a/pages.th/osx/guniq.md b/pages.th/osx/guniq.md new file mode 100644 index 0000000000..cb492c98ca --- /dev/null +++ b/pages.th/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux uniq` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux uniq` diff --git a/pages.th/osx/gunits.md b/pages.th/osx/gunits.md new file mode 100644 index 0000000000..02aeca884f --- /dev/null +++ b/pages.th/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux units` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux units` diff --git a/pages.th/osx/gunlink.md b/pages.th/osx/gunlink.md new file mode 100644 index 0000000000..d312e5da3d --- /dev/null +++ b/pages.th/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux unlink` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux unlink` diff --git a/pages.th/osx/gupdatedb.md b/pages.th/osx/gupdatedb.md new file mode 100644 index 0000000000..1520d9fbf4 --- /dev/null +++ b/pages.th/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux updatedb` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux updatedb` diff --git a/pages.th/osx/guptime.md b/pages.th/osx/guptime.md new file mode 100644 index 0000000000..1f821d2170 --- /dev/null +++ b/pages.th/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux uptime` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux uptime` diff --git a/pages.th/osx/gusers.md b/pages.th/osx/gusers.md new file mode 100644 index 0000000000..d186b5deed --- /dev/null +++ b/pages.th/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux users` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux users` diff --git a/pages.th/osx/gvdir.md b/pages.th/osx/gvdir.md new file mode 100644 index 0000000000..5fa410d827 --- /dev/null +++ b/pages.th/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux vdir` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux vdir` diff --git a/pages.th/osx/gwc.md b/pages.th/osx/gwc.md new file mode 100644 index 0000000000..117b89161e --- /dev/null +++ b/pages.th/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux wc` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux wc` diff --git a/pages.th/osx/gwhich.md b/pages.th/osx/gwhich.md new file mode 100644 index 0000000000..e73e72b53f --- /dev/null +++ b/pages.th/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux which` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux which` diff --git a/pages.th/osx/gwho.md b/pages.th/osx/gwho.md new file mode 100644 index 0000000000..bb7df773aa --- /dev/null +++ b/pages.th/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux who` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux who` diff --git a/pages.th/osx/gwhoami.md b/pages.th/osx/gwhoami.md new file mode 100644 index 0000000000..eb6f278bf8 --- /dev/null +++ b/pages.th/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux whoami` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux whoami` diff --git a/pages.th/osx/gwhois.md b/pages.th/osx/gwhois.md new file mode 100644 index 0000000000..d670499936 --- /dev/null +++ b/pages.th/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux whois` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux whois` diff --git a/pages.th/osx/gxargs.md b/pages.th/osx/gxargs.md new file mode 100644 index 0000000000..e7fc1f9805 --- /dev/null +++ b/pages.th/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux xargs` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux xargs` diff --git a/pages.th/osx/gyes.md b/pages.th/osx/gyes.md new file mode 100644 index 0000000000..4fca53d92c --- /dev/null +++ b/pages.th/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `-p linux yes` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr -p linux yes` diff --git a/pages.th/osx/launchd.md b/pages.th/osx/launchd.md new file mode 100644 index 0000000000..b4518da3b0 --- /dev/null +++ b/pages.th/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `launchctl` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr launchctl` diff --git a/pages.th/osx/pbcopy.md b/pages.th/osx/pbcopy.md new file mode 100644 index 0000000000..660e1d580e --- /dev/null +++ b/pages.th/osx/pbcopy.md @@ -0,0 +1,13 @@ +# pbcopy + +> คัดลอกข้อมูลจากอินพุตมาตรฐาน (`stdin`) ไปยังคลิปบอร์ด +> เทียบได้กับการกดปุ่ม Cmd + C บนแป้นพิมพ์ +> ข้อมูลเพิ่มเติม: + +- คัดลอกเนื้อหาในไฟล์ที่กำหนดไปยังคลิปบอร์ด: + +`pbcopy < {{ทาง/ไป/ไฟล์}}` + +- คัดลอกผลลัพธ์ของคำสั่งไปยังคลิปบอร์ด: + +`find . -type t -name "*.png" | pbcopy` diff --git a/pages.th/osx/pbpaste.md b/pages.th/osx/pbpaste.md new file mode 100644 index 0000000000..3233bc0096 --- /dev/null +++ b/pages.th/osx/pbpaste.md @@ -0,0 +1,13 @@ +# pbpaste + +> ส่งเนื้อหาของคลิปบอร์ดไปยังผลผลิตมาตรฐาน (`stdout`) +> เทียบได้กับการกดปุ่ม Cmd + V บนแป้นพิมพ์ +> ข้อมูลเพิ่มเติม: + +- เขียนเนื้อหาของคลิปบอร์ดไปยังไฟล์: + +`pbpaste > {{ทาง/ไป/ไฟล์}}` + +- นำเนื้อหาในคลิปบอร์ดไปใช้เป็นอินพุตของคำสั่ง: + +`pbpaste | grep foo` diff --git a/pages.th/windows/cd.md b/pages.th/windows/cd.md new file mode 100644 index 0000000000..5539e24a00 --- /dev/null +++ b/pages.th/windows/cd.md @@ -0,0 +1,24 @@ +# cd + +> แสดงชื่อหรือเปลี่ยนไดเร็กทอรีการทำงานปัจจุบัน +> ข้อมูลเพิ่มเติม: + +- แสดงชื่อของไดเร็กทอรีปัจจุบัน: + +`cd` + +- ไปที่รูทของไดรฟ์ปัจจุบัน: + +`cd \` + +- ไปที่ไดเร็กทอรีในไดรฟ์เดียวกัน: + +`cd {{ทาง\ไป\สารบบ}}` + +- ไปที่พาเรนต์ของไดเร็กทอรีปัจจุบัน: + +`cd ..` + +- ไปที่ไดเร็กทอรีที่อยู่ต่างไดรฟ์: + +`cd {{ทาง\ไป\สารบบ}} /d` diff --git a/pages.th/windows/chkdsk.md b/pages.th/windows/chkdsk.md index 7dc6a3a392..216106101c 100644 --- a/pages.th/windows/chkdsk.md +++ b/pages.th/windows/chkdsk.md @@ -1,7 +1,7 @@ # chkdsk > ความสมบูรณ์ของระบบไฟล์และข้อมูลเมตาของระบบไฟล์บนดิสก์โวลุ่มและแก้ไขข้อผิดพลาดของระบบ -> ข้อมูลเพิ่มเติม: . +> ข้อมูลเพิ่มเติม: - ระบุตัวอักษรไดรฟ์ (ตามด้วยเครื่องหมาย colon), mount point, หรือชื่อของไดรฟ์: diff --git a/pages.th/windows/chrome.md b/pages.th/windows/chrome.md index 6730ce1283..76153f1a19 100644 --- a/pages.th/windows/chrome.md +++ b/pages.th/windows/chrome.md @@ -1,7 +1,7 @@ # chrome -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `chromium`. -> ข้อมูลเพิ่มเติม: . +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `chromium` +> ข้อมูลเพิ่มเติม: - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/windows/cinst.md b/pages.th/windows/cinst.md index c3e57de79e..212bf2d5ee 100644 --- a/pages.th/windows/cinst.md +++ b/pages.th/windows/cinst.md @@ -1,7 +1,7 @@ # cinst -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `choco install`. -> ข้อมูลเพิ่มเติม: . +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `choco install` +> ข้อมูลเพิ่มเติม: - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/windows/clist.md b/pages.th/windows/clist.md index 2b5b8c2ae0..c6c5bbbbd0 100644 --- a/pages.th/windows/clist.md +++ b/pages.th/windows/clist.md @@ -1,7 +1,7 @@ # clist -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `choco list`. -> ข้อมูลเพิ่มเติม: . +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `choco list` +> ข้อมูลเพิ่มเติม: - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/windows/cls.md b/pages.th/windows/cls.md index e7555ff666..f69ac8cfc4 100644 --- a/pages.th/windows/cls.md +++ b/pages.th/windows/cls.md @@ -1,7 +1,7 @@ # cls > ล้างตัวอักษรทั้งหมดที่อยู่บนหน้าต่าง -> ข้อมูลเพิ่มเติม: https://learn.microsoft.com/windows-server/administration/windows-commands/cls +> ข้อมูลเพิ่มเติม: - ล้างตัวอักษรทั้งหมดบนหน้าจอ: diff --git a/pages.th/windows/cmd.md b/pages.th/windows/cmd.md new file mode 100644 index 0000000000..a6e24f8cac --- /dev/null +++ b/pages.th/windows/cmd.md @@ -0,0 +1,36 @@ +# cmd + +> ตัวแปลคำสั่งของ Windows +> ข้อมูลเพิ่มเติม: + +- เริ่มเซสชันเชลล์แบบโต้ตอบ: + +`cmd` + +- รันคำสั่งที่ระบุแล้วปิด ([c]ommand): + +`cmd /c "{{echo Hello world}}"` + +- ดำเนินการสคริปต์เฉพาะ: + +`cmd {{เส้นทาง\ไปยัง\สคริปต์}}` + +- ดำเนินการคำสั่งเฉพาะแล้วป้อนเชลล์แบบโต้ตอบ: + +`cmd /k "{{echo Hello world}}"` + +- เริ่มเซสชันเชลล์แบบโต้ตอบโดยที่ 'echo' ถูกปิดใช้งานในเอาต์พุตคำสั่ง: + +`cmd /q` + +- เริ่มเซสชันเชลล์แบบโต้ตอบโดยเปิดใช้งานหรือปิดใช้งานการขยาย [v]ariable ที่ล่าช้า: + +`cmd /v:{{on|off}}` + +- เริ่มเซสชันเชลล์แบบโต้ตอบด้วยคำสั่ง [e]xtensions ที่เปิดใช้งานหรือปิดใช้งาน: + +`cmd /e:{{on|off}}` + +- บังคับให้เอาต์พุตใช้การเข้ารหัส [u]nicode: + +`cmd /u` diff --git a/pages.th/windows/cpush.md b/pages.th/windows/cpush.md new file mode 100644 index 0000000000..a3aaa02a99 --- /dev/null +++ b/pages.th/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `choco-push` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr choco-push` diff --git a/pages.th/windows/cuninst.md b/pages.th/windows/cuninst.md index ec54d7e7d6..19a8a573db 100644 --- a/pages.th/windows/cuninst.md +++ b/pages.th/windows/cuninst.md @@ -1,7 +1,7 @@ # cuninst -> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `choco uninstall`. -> ข้อมูลเพิ่มเติม: . +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `choco uninstall` +> ข้อมูลเพิ่มเติม: - เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: diff --git a/pages.th/windows/curl.md b/pages.th/windows/curl.md new file mode 100644 index 0000000000..c29453880d --- /dev/null +++ b/pages.th/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `curl -p common` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr curl -p common` diff --git a/pages.th/windows/dir.md b/pages.th/windows/dir.md new file mode 100644 index 0000000000..fceb42b20c --- /dev/null +++ b/pages.th/windows/dir.md @@ -0,0 +1,20 @@ +# dir + +> แสดงรายการเนื้อหาไดเรกทอรี +> ข้อมูลเพิ่มเติม: + +- แสดงเนื้อหาของไดเร็กทอรีปัจจุบัน: + +`dir` + +- แสดงเนื้อหาของไดเร็กทอรีปัจจุบัน: + +`dir {{ทาง\ไป\สารบบ}}` + +- แสดงเนื้อหาของไดเร็กทอรีปัจจุบัน, รวมถึงรายการที่ซ่อนอยู่: + +`dir /A` + +- แสดงเนื้อหาของไดเร็กทอรีที่กำหนด, รวมถึงรายการที่ซ่อนอยู่: + +`dir {{ทาง\ไป\สารบบ}} /A` diff --git a/pages.th/windows/explorer.md b/pages.th/windows/explorer.md index 628261e5d7..274c9f1496 100644 --- a/pages.th/windows/explorer.md +++ b/pages.th/windows/explorer.md @@ -1,7 +1,7 @@ # explorer > โปรแกรมจัดการไฟล์ของวินโดวส์. -> ข้อมูลเพิ่มเติม: . +> ข้อมูลเพิ่มเติม: - เปิดโปรแกรมจัดการไฟล์: diff --git a/pages.th/windows/iwr.md b/pages.th/windows/iwr.md new file mode 100644 index 0000000000..af57be0c06 --- /dev/null +++ b/pages.th/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `invoke-webrequest` + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr invoke-webrequest` diff --git a/pages.th/windows/pwsh-where.md b/pages.th/windows/pwsh-where.md new file mode 100644 index 0000000000..22d93720df --- /dev/null +++ b/pages.th/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `Where-Object` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr Where-Object` diff --git a/pages.th/windows/rd.md b/pages.th/windows/rd.md new file mode 100644 index 0000000000..8bf7025b7d --- /dev/null +++ b/pages.th/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `rmdir` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr rmdir` diff --git a/pages.th/windows/sls.md b/pages.th/windows/sls.md new file mode 100644 index 0000000000..780d190912 --- /dev/null +++ b/pages.th/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `where-object` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr where-object` diff --git a/pages.th/windows/wget.md b/pages.th/windows/wget.md new file mode 100644 index 0000000000..587833d038 --- /dev/null +++ b/pages.th/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `wget -p common` +> ข้อมูลเพิ่มเติม: + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr wget -p common` diff --git a/pages.tr/android/bugreport.md b/pages.tr/android/bugreport.md index 2169ea6261..790f608430 100644 --- a/pages.tr/android/bugreport.md +++ b/pages.tr/android/bugreport.md @@ -2,7 +2,7 @@ > Bir Android bug raporu göster. > Bu komut yalnızca `adb shell` ile kullanılabilir. -> Daha fazla bilgi için: . +> Daha fazla bilgi için: . - Bir Android cihazı için eksizsiz bug raporu göster: diff --git a/pages.tr/android/bugreportz.md b/pages.tr/android/bugreportz.md index ca5a8cdcb2..fa1dee4f7b 100644 --- a/pages.tr/android/bugreportz.md +++ b/pages.tr/android/bugreportz.md @@ -2,7 +2,7 @@ > Ziplenmiş bir Android bug raporu oluştur. > Bu komut yalnızca `adb shell` ile kullanılabilir. -> Daha fazla bilgi için: . +> Daha fazla bilgi için: . - Bir Android cihazı için ziplenmiş şekilde eksizsiz bir bug raporu oluşturGenerate a complete zipped bug report of an Android device: diff --git a/pages.tr/android/cmd.md b/pages.tr/android/cmd.md index 5aeb164ec2..0c68051225 100644 --- a/pages.tr/android/cmd.md +++ b/pages.tr/android/cmd.md @@ -1,7 +1,7 @@ # cmd > Android servis yöneticisi. -> Daha fazla bilgi için: . +> Daha fazla bilgi için: . - Tüm çalışan servisleri sırala: diff --git a/pages.tr/common/7z.md b/pages.tr/common/7z.md index ada094a6dc..2ca65aeaae 100644 --- a/pages.tr/common/7z.md +++ b/pages.tr/common/7z.md @@ -1,7 +1,7 @@ # 7z > Yüksek sıkıştırma oranına sahip dosya sıkıştırıcısı. -> Daha fazla bilgi için: . +> Daha fazla bilgi için: . - Dosya veya dizin arşivle: @@ -19,7 +19,7 @@ `7z x {{sikistirilmis_dosya.7z}} -o{{yoldan/çıktıya}}` -- Arşivi stdout'a aktar: +- Arşivi `stdout`'a aktar: `7z x {{sikistirilmis_dosya.7z}} -so` diff --git a/pages.tr/common/anki.md b/pages.tr/common/anki.md new file mode 100644 index 0000000000..571755e2a6 --- /dev/null +++ b/pages.tr/common/anki.md @@ -0,0 +1,20 @@ +# anki + +> Güçlü ve akıllı bir aralıklı tekrar programı. +> Daha fazla bilgi için: . + +- Çalıştır: + +`anki` + +- Belirtilen bir profil ismi ile çalıştır: + +`anki -p {{profil_ismi}}` + +- Belirtilen bir dil ile çalıştır: + +`anki -l {{dil}}` + +- Belirtilen bir dizinden (konumdan) calıştır: + +`anki -b {{dizin/yolu}}` diff --git a/pages.tr/common/arp.md b/pages.tr/common/arp.md index 976551cc4b..1c894c00be 100644 --- a/pages.tr/common/arp.md +++ b/pages.tr/common/arp.md @@ -7,10 +7,6 @@ `arp -a` -- Tüm önbelleği temizle: - -`sudo arp -a -d` - - Belirli bir girdiyi sil: `arp -d {{adres}}` diff --git a/pages.tr/common/awk.md b/pages.tr/common/awk.md new file mode 100644 index 0000000000..d40fb76364 --- /dev/null +++ b/pages.tr/common/awk.md @@ -0,0 +1,36 @@ +# awk + +> Dosyalar üzerinde çalışmak için çok yönlü bir programlama dili. +> Daha fazla bilgi için: . + +- Boşlukla ayrılmış bir dosyada beşinci sütunu (alan olarak da bilinir) yazdır: + +`awk '{print $5}' {{dosya/yolu/dosya}}` + +- Boşlukla ayrılmış bir dosyada "foo" içeren satırların ikinci sütununu yazdır: + +`awk '/{{foo}}/ {print $2}' {{dosya/yolu/dosya}}` + +- Alan ayırıcı olarak (boşluk yerine) virgül kullanarak dosyadaki her satırın son sütununu yazdır: + +`awk -F ',' '{print $NF}' {{dosya/yolu/dosya}}` + +- Bir dosyanın ilk sütunundaki değerleri topla ve toplamı yazdır: + +`awk '{s+=$1} END {print s}' {{dosya/yolu/dosya}}` + +- İlk satırdan başlayarak her üçüncü satırı yazdır: + +`awk 'NR%3==1' {{dosya/yolu/dosya}}` + +- Koşullara göre farklı değerler yazdır: + +`awk '{if ($1 == "foo") print "Tam eşleşme foo"; else if ($1 ~ "bar") print "Kısmi eşleşme çubuğu"; else print "Baz"}' {{dosya/yolu/dosya}}` + +- 10. sütun değerinin belirtilen değere eşit olduğu tüm satırları yazdır: + +`awk '($10 == value)'` + +- 10. sütun değeri min ile max arasında olan tüm satırları yazdır: + +`awk '($10 >= min_value && $10 <= max_value)'` diff --git a/pages.tr/common/base32.md b/pages.tr/common/base32.md index 803b5b17d5..228e5b9624 100644 --- a/pages.tr/common/base32.md +++ b/pages.tr/common/base32.md @@ -11,10 +11,10 @@ `base32 --decode {{dosyaismi}}` -- stdin'den şifrele: +- `stdin`'den şifrele: `{{herhangibirkomut}} | base32` -- stdin'den deşifre et: +- `stdin`'den deşifre et: `{{herhangibirkomut}} | base32 --decode` diff --git a/pages.tr/common/base64.md b/pages.tr/common/base64.md index 9f3353b733..d107f0b1cd 100644 --- a/pages.tr/common/base64.md +++ b/pages.tr/common/base64.md @@ -11,10 +11,10 @@ `base64 --decode {{dosyaismi}}` -- stdin'den şifrele: +- `stdin`'den şifrele: `{{herhangibirkomut}} | base64` -- stdin'den deşifre et: +- `stdin`'den deşifre et: `{{herhangibirkomut}} | base64 --decode` diff --git a/pages.tr/common/bundler.md b/pages.tr/common/bundler.md new file mode 100644 index 0000000000..a6520695c8 --- /dev/null +++ b/pages.tr/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> Bu komut `bundle` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr bundle` diff --git a/pages.tr/common/clamav.md b/pages.tr/common/clamav.md new file mode 100644 index 0000000000..80647a7e83 --- /dev/null +++ b/pages.tr/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> Bu komut `clamdscan` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr clamdscan` diff --git a/pages.tr/common/clang-cpp.md b/pages.tr/common/clang-cpp.md new file mode 100644 index 0000000000..fef6fe1ae4 --- /dev/null +++ b/pages.tr/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> Bu komut `clang++` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr clang++` diff --git a/pages.tr/common/clojure.md b/pages.tr/common/clojure.md new file mode 100644 index 0000000000..dbbaf4cf0e --- /dev/null +++ b/pages.tr/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> Bu komut `clj` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr clj` diff --git a/pages.tr/common/cola.md b/pages.tr/common/cola.md new file mode 100644 index 0000000000..61fb483a82 --- /dev/null +++ b/pages.tr/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> Bu komut `git-cola` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr git-cola` diff --git a/pages.tr/common/cp.md b/pages.tr/common/cp.md new file mode 100644 index 0000000000..8f6c5bf958 --- /dev/null +++ b/pages.tr/common/cp.md @@ -0,0 +1,32 @@ +# cp + +> Dosyaları ve dizinleri kopyalayın. +> Daha fazla bilgi için: . + +- Bir dosyayı başka bir konuma kopyalayın: + +`cp {{dizin/yol/kaynak_dosya.ext}} {{dizin/yol/hedef_dosya.ext}}` + +- Dosya adını koruyarak bir dosyayı başka bir dizine kopyalayın: + +`cp {{dizin/yol/kaynak_dosya.ext}} {{dizin/yol/hedeflenen_ana_dizin}}` + +- Bir dizinin içeriğini yinelemeli olarak başka bir konuma kopyalayın (hedef varsa, dizin bunun içine kopyalanır): + +`cp -R {{dizin/yol/kaynak_dizin}} {{dizin/yol/hedef_dizin}}` + +- Bir dizini ayrıntılı modda yinelemeli olarak kopyalayın (dosyaları kopyalandıkça gösterir): + +`cp -vR {{dizin/yol/kaynak_dizin}} {{dizin/yol/hedef_dizin}}` + +- Etkileşimli modda metin dosyalarını başka bir konuma kopyalayın (üzerine yazmadan önce kullanıcıyı uyarır): + +`cp -i {{*.txt}} {{dizin/yol/hedef_dizin}}` + +- Kopyalamadan önce sembolik bağlantıları takip edin: + +`cp -L {{link}} {{dizin/yol/hedef_dizin}}` + +- İlk bağımsız değişkeni hedef dizin olarak kullanın ('xargs ... | cp -t ' için kullanışlıdır): + +`cp -t {{dizin/yol/hedef_dizin}} {{dizin/yol/dosya_veya_dizin1 dizin/yol/dosya_veya_dizin2 ...}}` diff --git a/pages.tr/common/cron.md b/pages.tr/common/cron.md new file mode 100644 index 0000000000..2cbf981c1f --- /dev/null +++ b/pages.tr/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> Bu komut `crontab` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr crontab` diff --git a/pages.tr/common/dig.md b/pages.tr/common/dig.md new file mode 100644 index 0000000000..faf714be6b --- /dev/null +++ b/pages.tr/common/dig.md @@ -0,0 +1,20 @@ +# dig + +> DNS sunucularına sorgulama yapmak için kullanılan bir komuttur. +> Daha fazla bilgi için: . + +- İlgili sunucu ile ilgili IP adresi sorgulaması yapılır: + +`dig +short {{example.com}}` + +- DNS sorgulaması için alternatif server kullanılır: + +`dig @{{1.1.1.1}} {{example.com}}` + +- Tersine DNS sorgulaması yapılır: + +`dig -x {{1.1.1.1}}` + +- Belli başlı DNS sunucuları ile ilgili kayıtları sorgular: + +`dig +short {{example.com}} {{A|MX|TXT|CNAME|NS}}` diff --git a/pages.tr/common/docker-compose.md b/pages.tr/common/docker-compose.md index 6dae121f7e..33b8114bc9 100644 --- a/pages.tr/common/docker-compose.md +++ b/pages.tr/common/docker-compose.md @@ -9,7 +9,7 @@ - Mevcut dizinde bir `docker-compose.yml` dosyası çalıştırarak arkaplandaki tüm konteynerleri çalıştırın ve başlatın: -`docker compose up -d` +`docker compose up --detach` - Tüm konteynerleri çalıştırın ve gerekiyorsa yeniden oluşturun: diff --git a/pages.tr/common/docker-exec.md b/pages.tr/common/docker-exec.md index 575e68895c..929e37285a 100644 --- a/pages.tr/common/docker-exec.md +++ b/pages.tr/common/docker-exec.md @@ -15,7 +15,7 @@ `docker exec --interactive -tty --workdir {{örnek/dizin}} {{konteyner_ismi}} {{komut}}` -- Varolan konteyner üstünde arkaplanda çalışmak üzere bir komut çalıştır ancak stdin'i açık tut: +- Varolan konteyner üstünde arkaplanda çalışmak üzere bir komut çalıştır ancak `stdin`'i açık tut: `docker exec --interactive --detach {{konteyner_ismi}} {{komut}}` diff --git a/pages.tr/common/docker-save.md b/pages.tr/common/docker-save.md index 366c1a5e5e..41cf2c0359 100644 --- a/pages.tr/common/docker-save.md +++ b/pages.tr/common/docker-save.md @@ -3,7 +3,7 @@ > Bir veya daha fazla docker imgesini arşivlemek için dışa aktar. > Daha fazla bilgi için: . -- Bir imgeyi, stdout'u tar arşivine yönlendirerek kaydet: +- Bir imgeyi, `stdout`'u tar arşivine yönlendirerek kaydet: `docker save {{imge}}:{{etiket}} > {örnek/dosya.tar}}` diff --git a/pages.tr/common/docker-secret.md b/pages.tr/common/docker-secret.md index 2135da6a04..6740ff0cc9 100644 --- a/pages.tr/common/docker-secret.md +++ b/pages.tr/common/docker-secret.md @@ -3,7 +3,7 @@ > Docker swarm sırlarını yönet. > Daha fazla bilgi için: . -- stdin'den yeni bir sır yarat: +- `stdin`'den yeni bir sır yarat: `{{komut}} | docker secret create {{sır_ismi}} -` diff --git a/pages.tr/common/docker-start.md b/pages.tr/common/docker-start.md index 2784bc59fb..0fed5b597b 100644 --- a/pages.tr/common/docker-start.md +++ b/pages.tr/common/docker-start.md @@ -11,10 +11,10 @@ `docker start {{konteyner}}` -- Bir konteyneri, ona stdout ile stderr'i ekleyerek ve sinyaller göndererek başlat: +- Bir konteyneri, ona `stdout` ile `stderr`'i ekleyerek ve sinyaller göndererek başlat: `docker start --attach {{konteyner}}` - Bir veya daha fazla boşlukla ayrılarak belirtilmiş konteynerleri başlar: -`docker start {{konteyner(ler)}}` +`docker start {{konteyner1 konteyner2 ...}}` diff --git a/pages.tr/common/fossil-ci.md b/pages.tr/common/fossil-ci.md new file mode 100644 index 0000000000..de9e2097ca --- /dev/null +++ b/pages.tr/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> Bu komut `fossil-commit` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr fossil-commit` diff --git a/pages.tr/common/fossil-delete.md b/pages.tr/common/fossil-delete.md new file mode 100644 index 0000000000..e19b103cf0 --- /dev/null +++ b/pages.tr/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> Bu komut `fossil rm` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr fossil rm` diff --git a/pages.tr/common/fossil-forget.md b/pages.tr/common/fossil-forget.md new file mode 100644 index 0000000000..3bb6d6a70b --- /dev/null +++ b/pages.tr/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> Bu komut `fossil rm` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr fossil rm` diff --git a/pages.tr/common/fossil-new.md b/pages.tr/common/fossil-new.md new file mode 100644 index 0000000000..90db1968b3 --- /dev/null +++ b/pages.tr/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> Bu komut `fossil-init` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr fossil-init` diff --git a/pages.tr/common/fzf.md b/pages.tr/common/fzf.md new file mode 100644 index 0000000000..7745d9c193 --- /dev/null +++ b/pages.tr/common/fzf.md @@ -0,0 +1,29 @@ +# fzf + +> Komut satırı belirsiz bulucu. +> Sk'ya benzer. +> Daha fazla bilgi için: . + +- Belirtilen dizindeki tüm dosyalarda FZF'yi başlat: + +`find {{dosya/yolu/dizin}} -type f | fzf` + +- Çalışan süreçler için FZF'yi başlat: + +`ps aux | fzf` + +- `Shift + Tab` ile birden çok dosya seç ve bir dosyaya yaz: + +`find {{dosya/yolu/dizin}} -type f | fzf --multi > {{dosya/yolu/dosya}}` + +- fzf'yi belirli bir sorgu ile başlat: + +`fzf --query "{{sorgu}}"` + +- Core ile başlayan ve Go, RB veya PY ile biten girişlerde fzf'yi başlat: + +`fzf --query "^core go$ | rb$ | py$"` + +- PYC ile eşleşmeyen ve Travis'e tam olarak eşleşen girişlerde fzf'yi başlat: + +`fzf --query "!pyc 'travis"` diff --git a/pages.tr/common/gh-cs.md b/pages.tr/common/gh-cs.md new file mode 100644 index 0000000000..8b10416dba --- /dev/null +++ b/pages.tr/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> Bu komut `gh-codespace` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr gh-codespace` diff --git a/pages.tr/common/git-annex.md b/pages.tr/common/git-annex.md index 43cf2772f6..f8fe88e1df 100644 --- a/pages.tr/common/git-annex.md +++ b/pages.tr/common/git-annex.md @@ -3,10 +3,6 @@ > Git ile dosyaları, dosyaların içeriğine bakmadan yönet. > Daha fazla bilgi için: . -- Yardım: - -`git annex help` - - Git annex ile bir depo başlat: `git annex init` @@ -26,3 +22,7 @@ - Bir dosya veya dizin al: `git annex get {{örnek/dosya_veya_dizin}}` + +- Yardım görüntüle: + +`git annex help` diff --git a/pages.tr/common/git-check-ignore.md b/pages.tr/common/git-check-ignore.md index 5c6352ce32..1edbca4daa 100644 --- a/pages.tr/common/git-check-ignore.md +++ b/pages.tr/common/git-check-ignore.md @@ -11,7 +11,7 @@ `git check-ignore {{örnek/dosya}} {{örnek/dizin}}` -- Her bir satıra tekabül edecek şekilde stdin'den yolisimleri kullan: +- Her bir satıra tekabül edecek şekilde `stdin`'den yolisimleri kullan: `git check-ignore --stdin < {{örnek/dosya_sırası}}` diff --git a/pages.tr/common/git-cherry-pick.md b/pages.tr/common/git-cherry-pick.md index b27a9ed788..55b85ddf98 100644 --- a/pages.tr/common/git-cherry-pick.md +++ b/pages.tr/common/git-cherry-pick.md @@ -18,4 +18,4 @@ - Bir commit'in değişikliklerini, herhangi bir yeni commit oluşturmadan çalışan dizine ekle: -`git cherry-pick -n {{commit}}` +`git cherry-pick --no-commit {{commit}}` diff --git a/pages.tr/common/git-commit-tree.md b/pages.tr/common/git-commit-tree.md index fb41af4412..0a3b4c71aa 100644 --- a/pages.tr/common/git-commit-tree.md +++ b/pages.tr/common/git-commit-tree.md @@ -8,7 +8,7 @@ `git commit-tree {{ağaç}} -m "{{mesaj}}"` -- Bir dosyadan mesaj okuyan bir commit cismi oluştur (stdin için `-` ekini kullan): +- Bir dosyadan mesaj okuyan bir commit cismi oluştur (`stdin` için `-` ekini kullan): `git commit-tree {{ağaç}} -F {{örnek/dosya}}` diff --git a/pages.tr/common/git-format-patch.md b/pages.tr/common/git-format-patch.md index 66ad76fa74..7ee7b35cab 100644 --- a/pages.tr/common/git-format-patch.md +++ b/pages.tr/common/git-format-patch.md @@ -8,7 +8,7 @@ `git format-patch {{origin}}` -- stdout'daki belirtilen 2 revizyon arasındaki tüm commit'ler için bir `.patch` dosyası oluştur: +- `stdout`'daki belirtilen 2 revizyon arasındaki tüm commit'ler için bir `.patch` dosyası oluştur: `git format-patch {{revizyon_1}}..{{revizyon_2}}` diff --git a/pages.tr/common/git-prune.md b/pages.tr/common/git-prune.md index dc1330c4b4..4e63716838 100644 --- a/pages.tr/common/git-prune.md +++ b/pages.tr/common/git-prune.md @@ -8,7 +8,7 @@ `git prune --dry-run` -- Erişilemeyen nesneleri buda ve stdout'a budanan şeyleri görüntüle: +- Erişilemeyen nesneleri buda ve `stdout`'a budanan şeyleri görüntüle: `git prune --verbose` diff --git a/pages.tr/common/git-reset.md b/pages.tr/common/git-reset.md index 238fe01dda..42d08023ae 100644 --- a/pages.tr/common/git-reset.md +++ b/pages.tr/common/git-reset.md @@ -12,7 +12,7 @@ `git reset {{dosya(ların)/konumu}}` -- Bir dosyanın kısımlarını geri al:: +- Bir dosyanın kısımlarını geri al: `git reset -p {{dosya/konumu}}` diff --git a/pages.tr/common/git-subtree.md b/pages.tr/common/git-subtree.md index 025f11d36c..245aee7538 100644 --- a/pages.tr/common/git-subtree.md +++ b/pages.tr/common/git-subtree.md @@ -1,7 +1,7 @@ # git subtree > Proje bağımlılıklarını alt proje olarak yönetmeye yarayan bir araç. -> Daha fazla bilgi için: . +> Daha fazla bilgi için: . - Bir Git deposunu alt ağaç olarak ekle: diff --git a/pages.tr/common/gitsome.md b/pages.tr/common/gitsome.md index c1a4117fa0..abe38b3a01 100644 --- a/pages.tr/common/gitsome.md +++ b/pages.tr/common/gitsome.md @@ -12,7 +12,7 @@ `gh configure` -- Mevcut hesap için bildirimleri (https://github.com/notifications adresinde görülebildiği gibi) sırala: +- Mevcut hesap için bildirimleri ( adresinde görülebildiği gibi) sırala: `gh notifications` diff --git a/pages.tr/common/gnmic-sub.md b/pages.tr/common/gnmic-sub.md new file mode 100644 index 0000000000..04cdbac6a1 --- /dev/null +++ b/pages.tr/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> Bu komut `gnmic subscribe` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr gnmic subscribe` diff --git a/pages.tr/common/go-vet.md b/pages.tr/common/go-vet.md index 1d7ccd5891..4ac0e02338 100644 --- a/pages.tr/common/go-vet.md +++ b/pages.tr/common/go-vet.md @@ -2,7 +2,7 @@ > Go kaynak kodunu kontrol et ve şüpheli yapıları bildir (örneğin Go kaynak dosyalarını tiftik et). > Go vet komutu eğer sorun bulunduysa sıfır olmayan bir çıkış kodu yazdırır. Eğer herhangi bir sorun bulunmadıysa sıfır çıkış kodu yazdırılır. -> More information: . +> Daha fazla bilgi için: . - Mevcut dizindeki Go paketini kontrol et: diff --git a/pages.tr/common/google-chrome.md b/pages.tr/common/google-chrome.md new file mode 100644 index 0000000000..8c8e54d145 --- /dev/null +++ b/pages.tr/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> Bu komut `chromium` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr chromium` diff --git a/pages.tr/common/grep.md b/pages.tr/common/grep.md index 265c795197..8401db3dbc 100644 --- a/pages.tr/common/grep.md +++ b/pages.tr/common/grep.md @@ -31,6 +31,6 @@ `grep --only-matching "{{aranan_kalıp}}" {{dosya/yolu}}` -- Bir kalıpla eşleşmeyen satırlar için stdin'de arama yap: +- Bir kalıpla eşleşmeyen satırlar için `stdin`'de arama yap: `cat {{dosya/yolu}} | grep --invert-match "{{aranan_kalıp}}"` diff --git a/pages.tr/common/hx.md b/pages.tr/common/hx.md new file mode 100644 index 0000000000..91d563a6d0 --- /dev/null +++ b/pages.tr/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> Bu komut `helix` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr helix` diff --git a/pages.tr/common/kafkacat.md b/pages.tr/common/kafkacat.md new file mode 100644 index 0000000000..f5fd6963ff --- /dev/null +++ b/pages.tr/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> Bu komut `kcat` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr kcat` diff --git a/pages.tr/common/llvm-ar.md b/pages.tr/common/llvm-ar.md new file mode 100644 index 0000000000..c67db37056 --- /dev/null +++ b/pages.tr/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> Bu komut `ar` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr ar` diff --git a/pages.tr/common/llvm-g++.md b/pages.tr/common/llvm-g++.md new file mode 100644 index 0000000000..e7d99077c3 --- /dev/null +++ b/pages.tr/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> Bu komut `clang++` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr clang++` diff --git a/pages.tr/common/llvm-gcc.md b/pages.tr/common/llvm-gcc.md new file mode 100644 index 0000000000..cb35770808 --- /dev/null +++ b/pages.tr/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> Bu komut `clang` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr clang` diff --git a/pages.tr/common/llvm-nm.md b/pages.tr/common/llvm-nm.md new file mode 100644 index 0000000000..0956c3b790 --- /dev/null +++ b/pages.tr/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> Bu komut `nm` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr nm` diff --git a/pages.tr/common/llvm-objdump.md b/pages.tr/common/llvm-objdump.md new file mode 100644 index 0000000000..db1d914399 --- /dev/null +++ b/pages.tr/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> Bu komut `objdump` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr objdump` diff --git a/pages.tr/common/llvm-strings.md b/pages.tr/common/llvm-strings.md new file mode 100644 index 0000000000..9a78cc5f9d --- /dev/null +++ b/pages.tr/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> Bu komut `strings` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr strings` diff --git a/pages.tr/common/lzcat.md b/pages.tr/common/lzcat.md new file mode 100644 index 0000000000..79d39e7830 --- /dev/null +++ b/pages.tr/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> Bu komut `xz` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr xz` diff --git a/pages.tr/common/lzma.md b/pages.tr/common/lzma.md new file mode 100644 index 0000000000..c816647a5a --- /dev/null +++ b/pages.tr/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> Bu komut `xz` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr xz` diff --git a/pages.tr/common/mscore.md b/pages.tr/common/mscore.md new file mode 100644 index 0000000000..bf57b60fe7 --- /dev/null +++ b/pages.tr/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> Bu komut `musescore` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr musescore` diff --git a/pages.tr/common/nm-classic.md b/pages.tr/common/nm-classic.md new file mode 100644 index 0000000000..48ef482d87 --- /dev/null +++ b/pages.tr/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> Bu komut `nm` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr nm` diff --git a/pages.tr/common/ntl.md b/pages.tr/common/ntl.md new file mode 100644 index 0000000000..8fbfd9c788 --- /dev/null +++ b/pages.tr/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> Bu komut `netlify` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr netlify` diff --git a/pages.tr/common/pio-init.md b/pages.tr/common/pio-init.md new file mode 100644 index 0000000000..26feb0084d --- /dev/null +++ b/pages.tr/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> Bu komut `pio project` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr pio project` diff --git a/pages.tr/common/piodebuggdb.md b/pages.tr/common/piodebuggdb.md new file mode 100644 index 0000000000..5437e0cf47 --- /dev/null +++ b/pages.tr/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> Bu komut `pio debug` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr pio debug` diff --git a/pages.tr/common/platformio.md b/pages.tr/common/platformio.md new file mode 100644 index 0000000000..ac98ae7eaa --- /dev/null +++ b/pages.tr/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> Bu komut `pio` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr pio` diff --git a/pages.tr/common/ptpython3.md b/pages.tr/common/ptpython3.md new file mode 100644 index 0000000000..cfe8123f32 --- /dev/null +++ b/pages.tr/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> Bu komut `ptpython` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr ptpython` diff --git a/pages.tr/common/python3.md b/pages.tr/common/python3.md new file mode 100644 index 0000000000..14bf60f960 --- /dev/null +++ b/pages.tr/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> Bu komut `python` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr python` diff --git a/pages.tr/common/r2.md b/pages.tr/common/r2.md new file mode 100644 index 0000000000..b2a30e39ff --- /dev/null +++ b/pages.tr/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> Bu komut `radare2` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr radare2` diff --git a/pages.tr/common/rcat.md b/pages.tr/common/rcat.md new file mode 100644 index 0000000000..c742983411 --- /dev/null +++ b/pages.tr/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> Bu komut `rc` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr rc` diff --git a/pages.tr/common/rg.md b/pages.tr/common/rg.md new file mode 100644 index 0000000000..101dd9a279 --- /dev/null +++ b/pages.tr/common/rg.md @@ -0,0 +1,37 @@ +# rg + +> Ripgrep, yinelemeli satır-odaklı bir CLI arama aracıdır. +> Grep'e daha hızlı bir alternatif olmayı hedefler. +> Daha fazla bilgi için: . + +- Normal bir ifade için geçerli dizini yinelemeli olarak ara: + +`rg {{normal_ifade}}` + +- Geçerli dizinde, gizli dosyalar ve ".gitignore" da listelenen dosyalar dahil olmak üzere normal ifadeleri yinelemeli olarak ara: + +`rg --no-ignore --hidden {{normal_ifade}}` + +- Normal ifadeyi yalnızca bir dizin alt kümesinde ara: + +`rg {{normal_ifade}} {{dizin_alt_kümesi}}` + +- Bir glob ile eşleşen dosyalarda normal bir ifade ara (örn: `README.*`): + +`rg {{normal_ifade}} --glob {{glob}}` + +- Normal bir ifadeyle eşleşen dosya adlarını ara: + +`rg --files | rg {{normal_ifade}}` + +- Yalnızca eşleşen dosyaları listele (diğer komutlara yönlendirirken kullanışlıdır): + +`rg --files-with-matches {{normal_ifade}}` + +- Verilen normal ifadeyle eşleşmeyen satırları göster: + +`rg --invert-match {{normal_ifade}}` + +- Bir değişmez dizi deseni için arama yap: + +`rg --fixed-strings -- {{dizi}}` diff --git a/pages.tr/common/ripgrep.md b/pages.tr/common/ripgrep.md new file mode 100644 index 0000000000..774d564ee1 --- /dev/null +++ b/pages.tr/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> Bu komut `rg` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr rg` diff --git a/pages.tr/common/tldr-lint.md b/pages.tr/common/tldr-lint.md index 9b0fbfbcd0..ef4e29b9c2 100644 --- a/pages.tr/common/tldr-lint.md +++ b/pages.tr/common/tldr-lint.md @@ -7,7 +7,7 @@ `tldr-lint {{sayfa_dizini}}` -- Belirtilmiş bir sayfayı stdout'a biçimlendir: +- Belirtilmiş bir sayfayı `stdout`'a biçimlendir: `tldr-lint --format {{page.md}}` diff --git a/pages.tr/common/tlmgr-arch.md b/pages.tr/common/tlmgr-arch.md new file mode 100644 index 0000000000..9467e04b8e --- /dev/null +++ b/pages.tr/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> Bu komut `tlmgr platform` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr tlmgr platform` diff --git a/pages.tr/common/todoman.md b/pages.tr/common/todoman.md new file mode 100644 index 0000000000..8dc61ef542 --- /dev/null +++ b/pages.tr/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> Bu komut `todo` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr todo` diff --git a/pages.tr/common/transmission.md b/pages.tr/common/transmission.md new file mode 100644 index 0000000000..c12d08a4c7 --- /dev/null +++ b/pages.tr/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> Bu komut `transmission-daemon` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr transmission-daemon` diff --git a/pages.tr/common/unlzma.md b/pages.tr/common/unlzma.md new file mode 100644 index 0000000000..606fdd23d3 --- /dev/null +++ b/pages.tr/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> Bu komut `xz` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr xz` diff --git a/pages.tr/common/unxz.md b/pages.tr/common/unxz.md new file mode 100644 index 0000000000..c0851a42aa --- /dev/null +++ b/pages.tr/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> Bu komut `xz` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr xz` diff --git a/pages.tr/common/vi.md b/pages.tr/common/vi.md new file mode 100644 index 0000000000..c0196322f7 --- /dev/null +++ b/pages.tr/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> Bu komut `vim` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr vim` diff --git a/pages.tr/common/xzcat.md b/pages.tr/common/xzcat.md new file mode 100644 index 0000000000..d29bfc0456 --- /dev/null +++ b/pages.tr/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> Bu komut `xz` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr xz` diff --git a/pages.tr/linux/a2enmod.md b/pages.tr/linux/a2enmod.md index cf82decfa0..b7f269dbba 100644 --- a/pages.tr/linux/a2enmod.md +++ b/pages.tr/linux/a2enmod.md @@ -3,7 +3,7 @@ > Debian tabanlı işletim sistemlerinde Apache modülünü etkinleştir. > Daha fazla bilgi için: . -- Bir modülü etkinleştir:: +- Bir modülü etkinleştir: `sudo a2enmod {{modül}}` diff --git a/pages.tr/linux/a2query.md b/pages.tr/linux/a2query.md index b88420c878..92ef15563a 100644 --- a/pages.tr/linux/a2query.md +++ b/pages.tr/linux/a2query.md @@ -1,7 +1,7 @@ # a2query > Apache ve Debian tabanlı işletim sistemlerinde çalışma süresi yapılandırmasını kurtar. -> Daha fazla bilgi için: . +> Daha fazla bilgi için: . - Etkinleştirilmiş Apache modüllerini sırala: diff --git a/pages.tr/linux/alternatives.md b/pages.tr/linux/alternatives.md new file mode 100644 index 0000000000..ebe4a82eb7 --- /dev/null +++ b/pages.tr/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> Bu komut `update-alternatives` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr update-alternatives` diff --git a/pages.tr/linux/batcat.md b/pages.tr/linux/batcat.md new file mode 100644 index 0000000000..60d4ee199c --- /dev/null +++ b/pages.tr/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> Bu komut `bat` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr bat` diff --git a/pages.tr/linux/bspwm.md b/pages.tr/linux/bspwm.md new file mode 100644 index 0000000000..6bcbefc0bc --- /dev/null +++ b/pages.tr/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> Bu komut `bspc` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr bspc` diff --git a/pages.tr/linux/cc.md b/pages.tr/linux/cc.md new file mode 100644 index 0000000000..456eeff28c --- /dev/null +++ b/pages.tr/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> Bu komut `gcc` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr gcc` diff --git a/pages.tr/linux/cgroups.md b/pages.tr/linux/cgroups.md new file mode 100644 index 0000000000..f9f4b1be4c --- /dev/null +++ b/pages.tr/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> Bu komut `cgclassify` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr cgclassify` diff --git a/pages.tr/linux/ip-route-list.md b/pages.tr/linux/ip-route-list.md new file mode 100644 index 0000000000..cccb46f6f6 --- /dev/null +++ b/pages.tr/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> Bu komut `ip-route-show` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr ip-route-show` diff --git a/pages.tr/linux/megadl.md b/pages.tr/linux/megadl.md new file mode 100644 index 0000000000..b065828da1 --- /dev/null +++ b/pages.tr/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> Bu komut `megatools-dl` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr megatools-dl` diff --git a/pages.tr/linux/ncal.md b/pages.tr/linux/ncal.md new file mode 100644 index 0000000000..fc7d6fa328 --- /dev/null +++ b/pages.tr/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> Bu komut `cal` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr cal` diff --git a/pages.tr/linux/pacman-mirrors.md b/pages.tr/linux/pacman-mirrors.md index f63b76cf25..fb82577b2c 100644 --- a/pages.tr/linux/pacman-mirrors.md +++ b/pages.tr/linux/pacman-mirrors.md @@ -2,6 +2,7 @@ > Manjaro Linux için pacman aynalistesi oluşturucu. > pacman-mirrors'ın çalıştırıldığı her vakit, E`sudo pacman -Syyu` komutu ile veritabanının senkronize edilmesi ve sistemin güncellenmesi gerekir. +> Ayrıca bakınız: `pacman`. > Daha fazla bilgi için: . - Varsayılan ayarlar ile bir aynalistesi oluştur: diff --git a/pages.tr/linux/pacman-query.md b/pages.tr/linux/pacman-query.md index a360c13bba..f616a108c6 100644 --- a/pages.tr/linux/pacman-query.md +++ b/pages.tr/linux/pacman-query.md @@ -1,6 +1,7 @@ # pacman --query > Arch Linux paket yönetim aracı. +> Ayrıca bakınız: `pacman`. > Daha fazla bilgi için: . - Yüklenmiş paket ve sürümleri sırala: diff --git a/pages.tr/linux/pacman-remove.md b/pages.tr/linux/pacman-remove.md index 2b7358ceb0..0b88939277 100644 --- a/pages.tr/linux/pacman-remove.md +++ b/pages.tr/linux/pacman-remove.md @@ -1,6 +1,7 @@ # pacman --remove > Arch Linux paket yönetim aracı. +> Ayrıca bakınız: `pacman`. > Daha fazla bilgi için: . - Bir paket ve bağlılıklarını sil: diff --git a/pages.tr/linux/pacman-sync.md b/pages.tr/linux/pacman-sync.md index 2d1b9291c8..43ccaf26e8 100644 --- a/pages.tr/linux/pacman-sync.md +++ b/pages.tr/linux/pacman-sync.md @@ -1,9 +1,10 @@ # pacman --sync > Arch Linux paket yönetim aracı. +> Ayrıca bakınız: `pacman`. > Daha fazla bilgi için: . -- Yeni bir paket indir:: +- Yeni bir paket indir: `sudo pacman --sync {{paket_ismi}}` diff --git a/pages.tr/linux/pacman.md b/pages.tr/linux/pacman.md index fe318d5d3f..fc59b41586 100644 --- a/pages.tr/linux/pacman.md +++ b/pages.tr/linux/pacman.md @@ -1,6 +1,7 @@ # pacman > Arch Linux paket yönetim aracı. +> Ayrıca bakınız: `pacman-database`, `pacman-deptest`, `pacman-files`, `pacman-key`, `pacman-mirrors`, `pacman-query`, `pacman-remove`, `pacman-sync`, `pacman-upgrade`. > Daha fazla bilgi için: . - Tüm paketleri senkronize et ve güncelle: diff --git a/pages.tr/linux/trash.md b/pages.tr/linux/trash.md index f099926edc..59d4422784 100644 --- a/pages.tr/linux/trash.md +++ b/pages.tr/linux/trash.md @@ -23,7 +23,7 @@ `trash-empty {{10}}` -- Çöptw 'foo' ismini taşıyan tüm dosyaları sil: +- Çöpte 'foo' ismini taşıyan tüm dosyaları sil: `trash-rm foo` diff --git a/pages.tr/linux/ubuntu-bug.md b/pages.tr/linux/ubuntu-bug.md new file mode 100644 index 0000000000..5b2cef3e24 --- /dev/null +++ b/pages.tr/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> Bu komut `apport-bug` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr apport-bug` diff --git a/pages.tr/osx/aa.md b/pages.tr/osx/aa.md new file mode 100644 index 0000000000..fe030f2bfb --- /dev/null +++ b/pages.tr/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> Bu komut `yaa` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr yaa` diff --git a/pages.tr/osx/g[.md b/pages.tr/osx/g[.md new file mode 100644 index 0000000000..53ff8efcd3 --- /dev/null +++ b/pages.tr/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> Bu komut `-p linux [` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux [` diff --git a/pages.tr/osx/gawk.md b/pages.tr/osx/gawk.md new file mode 100644 index 0000000000..ed0fbe7ad3 --- /dev/null +++ b/pages.tr/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> Bu komut `-p linux awk` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux awk` diff --git a/pages.tr/osx/gb2sum.md b/pages.tr/osx/gb2sum.md new file mode 100644 index 0000000000..8d700db4ee --- /dev/null +++ b/pages.tr/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> Bu komut `-p linux b2sum` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux b2sum` diff --git a/pages.tr/osx/gbase32.md b/pages.tr/osx/gbase32.md new file mode 100644 index 0000000000..acbe99dbb6 --- /dev/null +++ b/pages.tr/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> Bu komut `-p linux base32` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux base32` diff --git a/pages.tr/osx/gbase64.md b/pages.tr/osx/gbase64.md new file mode 100644 index 0000000000..ab29d8685d --- /dev/null +++ b/pages.tr/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> Bu komut `-p linux base64` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux base64` diff --git a/pages.tr/osx/gbasename.md b/pages.tr/osx/gbasename.md new file mode 100644 index 0000000000..4b3aaab588 --- /dev/null +++ b/pages.tr/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> Bu komut `-p linux basename` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux basename` diff --git a/pages.tr/osx/gbasenc.md b/pages.tr/osx/gbasenc.md new file mode 100644 index 0000000000..d0b056b29b --- /dev/null +++ b/pages.tr/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> Bu komut `-p linux basenc` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux basenc` diff --git a/pages.tr/osx/gcat.md b/pages.tr/osx/gcat.md new file mode 100644 index 0000000000..e942b9462f --- /dev/null +++ b/pages.tr/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> Bu komut `-p linux cat` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux cat` diff --git a/pages.tr/osx/gchcon.md b/pages.tr/osx/gchcon.md new file mode 100644 index 0000000000..4effdc1be6 --- /dev/null +++ b/pages.tr/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> Bu komut `-p linux chcon` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux chcon` diff --git a/pages.tr/osx/gchgrp.md b/pages.tr/osx/gchgrp.md new file mode 100644 index 0000000000..2fa46f2c2b --- /dev/null +++ b/pages.tr/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> Bu komut `-p linux chgrp` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux chgrp` diff --git a/pages.tr/osx/gchmod.md b/pages.tr/osx/gchmod.md new file mode 100644 index 0000000000..7dafde3062 --- /dev/null +++ b/pages.tr/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> Bu komut `-p linux chmod` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux chmod` diff --git a/pages.tr/osx/gchown.md b/pages.tr/osx/gchown.md new file mode 100644 index 0000000000..5371ae63cc --- /dev/null +++ b/pages.tr/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> Bu komut `-p linux chown` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux chown` diff --git a/pages.tr/osx/gchroot.md b/pages.tr/osx/gchroot.md new file mode 100644 index 0000000000..a962776d63 --- /dev/null +++ b/pages.tr/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> Bu komut `-p linux chroot` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux chroot` diff --git a/pages.tr/osx/gcksum.md b/pages.tr/osx/gcksum.md new file mode 100644 index 0000000000..bcd9076a7e --- /dev/null +++ b/pages.tr/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> Bu komut `-p linux cksum` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux cksum` diff --git a/pages.tr/osx/gcomm.md b/pages.tr/osx/gcomm.md new file mode 100644 index 0000000000..1b0ee2801a --- /dev/null +++ b/pages.tr/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> Bu komut `-p linux comm` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux comm` diff --git a/pages.tr/osx/gcp.md b/pages.tr/osx/gcp.md new file mode 100644 index 0000000000..d4f8d64d19 --- /dev/null +++ b/pages.tr/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> Bu komut `-p linux cp` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux cp` diff --git a/pages.tr/osx/gcsplit.md b/pages.tr/osx/gcsplit.md new file mode 100644 index 0000000000..1d820af127 --- /dev/null +++ b/pages.tr/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> Bu komut `-p linux csplit` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux csplit` diff --git a/pages.tr/osx/gcut.md b/pages.tr/osx/gcut.md new file mode 100644 index 0000000000..7239a4d159 --- /dev/null +++ b/pages.tr/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> Bu komut `-p linux cut` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux cut` diff --git a/pages.tr/osx/gdate.md b/pages.tr/osx/gdate.md new file mode 100644 index 0000000000..1a6b369f5b --- /dev/null +++ b/pages.tr/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> Bu komut `-p linux date` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux date` diff --git a/pages.tr/osx/gdd.md b/pages.tr/osx/gdd.md new file mode 100644 index 0000000000..a43889e829 --- /dev/null +++ b/pages.tr/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> Bu komut `-p linux dd` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux dd` diff --git a/pages.tr/osx/gdf.md b/pages.tr/osx/gdf.md new file mode 100644 index 0000000000..60ba0d6860 --- /dev/null +++ b/pages.tr/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> Bu komut `-p linux df` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux df` diff --git a/pages.tr/osx/gdir.md b/pages.tr/osx/gdir.md new file mode 100644 index 0000000000..125d898624 --- /dev/null +++ b/pages.tr/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> Bu komut `-p linux dir` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux dir` diff --git a/pages.tr/osx/gdircolors.md b/pages.tr/osx/gdircolors.md new file mode 100644 index 0000000000..b450d91397 --- /dev/null +++ b/pages.tr/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> Bu komut `-p linux dircolors` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux dircolors` diff --git a/pages.tr/osx/gdirname.md b/pages.tr/osx/gdirname.md new file mode 100644 index 0000000000..333569d609 --- /dev/null +++ b/pages.tr/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> Bu komut `-p linux dirname` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux dirname` diff --git a/pages.tr/osx/gdnsdomainname.md b/pages.tr/osx/gdnsdomainname.md new file mode 100644 index 0000000000..a35a01734b --- /dev/null +++ b/pages.tr/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> Bu komut `-p linux dnsdomainname` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux dnsdomainname` diff --git a/pages.tr/osx/gecho.md b/pages.tr/osx/gecho.md new file mode 100644 index 0000000000..2ade0632c2 --- /dev/null +++ b/pages.tr/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> Bu komut `-p linux echo` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux echo` diff --git a/pages.tr/osx/ged.md b/pages.tr/osx/ged.md new file mode 100644 index 0000000000..910b718699 --- /dev/null +++ b/pages.tr/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> Bu komut `-p linux ed` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux ed` diff --git a/pages.tr/osx/gegrep.md b/pages.tr/osx/gegrep.md new file mode 100644 index 0000000000..99877275bc --- /dev/null +++ b/pages.tr/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> Bu komut `-p linux egrep` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux egrep` diff --git a/pages.tr/osx/genv.md b/pages.tr/osx/genv.md new file mode 100644 index 0000000000..2efef98124 --- /dev/null +++ b/pages.tr/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> Bu komut `-p linux env` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux env` diff --git a/pages.tr/osx/gexpand.md b/pages.tr/osx/gexpand.md new file mode 100644 index 0000000000..6676a142fa --- /dev/null +++ b/pages.tr/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> Bu komut `-p linux expand` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux expand` diff --git a/pages.tr/osx/gexpr.md b/pages.tr/osx/gexpr.md new file mode 100644 index 0000000000..d4fc5cf0ad --- /dev/null +++ b/pages.tr/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> Bu komut `-p linux expr` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux expr` diff --git a/pages.tr/osx/gfactor.md b/pages.tr/osx/gfactor.md new file mode 100644 index 0000000000..7ff9bf0dfa --- /dev/null +++ b/pages.tr/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> Bu komut `-p linux factor` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux factor` diff --git a/pages.tr/osx/gfalse.md b/pages.tr/osx/gfalse.md new file mode 100644 index 0000000000..349d59f555 --- /dev/null +++ b/pages.tr/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> Bu komut `-p linux false` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux false` diff --git a/pages.tr/osx/gfgrep.md b/pages.tr/osx/gfgrep.md new file mode 100644 index 0000000000..260453e336 --- /dev/null +++ b/pages.tr/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> Bu komut `-p linux fgrep` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux fgrep` diff --git a/pages.tr/osx/gfind.md b/pages.tr/osx/gfind.md new file mode 100644 index 0000000000..44e9ba0323 --- /dev/null +++ b/pages.tr/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> Bu komut `-p linux find` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux find` diff --git a/pages.tr/osx/gfmt.md b/pages.tr/osx/gfmt.md new file mode 100644 index 0000000000..00122f0dc9 --- /dev/null +++ b/pages.tr/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> Bu komut `-p linux fmt` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux fmt` diff --git a/pages.tr/osx/gfold.md b/pages.tr/osx/gfold.md new file mode 100644 index 0000000000..81e563992a --- /dev/null +++ b/pages.tr/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> Bu komut `-p linux fold` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux fold` diff --git a/pages.tr/osx/gftp.md b/pages.tr/osx/gftp.md new file mode 100644 index 0000000000..0ae7bdffba --- /dev/null +++ b/pages.tr/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> Bu komut `-p linux ftp` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux ftp` diff --git a/pages.tr/osx/ggrep.md b/pages.tr/osx/ggrep.md new file mode 100644 index 0000000000..95df45abc4 --- /dev/null +++ b/pages.tr/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> Bu komut `-p linux grep` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux grep` diff --git a/pages.tr/osx/ggroups.md b/pages.tr/osx/ggroups.md new file mode 100644 index 0000000000..6e3d8b5fea --- /dev/null +++ b/pages.tr/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> Bu komut `-p linux groups` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux groups` diff --git a/pages.tr/osx/ghead.md b/pages.tr/osx/ghead.md new file mode 100644 index 0000000000..a637283c50 --- /dev/null +++ b/pages.tr/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> Bu komut `-p linux head` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux head` diff --git a/pages.tr/osx/ghostid.md b/pages.tr/osx/ghostid.md new file mode 100644 index 0000000000..26c1fff7f8 --- /dev/null +++ b/pages.tr/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> Bu komut `-p linux hostid` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux hostid` diff --git a/pages.tr/osx/ghostname.md b/pages.tr/osx/ghostname.md new file mode 100644 index 0000000000..6098b1c519 --- /dev/null +++ b/pages.tr/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> Bu komut `-p linux hostname` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux hostname` diff --git a/pages.tr/osx/gid.md b/pages.tr/osx/gid.md new file mode 100644 index 0000000000..53bef779e0 --- /dev/null +++ b/pages.tr/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> Bu komut `-p linux id` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux id` diff --git a/pages.tr/osx/gifconfig.md b/pages.tr/osx/gifconfig.md new file mode 100644 index 0000000000..c763f65841 --- /dev/null +++ b/pages.tr/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> Bu komut `-p linux ifconfig` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux ifconfig` diff --git a/pages.tr/osx/gindent.md b/pages.tr/osx/gindent.md new file mode 100644 index 0000000000..783fa1dd8b --- /dev/null +++ b/pages.tr/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> Bu komut `-p linux indent` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux indent` diff --git a/pages.tr/osx/ginstall.md b/pages.tr/osx/ginstall.md new file mode 100644 index 0000000000..f047325a64 --- /dev/null +++ b/pages.tr/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> Bu komut `-p linux install` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux install` diff --git a/pages.tr/osx/gjoin.md b/pages.tr/osx/gjoin.md new file mode 100644 index 0000000000..ce2e83adc2 --- /dev/null +++ b/pages.tr/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> Bu komut `-p linux join` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux join` diff --git a/pages.tr/osx/gkill.md b/pages.tr/osx/gkill.md new file mode 100644 index 0000000000..b08f7bbd18 --- /dev/null +++ b/pages.tr/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> Bu komut `-p linux kill` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux kill` diff --git a/pages.tr/osx/glibtool.md b/pages.tr/osx/glibtool.md new file mode 100644 index 0000000000..4dc3c9714a --- /dev/null +++ b/pages.tr/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> Bu komut `-p linux libtool` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux libtool` diff --git a/pages.tr/osx/glibtoolize.md b/pages.tr/osx/glibtoolize.md new file mode 100644 index 0000000000..85617c9cd7 --- /dev/null +++ b/pages.tr/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> Bu komut `-p linux libtoolize` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux libtoolize` diff --git a/pages.tr/osx/glink.md b/pages.tr/osx/glink.md new file mode 100644 index 0000000000..9f0a88a0c3 --- /dev/null +++ b/pages.tr/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> Bu komut `-p linux link` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux link` diff --git a/pages.tr/osx/gln.md b/pages.tr/osx/gln.md new file mode 100644 index 0000000000..47f9675007 --- /dev/null +++ b/pages.tr/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> Bu komut `-p linux ln` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux ln` diff --git a/pages.tr/osx/glocate.md b/pages.tr/osx/glocate.md new file mode 100644 index 0000000000..9c5889f525 --- /dev/null +++ b/pages.tr/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> Bu komut `-p linux locate` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux locate` diff --git a/pages.tr/osx/glogger.md b/pages.tr/osx/glogger.md new file mode 100644 index 0000000000..312360acf1 --- /dev/null +++ b/pages.tr/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> Bu komut `-p linux logger` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux logger` diff --git a/pages.tr/osx/glogname.md b/pages.tr/osx/glogname.md new file mode 100644 index 0000000000..d35b2b33f9 --- /dev/null +++ b/pages.tr/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> Bu komut `-p linux logname` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux logname` diff --git a/pages.tr/osx/gls.md b/pages.tr/osx/gls.md new file mode 100644 index 0000000000..f8179d4e9f --- /dev/null +++ b/pages.tr/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> Bu komut `-p linux ls` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux ls` diff --git a/pages.tr/osx/gmake.md b/pages.tr/osx/gmake.md new file mode 100644 index 0000000000..ef3e7ad095 --- /dev/null +++ b/pages.tr/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> Bu komut `-p linux make` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux make` diff --git a/pages.tr/osx/gmd5sum.md b/pages.tr/osx/gmd5sum.md new file mode 100644 index 0000000000..2fda802d73 --- /dev/null +++ b/pages.tr/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> Bu komut `-p linux md5sum` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux md5sum` diff --git a/pages.tr/osx/gmkdir.md b/pages.tr/osx/gmkdir.md new file mode 100644 index 0000000000..cd4723088d --- /dev/null +++ b/pages.tr/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> Bu komut `-p linux mkdir` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux mkdir` diff --git a/pages.tr/osx/gmkfifo.md b/pages.tr/osx/gmkfifo.md new file mode 100644 index 0000000000..e648d1538b --- /dev/null +++ b/pages.tr/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> Bu komut `-p linux mkfifo` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux mkfifo` diff --git a/pages.tr/osx/gmknod.md b/pages.tr/osx/gmknod.md new file mode 100644 index 0000000000..974946d465 --- /dev/null +++ b/pages.tr/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> Bu komut `-p linux mknod` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux mknod` diff --git a/pages.tr/osx/gmktemp.md b/pages.tr/osx/gmktemp.md new file mode 100644 index 0000000000..7723528cd9 --- /dev/null +++ b/pages.tr/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> Bu komut `-p linux mktemp` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux mktemp` diff --git a/pages.tr/osx/gmv.md b/pages.tr/osx/gmv.md new file mode 100644 index 0000000000..5edaf22144 --- /dev/null +++ b/pages.tr/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> Bu komut `-p linux mv` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux mv` diff --git a/pages.tr/osx/gnice.md b/pages.tr/osx/gnice.md new file mode 100644 index 0000000000..02b3000d8d --- /dev/null +++ b/pages.tr/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> Bu komut `-p linux nice` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux nice` diff --git a/pages.tr/osx/gnl.md b/pages.tr/osx/gnl.md new file mode 100644 index 0000000000..1645e90ad9 --- /dev/null +++ b/pages.tr/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> Bu komut `-p linux nl` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux nl` diff --git a/pages.tr/osx/gnohup.md b/pages.tr/osx/gnohup.md new file mode 100644 index 0000000000..d1bbd9fa69 --- /dev/null +++ b/pages.tr/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> Bu komut `-p linux nohup` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux nohup` diff --git a/pages.tr/osx/gnproc.md b/pages.tr/osx/gnproc.md new file mode 100644 index 0000000000..10694d9025 --- /dev/null +++ b/pages.tr/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> Bu komut `-p linux nproc` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux nproc` diff --git a/pages.tr/osx/gnumfmt.md b/pages.tr/osx/gnumfmt.md new file mode 100644 index 0000000000..b699787bd5 --- /dev/null +++ b/pages.tr/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> Bu komut `-p linux numfmt` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux numfmt` diff --git a/pages.tr/osx/god.md b/pages.tr/osx/god.md new file mode 100644 index 0000000000..71e07d2953 --- /dev/null +++ b/pages.tr/osx/god.md @@ -0,0 +1,7 @@ +# god + +> Bu komut `-p linux od` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux od` diff --git a/pages.tr/osx/gpaste.md b/pages.tr/osx/gpaste.md new file mode 100644 index 0000000000..4bbcc55948 --- /dev/null +++ b/pages.tr/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> Bu komut `-p linux paste` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux paste` diff --git a/pages.tr/osx/gpathchk.md b/pages.tr/osx/gpathchk.md new file mode 100644 index 0000000000..14b1d581e9 --- /dev/null +++ b/pages.tr/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> Bu komut `-p linux pathchk` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux pathchk` diff --git a/pages.tr/osx/gping.md b/pages.tr/osx/gping.md new file mode 100644 index 0000000000..93059aa687 --- /dev/null +++ b/pages.tr/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> Bu komut `-p linux ping` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux ping` diff --git a/pages.tr/osx/gping6.md b/pages.tr/osx/gping6.md new file mode 100644 index 0000000000..38b6f58685 --- /dev/null +++ b/pages.tr/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> Bu komut `-p linux ping6` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux ping6` diff --git a/pages.tr/osx/gpinky.md b/pages.tr/osx/gpinky.md new file mode 100644 index 0000000000..42a883c018 --- /dev/null +++ b/pages.tr/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> Bu komut `-p linux pinky` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux pinky` diff --git a/pages.tr/osx/gpr.md b/pages.tr/osx/gpr.md new file mode 100644 index 0000000000..47d0bdd5c7 --- /dev/null +++ b/pages.tr/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> Bu komut `-p linux pr` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux pr` diff --git a/pages.tr/osx/gprintenv.md b/pages.tr/osx/gprintenv.md new file mode 100644 index 0000000000..ab27f71414 --- /dev/null +++ b/pages.tr/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> Bu komut `-p linux printenv` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux printenv` diff --git a/pages.tr/osx/gprintf.md b/pages.tr/osx/gprintf.md new file mode 100644 index 0000000000..8f643e5692 --- /dev/null +++ b/pages.tr/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> Bu komut `-p linux printf` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux printf` diff --git a/pages.tr/osx/gptx.md b/pages.tr/osx/gptx.md new file mode 100644 index 0000000000..f4be0cb3ac --- /dev/null +++ b/pages.tr/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> Bu komut `-p linux ptx` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux ptx` diff --git a/pages.tr/osx/gpwd.md b/pages.tr/osx/gpwd.md new file mode 100644 index 0000000000..057aaaefc4 --- /dev/null +++ b/pages.tr/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> Bu komut `-p linux pwd` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux pwd` diff --git a/pages.tr/osx/grcp.md b/pages.tr/osx/grcp.md new file mode 100644 index 0000000000..c25d9fd197 --- /dev/null +++ b/pages.tr/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> Bu komut `-p linux rcp` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux rcp` diff --git a/pages.tr/osx/greadlink.md b/pages.tr/osx/greadlink.md new file mode 100644 index 0000000000..15c1e7f194 --- /dev/null +++ b/pages.tr/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> Bu komut `-p linux readlink` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux readlink` diff --git a/pages.tr/osx/grealpath.md b/pages.tr/osx/grealpath.md new file mode 100644 index 0000000000..e6521dba75 --- /dev/null +++ b/pages.tr/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> Bu komut `-p linux realpath` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux realpath` diff --git a/pages.tr/osx/grexec.md b/pages.tr/osx/grexec.md new file mode 100644 index 0000000000..1dc6aaa82a --- /dev/null +++ b/pages.tr/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> Bu komut `-p linux rexec` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux rexec` diff --git a/pages.tr/osx/grlogin.md b/pages.tr/osx/grlogin.md new file mode 100644 index 0000000000..71e4c017c2 --- /dev/null +++ b/pages.tr/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> Bu komut `-p linux rlogin` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux rlogin` diff --git a/pages.tr/osx/grm.md b/pages.tr/osx/grm.md new file mode 100644 index 0000000000..9b71df5c62 --- /dev/null +++ b/pages.tr/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> Bu komut `-p linux rm` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux rm` diff --git a/pages.tr/osx/grmdir.md b/pages.tr/osx/grmdir.md new file mode 100644 index 0000000000..8519102bf7 --- /dev/null +++ b/pages.tr/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> Bu komut `-p linux rmdir` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux rmdir` diff --git a/pages.tr/osx/grsh.md b/pages.tr/osx/grsh.md new file mode 100644 index 0000000000..f11203a327 --- /dev/null +++ b/pages.tr/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> Bu komut `-p linux rsh` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux rsh` diff --git a/pages.tr/osx/gruncon.md b/pages.tr/osx/gruncon.md new file mode 100644 index 0000000000..c064ff1e01 --- /dev/null +++ b/pages.tr/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> Bu komut `-p linux runcon` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux runcon` diff --git a/pages.tr/osx/gsed.md b/pages.tr/osx/gsed.md new file mode 100644 index 0000000000..f17d955209 --- /dev/null +++ b/pages.tr/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> Bu komut `-p linux sed` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux sed` diff --git a/pages.tr/osx/gseq.md b/pages.tr/osx/gseq.md new file mode 100644 index 0000000000..11570309fc --- /dev/null +++ b/pages.tr/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> Bu komut `-p linux seq` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux seq` diff --git a/pages.tr/osx/gsha1sum.md b/pages.tr/osx/gsha1sum.md new file mode 100644 index 0000000000..ce00216488 --- /dev/null +++ b/pages.tr/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> Bu komut `-p linux sha1sum` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux sha1sum` diff --git a/pages.tr/osx/gsha224sum.md b/pages.tr/osx/gsha224sum.md new file mode 100644 index 0000000000..31b3c30df5 --- /dev/null +++ b/pages.tr/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> Bu komut `-p linux sha224sum` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux sha224sum` diff --git a/pages.tr/osx/gsha256sum.md b/pages.tr/osx/gsha256sum.md new file mode 100644 index 0000000000..5fa795fdf9 --- /dev/null +++ b/pages.tr/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> Bu komut `-p linux sha256sum` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux sha256sum` diff --git a/pages.tr/osx/gsha384sum.md b/pages.tr/osx/gsha384sum.md new file mode 100644 index 0000000000..f016e7df2f --- /dev/null +++ b/pages.tr/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> Bu komut `-p linux sha384sum` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux sha384sum` diff --git a/pages.tr/osx/gsha512sum.md b/pages.tr/osx/gsha512sum.md new file mode 100644 index 0000000000..ae85e5e0dd --- /dev/null +++ b/pages.tr/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> Bu komut `-p linux sha512sum` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux sha512sum` diff --git a/pages.tr/osx/gshred.md b/pages.tr/osx/gshred.md new file mode 100644 index 0000000000..b1ee1f3a80 --- /dev/null +++ b/pages.tr/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> Bu komut `-p linux shred` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux shred` diff --git a/pages.tr/osx/gshuf.md b/pages.tr/osx/gshuf.md new file mode 100644 index 0000000000..fabcfb8081 --- /dev/null +++ b/pages.tr/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> Bu komut `-p linux shuf` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux shuf` diff --git a/pages.tr/osx/gsleep.md b/pages.tr/osx/gsleep.md new file mode 100644 index 0000000000..1814f9eb97 --- /dev/null +++ b/pages.tr/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> Bu komut `-p linux sleep` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux sleep` diff --git a/pages.tr/osx/gsort.md b/pages.tr/osx/gsort.md new file mode 100644 index 0000000000..2ee476c6ae --- /dev/null +++ b/pages.tr/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> Bu komut `-p linux sort` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux sort` diff --git a/pages.tr/osx/gsplit.md b/pages.tr/osx/gsplit.md new file mode 100644 index 0000000000..27da4251d7 --- /dev/null +++ b/pages.tr/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> Bu komut `-p linux split` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux split` diff --git a/pages.tr/osx/gstat.md b/pages.tr/osx/gstat.md new file mode 100644 index 0000000000..411df0c421 --- /dev/null +++ b/pages.tr/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> Bu komut `-p linux stat` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux stat` diff --git a/pages.tr/osx/gstdbuf.md b/pages.tr/osx/gstdbuf.md new file mode 100644 index 0000000000..bb5a235eca --- /dev/null +++ b/pages.tr/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> Bu komut `-p linux stdbuf` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux stdbuf` diff --git a/pages.tr/osx/gstty.md b/pages.tr/osx/gstty.md new file mode 100644 index 0000000000..c8e41d66ed --- /dev/null +++ b/pages.tr/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> Bu komut `-p linux stty` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux stty` diff --git a/pages.tr/osx/gsum.md b/pages.tr/osx/gsum.md new file mode 100644 index 0000000000..da4d21fa61 --- /dev/null +++ b/pages.tr/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> Bu komut `-p linux sum` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux sum` diff --git a/pages.tr/osx/gsync.md b/pages.tr/osx/gsync.md new file mode 100644 index 0000000000..5261812b3a --- /dev/null +++ b/pages.tr/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> Bu komut `-p linux sync` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux sync` diff --git a/pages.tr/osx/gtac.md b/pages.tr/osx/gtac.md new file mode 100644 index 0000000000..ec718b810b --- /dev/null +++ b/pages.tr/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> Bu komut `-p linux tac` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux tac` diff --git a/pages.tr/osx/gtail.md b/pages.tr/osx/gtail.md new file mode 100644 index 0000000000..ad3b4276e6 --- /dev/null +++ b/pages.tr/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> Bu komut `-p linux tail` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux tail` diff --git a/pages.tr/osx/gtalk.md b/pages.tr/osx/gtalk.md new file mode 100644 index 0000000000..c5fcc1ee63 --- /dev/null +++ b/pages.tr/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> Bu komut `-p linux talk` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux talk` diff --git a/pages.tr/osx/gtar.md b/pages.tr/osx/gtar.md new file mode 100644 index 0000000000..ab0e89cfff --- /dev/null +++ b/pages.tr/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> Bu komut `-p linux tar` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux tar` diff --git a/pages.tr/osx/gtee.md b/pages.tr/osx/gtee.md new file mode 100644 index 0000000000..ba76a05753 --- /dev/null +++ b/pages.tr/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> Bu komut `-p linux tee` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux tee` diff --git a/pages.tr/osx/gtelnet.md b/pages.tr/osx/gtelnet.md new file mode 100644 index 0000000000..43e965b3d9 --- /dev/null +++ b/pages.tr/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> Bu komut `-p linux telnet` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux telnet` diff --git a/pages.tr/osx/gtest.md b/pages.tr/osx/gtest.md new file mode 100644 index 0000000000..d97437d896 --- /dev/null +++ b/pages.tr/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> Bu komut `-p linux test` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux test` diff --git a/pages.tr/osx/gtftp.md b/pages.tr/osx/gtftp.md new file mode 100644 index 0000000000..d97c774f9e --- /dev/null +++ b/pages.tr/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> Bu komut `-p linux tftp` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux tftp` diff --git a/pages.tr/osx/gtime.md b/pages.tr/osx/gtime.md new file mode 100644 index 0000000000..0d7064377d --- /dev/null +++ b/pages.tr/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> Bu komut `-p linux time` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux time` diff --git a/pages.tr/osx/gtimeout.md b/pages.tr/osx/gtimeout.md new file mode 100644 index 0000000000..8bad46168d --- /dev/null +++ b/pages.tr/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> Bu komut `-p linux timeout` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux timeout` diff --git a/pages.tr/osx/gtouch.md b/pages.tr/osx/gtouch.md new file mode 100644 index 0000000000..c466defd5e --- /dev/null +++ b/pages.tr/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> Bu komut `-p linux touch` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux touch` diff --git a/pages.tr/osx/gtr.md b/pages.tr/osx/gtr.md new file mode 100644 index 0000000000..4ef1e827dd --- /dev/null +++ b/pages.tr/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> Bu komut `-p linux tr` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux tr` diff --git a/pages.tr/osx/gtraceroute.md b/pages.tr/osx/gtraceroute.md new file mode 100644 index 0000000000..80cac8e1ac --- /dev/null +++ b/pages.tr/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> Bu komut `-p linux traceroute` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux traceroute` diff --git a/pages.tr/osx/gtrue.md b/pages.tr/osx/gtrue.md new file mode 100644 index 0000000000..daab244fc9 --- /dev/null +++ b/pages.tr/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> Bu komut `-p linux true` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux true` diff --git a/pages.tr/osx/gtruncate.md b/pages.tr/osx/gtruncate.md new file mode 100644 index 0000000000..5ed7bf7315 --- /dev/null +++ b/pages.tr/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> Bu komut `-p linux truncate` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux truncate` diff --git a/pages.tr/osx/gtsort.md b/pages.tr/osx/gtsort.md new file mode 100644 index 0000000000..34534ca31e --- /dev/null +++ b/pages.tr/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> Bu komut `-p linux tsort` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux tsort` diff --git a/pages.tr/osx/gtty.md b/pages.tr/osx/gtty.md new file mode 100644 index 0000000000..7e57656a49 --- /dev/null +++ b/pages.tr/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> Bu komut `-p linux tty` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux tty` diff --git a/pages.tr/osx/guname.md b/pages.tr/osx/guname.md new file mode 100644 index 0000000000..9f9838a9ad --- /dev/null +++ b/pages.tr/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> Bu komut `-p linux uname` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux uname` diff --git a/pages.tr/osx/gunexpand.md b/pages.tr/osx/gunexpand.md new file mode 100644 index 0000000000..a4b63b65a9 --- /dev/null +++ b/pages.tr/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> Bu komut `-p linux unexpand` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux unexpand` diff --git a/pages.tr/osx/guniq.md b/pages.tr/osx/guniq.md new file mode 100644 index 0000000000..a58db9d995 --- /dev/null +++ b/pages.tr/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> Bu komut `-p linux uniq` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux uniq` diff --git a/pages.tr/osx/gunits.md b/pages.tr/osx/gunits.md new file mode 100644 index 0000000000..5f7172de2b --- /dev/null +++ b/pages.tr/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> Bu komut `-p linux units` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux units` diff --git a/pages.tr/osx/gunlink.md b/pages.tr/osx/gunlink.md new file mode 100644 index 0000000000..d55469dd13 --- /dev/null +++ b/pages.tr/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> Bu komut `-p linux unlink` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux unlink` diff --git a/pages.tr/osx/gupdatedb.md b/pages.tr/osx/gupdatedb.md new file mode 100644 index 0000000000..e0172bacec --- /dev/null +++ b/pages.tr/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> Bu komut `-p linux updatedb` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux updatedb` diff --git a/pages.tr/osx/guptime.md b/pages.tr/osx/guptime.md new file mode 100644 index 0000000000..481f47c106 --- /dev/null +++ b/pages.tr/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> Bu komut `-p linux uptime` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux uptime` diff --git a/pages.tr/osx/gusers.md b/pages.tr/osx/gusers.md new file mode 100644 index 0000000000..7f195076e0 --- /dev/null +++ b/pages.tr/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> Bu komut `-p linux users` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux users` diff --git a/pages.tr/osx/gvdir.md b/pages.tr/osx/gvdir.md new file mode 100644 index 0000000000..6fca9be188 --- /dev/null +++ b/pages.tr/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> Bu komut `-p linux vdir` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux vdir` diff --git a/pages.tr/osx/gwc.md b/pages.tr/osx/gwc.md new file mode 100644 index 0000000000..d60324566f --- /dev/null +++ b/pages.tr/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> Bu komut `-p linux wc` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux wc` diff --git a/pages.tr/osx/gwhich.md b/pages.tr/osx/gwhich.md new file mode 100644 index 0000000000..83d33d7cc9 --- /dev/null +++ b/pages.tr/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> Bu komut `-p linux which` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux which` diff --git a/pages.tr/osx/gwho.md b/pages.tr/osx/gwho.md new file mode 100644 index 0000000000..5bfb45923e --- /dev/null +++ b/pages.tr/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> Bu komut `-p linux who` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux who` diff --git a/pages.tr/osx/gwhoami.md b/pages.tr/osx/gwhoami.md new file mode 100644 index 0000000000..ead160c46d --- /dev/null +++ b/pages.tr/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> Bu komut `-p linux whoami` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux whoami` diff --git a/pages.tr/osx/gwhois.md b/pages.tr/osx/gwhois.md new file mode 100644 index 0000000000..62b6d200b1 --- /dev/null +++ b/pages.tr/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> Bu komut `-p linux whois` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux whois` diff --git a/pages.tr/osx/gxargs.md b/pages.tr/osx/gxargs.md new file mode 100644 index 0000000000..3f8bc1f59b --- /dev/null +++ b/pages.tr/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> Bu komut `-p linux xargs` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux xargs` diff --git a/pages.tr/osx/gyes.md b/pages.tr/osx/gyes.md new file mode 100644 index 0000000000..057632fc79 --- /dev/null +++ b/pages.tr/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> Bu komut `-p linux yes` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr -p linux yes` diff --git a/pages.tr/osx/launchd.md b/pages.tr/osx/launchd.md new file mode 100644 index 0000000000..9133b5d9cf --- /dev/null +++ b/pages.tr/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> Bu komut `launchctl` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr launchctl` diff --git a/pages.tr/windows/chrome.md b/pages.tr/windows/chrome.md new file mode 100644 index 0000000000..6cc7a8ff9d --- /dev/null +++ b/pages.tr/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> Bu komut `chromium` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr chromium` diff --git a/pages.tr/windows/cinst.md b/pages.tr/windows/cinst.md new file mode 100644 index 0000000000..8609a9e6d4 --- /dev/null +++ b/pages.tr/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> Bu komut `choco install` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr choco install` diff --git a/pages.tr/windows/clist.md b/pages.tr/windows/clist.md new file mode 100644 index 0000000000..0e21b806f9 --- /dev/null +++ b/pages.tr/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> Bu komut `choco list` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr choco list` diff --git a/pages.tr/windows/cpush.md b/pages.tr/windows/cpush.md new file mode 100644 index 0000000000..1d2f25f131 --- /dev/null +++ b/pages.tr/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> Bu komut `choco-push` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr choco-push` diff --git a/pages.tr/windows/cuninst.md b/pages.tr/windows/cuninst.md new file mode 100644 index 0000000000..acec675a9a --- /dev/null +++ b/pages.tr/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> Bu komut `choco uninstall` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr choco uninstall` diff --git a/pages.tr/windows/curl.md b/pages.tr/windows/curl.md new file mode 100644 index 0000000000..3333af91e6 --- /dev/null +++ b/pages.tr/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> Bu komut `curl -p common` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr curl -p common` diff --git a/pages.tr/windows/iwr.md b/pages.tr/windows/iwr.md new file mode 100644 index 0000000000..312569933e --- /dev/null +++ b/pages.tr/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> Bu komut `invoke-webrequest` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr invoke-webrequest` diff --git a/pages.tr/windows/pwsh-where.md b/pages.tr/windows/pwsh-where.md new file mode 100644 index 0000000000..6e3fed4464 --- /dev/null +++ b/pages.tr/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> Bu komut `Where-Object` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr Where-Object` diff --git a/pages.tr/windows/rd.md b/pages.tr/windows/rd.md new file mode 100644 index 0000000000..8187bcb309 --- /dev/null +++ b/pages.tr/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> Bu komut `rmdir` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr rmdir` diff --git a/pages.tr/windows/sls.md b/pages.tr/windows/sls.md new file mode 100644 index 0000000000..2689eab9d4 --- /dev/null +++ b/pages.tr/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> Bu komut `where-object` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr where-object` diff --git a/pages.tr/windows/wget.md b/pages.tr/windows/wget.md new file mode 100644 index 0000000000..37770e51f9 --- /dev/null +++ b/pages.tr/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> Bu komut `wget -p common` için bir takma addır. +> Daha fazla bilgi için: . + +- Asıl komutun belgelerini görüntüleyin: + +`tldr wget -p common` diff --git a/pages.uk/common/bundler.md b/pages.uk/common/bundler.md new file mode 100644 index 0000000000..50eabe24a0 --- /dev/null +++ b/pages.uk/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> Ця команда є псевдонімом для `bundle`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr bundle` diff --git a/pages.uk/common/clamav.md b/pages.uk/common/clamav.md new file mode 100644 index 0000000000..67cad03803 --- /dev/null +++ b/pages.uk/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> Ця команда є псевдонімом для `clamdscan`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr clamdscan` diff --git a/pages.uk/common/cron.md b/pages.uk/common/cron.md new file mode 100644 index 0000000000..8215e67b15 --- /dev/null +++ b/pages.uk/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> Ця команда є псевдонімом для `crontab`. + +- Дивись документацію для оригінальної команди: + +`tldr crontab` diff --git a/pages.uk/common/fossil-ci.md b/pages.uk/common/fossil-ci.md new file mode 100644 index 0000000000..0fc67574d1 --- /dev/null +++ b/pages.uk/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> Ця команда є псевдонімом для `fossil-commit`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr fossil-commit` diff --git a/pages.uk/common/fossil-delete.md b/pages.uk/common/fossil-delete.md new file mode 100644 index 0000000000..dd111656ff --- /dev/null +++ b/pages.uk/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> Ця команда є псевдонімом для `fossil rm`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr fossil rm` diff --git a/pages.uk/common/fossil-forget.md b/pages.uk/common/fossil-forget.md new file mode 100644 index 0000000000..216d0fd1ed --- /dev/null +++ b/pages.uk/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> Ця команда є псевдонімом для `fossil rm`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr fossil rm` diff --git a/pages.uk/common/fossil-new.md b/pages.uk/common/fossil-new.md new file mode 100644 index 0000000000..f2a0c6d72b --- /dev/null +++ b/pages.uk/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> Ця команда є псевдонімом для `fossil-init`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr fossil-init` diff --git a/pages.uk/common/gh-cs.md b/pages.uk/common/gh-cs.md new file mode 100644 index 0000000000..48e6f38b1b --- /dev/null +++ b/pages.uk/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> Ця команда є псевдонімом для `gh-codespace`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr gh-codespace` diff --git a/pages.uk/common/gist.md b/pages.uk/common/gist.md index 4d7ff30b3c..bc40f5bee3 100644 --- a/pages.uk/common/gist.md +++ b/pages.uk/common/gist.md @@ -15,7 +15,7 @@ `gist --private --description "{{Змістовний опис}}" {{ім'я_файлу.txt}} ` -- Прочитати контент з stdin і створити gist з цього: +- Прочитати контент з `stdin` і створити gist з цього: `{{echo "привіт світ"}} | gist` diff --git a/pages.uk/common/gnmic-sub.md b/pages.uk/common/gnmic-sub.md new file mode 100644 index 0000000000..6d6c3aab47 --- /dev/null +++ b/pages.uk/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> Ця команда є псевдонімом для `gnmic subscribe`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr gnmic subscribe` diff --git a/pages.uk/common/google-chrome.md b/pages.uk/common/google-chrome.md new file mode 100644 index 0000000000..21f5258eac --- /dev/null +++ b/pages.uk/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> Ця команда є псевдонімом для `chromium`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr chromium` diff --git a/pages.uk/common/hx.md b/pages.uk/common/hx.md new file mode 100644 index 0000000000..b4465888f6 --- /dev/null +++ b/pages.uk/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> Ця команда є псевдонімом для `helix`. + +- Дивись документацію для оригінальної команди: + +`tldr helix` diff --git a/pages.uk/common/kafkacat.md b/pages.uk/common/kafkacat.md new file mode 100644 index 0000000000..ce8b1b458c --- /dev/null +++ b/pages.uk/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> Ця команда є псевдонімом для `kcat`. + +- Дивись документацію для оригінальної команди: + +`tldr kcat` diff --git a/pages.uk/common/lzcat.md b/pages.uk/common/lzcat.md new file mode 100644 index 0000000000..8ea37f0784 --- /dev/null +++ b/pages.uk/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> Ця команда є псевдонімом для `xz`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr xz` diff --git a/pages.uk/common/lzma.md b/pages.uk/common/lzma.md new file mode 100644 index 0000000000..92ff0a1d81 --- /dev/null +++ b/pages.uk/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> Ця команда є псевдонімом для `xz`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr xz` diff --git a/pages.uk/common/nm-classic.md b/pages.uk/common/nm-classic.md new file mode 100644 index 0000000000..2a45ff4802 --- /dev/null +++ b/pages.uk/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> Ця команда є псевдонімом для `nm`. + +- Дивись документацію для оригінальної команди: + +`tldr nm` diff --git a/pages.uk/common/ntl.md b/pages.uk/common/ntl.md new file mode 100644 index 0000000000..9d0d320698 --- /dev/null +++ b/pages.uk/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> Ця команда є псевдонімом для `netlify`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr netlify` diff --git a/pages.uk/common/ptpython3.md b/pages.uk/common/ptpython3.md new file mode 100644 index 0000000000..942f3b50f0 --- /dev/null +++ b/pages.uk/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> Ця команда є псевдонімом для `ptpython`. + +- Дивись документацію для оригінальної команди: + +`tldr ptpython` diff --git a/pages.uk/common/python3.md b/pages.uk/common/python3.md new file mode 100644 index 0000000000..24754fb7f7 --- /dev/null +++ b/pages.uk/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> Ця команда є псевдонімом для `python`. + +- Дивись документацію для оригінальної команди: + +`tldr python` diff --git a/pages.uk/common/rcat.md b/pages.uk/common/rcat.md new file mode 100644 index 0000000000..4708a83cea --- /dev/null +++ b/pages.uk/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> Ця команда є псевдонімом для `rc`. + +- Дивись документацію для оригінальної команди: + +`tldr rc` diff --git a/pages.uk/common/ripgrep.md b/pages.uk/common/ripgrep.md new file mode 100644 index 0000000000..e660513f55 --- /dev/null +++ b/pages.uk/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> Ця команда є псевдонімом для `rg`. + +- Дивись документацію для оригінальної команди: + +`tldr rg` diff --git a/pages.uk/common/todoman.md b/pages.uk/common/todoman.md new file mode 100644 index 0000000000..2703fb99a3 --- /dev/null +++ b/pages.uk/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> Ця команда є псевдонімом для `todo`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr todo` diff --git a/pages.uk/common/transmission.md b/pages.uk/common/transmission.md new file mode 100644 index 0000000000..39dbf19792 --- /dev/null +++ b/pages.uk/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> Ця команда є псевдонімом для `transmission-daemon`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr transmission-daemon` diff --git a/pages.uk/common/unlzma.md b/pages.uk/common/unlzma.md new file mode 100644 index 0000000000..08f0621851 --- /dev/null +++ b/pages.uk/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> Ця команда є псевдонімом для `xz`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr xz` diff --git a/pages.uk/common/unxz.md b/pages.uk/common/unxz.md new file mode 100644 index 0000000000..aaf3f10df1 --- /dev/null +++ b/pages.uk/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> Ця команда є псевдонімом для `xz`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr xz` diff --git a/pages.uk/common/xzcat.md b/pages.uk/common/xzcat.md new file mode 100644 index 0000000000..8047104223 --- /dev/null +++ b/pages.uk/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> Ця команда є псевдонімом для `xz`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr xz` diff --git a/pages.uk/linux/alternatives.md b/pages.uk/linux/alternatives.md new file mode 100644 index 0000000000..d1e4fe5877 --- /dev/null +++ b/pages.uk/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> Ця команда є псевдонімом для `update-alternatives`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr update-alternatives` diff --git a/pages.uk/linux/apt-cache.md b/pages.uk/linux/apt-cache.md new file mode 100644 index 0000000000..d41a2e82b3 --- /dev/null +++ b/pages.uk/linux/apt-cache.md @@ -0,0 +1,24 @@ +# apt-cache + +> Інструмент запиту пакетів Debian і Ubuntu. +> Більше інформації: . + +- Шукати пакет у ваших поточних джерелах: + +`apt-cache search {{запит}}` + +- Показати інформацію про пакет: + +`apt-cache show {{пакет}}` + +- Показати, чи встановлено та оновлено пакет: + +`apt-cache policy {{пакет}}` + +- Показати залежності для пакета: + +`apt-cache depends {{пакет}}` + +- Показати пакети, які залежать від конкретного пакета: + +`apt-cache rdepends {{пакет}}` diff --git a/pages.uk/linux/apt-get.md b/pages.uk/linux/apt-get.md new file mode 100644 index 0000000000..752f209843 --- /dev/null +++ b/pages.uk/linux/apt-get.md @@ -0,0 +1,37 @@ +# apt-get + +> Утиліта керування пакетами Debian і Ubuntu. +> Шукати пакети за допомогою `apt-cache`. +> Більше інформації: . + +- Оновити список доступних пакетів і версій (рекомендується запускати це перед іншими командами `apt-get`): + +`apt-get update` + +- Встановити пакет або оновити його до останньої доступної версії: + +`apt-get install {{пакет}}` + +- Видалити пакет: + +`apt-get remove {{пакет}}` + +- Видалити пакет і файли його конфігурації: + +`apt-get purge {{пакет}}` + +- Оновити усі встановлені пакети до найновіших доступних версій: + +`apt-get upgrade` + +- Очистити локальний репозиторій - видалити файли пакетів (`.deb`) із перерваних завантажень, які більше не можна завантажити: + +`apt-get autoclean` + +- Видалити усі пакети, які більше не потрібні: + +`apt-get autoremove` + +- Оновити встановлені пакети (як `upgrade`), але видалити застарілі пакети та встановити додаткові, щоб відповідати новим залежностям: + +`apt-get dist-upgrade` diff --git a/pages.uk/linux/apt.md b/pages.uk/linux/apt.md new file mode 100644 index 0000000000..cd23bfd691 --- /dev/null +++ b/pages.uk/linux/apt.md @@ -0,0 +1,38 @@ +# apt + +> Утиліта керування пакетами для дистрибутивів на основі Debian. +> Рекомендована заміна для `apt-get` при інтерактивному використанні в Ubuntu версії 16.04 і пізніших. +> Еквівалентні команди в інших менеджерах пакунків дивитися . +> Більше інформації: . + +- Оновити список доступних пакетів і версій (рекомендується запускати це перед іншими командами `apt`): + +`sudo apt update` + +- Шукати заданий пакет: + +`apt search {{пакет}}` + +- Відобразити інформацію про пакет: + +`apt show {{пакет}}` + +- Встановити пакет або оновити його до останньої доступної версії: + +`sudo apt install {{пакет}}` + +- Видалити пакет (використання `purge` натомість також видаляє його конфігураційні файли): + +`sudo apt remove {{пакет}}` + +- Оновити усі встановлені пакети до найновіших доступних версій: + +`sudo apt upgrade` + +- Відобразити список усіх пакетів: + +`apt list` + +- Відобразити список усіх встановлених пакетів: + +`apt list --installed` diff --git a/pages.uk/linux/aptitude.md b/pages.uk/linux/aptitude.md new file mode 100644 index 0000000000..43cad2941b --- /dev/null +++ b/pages.uk/linux/aptitude.md @@ -0,0 +1,36 @@ +# aptitude + +> Утиліта керування пакетами Debian і Ubuntu. +> Більше інформації: . + +- Синхронізувати список доступних пакетів і версій. Це слід запустити спочатку, перш ніж запускати наступні команди aptitude: + +`aptitude update` + +- Встановити новий пакет і його залежності: + +`aptitude install {{пакет}}` + +- Шукати пакет: + +`aptitude search {{пакет}}` + +- Шукати встановлений пакет (`?installed` це термін пошуку aptitude): + +`aptitude search '?installed({{пакет}})'` + +- Видалити пакет і всі залежні від нього пакети: + +`aptitude remove {{пакет}}` + +- Оновити встановлені пакети до найновіших доступних версій: + +`aptitude upgrade` + +- Оновити встановлені пакети (як `aptitude upgrade`) включно з видаленням застарілих пакетів і встановленням додаткових, щоб відповідати новим залежностям пакетів: + +`aptitude full-upgrade` + +- Затримати встановлений пакет, щоб уникнути його автоматичного оновлення: + +`aptitude hold '?installed({{пакет}})'` diff --git a/pages.uk/linux/batcat.md b/pages.uk/linux/batcat.md new file mode 100644 index 0000000000..6a49ad4814 --- /dev/null +++ b/pages.uk/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> Ця команда є псевдонімом для `bat`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr bat` diff --git a/pages.uk/linux/bspwm.md b/pages.uk/linux/bspwm.md new file mode 100644 index 0000000000..9bc38565ee --- /dev/null +++ b/pages.uk/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> Ця команда є псевдонімом для `bspc`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr bspc` diff --git a/pages.uk/linux/cc.md b/pages.uk/linux/cc.md new file mode 100644 index 0000000000..8d3e2aa861 --- /dev/null +++ b/pages.uk/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> Ця команда є псевдонімом для `gcc`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr gcc` diff --git a/pages.uk/linux/cgroups.md b/pages.uk/linux/cgroups.md new file mode 100644 index 0000000000..4d7cdf0d78 --- /dev/null +++ b/pages.uk/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> Ця команда є псевдонімом для `cgclassify`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr cgclassify` diff --git a/pages.uk/linux/dmesg.md b/pages.uk/linux/dmesg.md new file mode 100644 index 0000000000..e73b8b7d30 --- /dev/null +++ b/pages.uk/linux/dmesg.md @@ -0,0 +1,36 @@ +# dmesg + +> Відобразити повідомлення ядра в `stdout`. +> Більше інформації: . + +- Відобразити повідомлення ядра: + +`dmesg` + +- Відобразити повідомлення про помилки ядра: + +`dmesg --level err` + +- Відобразити повідомлення ядра та продовжити читати нові, подібно до `tail -f` (доступно в ядрах 3.5.0 і новіших): + +`dmesg -w` + +- Відобразити, скільки фізичної пам'яті доступно в цій системі: + +`dmesg | grep -i memory` + +- Відобразити повідомлення ядра по 1 сторінці за раз: + +`dmesg | less` + +- Відобразити повідомлення ядра з міткою часу (доступно в ядрах 3.5.0 і новіших): + +`dmesg -T` + +- Відобразити повідомлення ядра у формі, зрозумілій людині (доступно в ядрах 3.5.0 і новіших): + +`dmesg -H` + +- Розфарбувати виведені дані (доступно в ядрах 3.5.0 і новіших): + +`dmesg -L` diff --git a/pages.uk/linux/dpkg-reconfigure.md b/pages.uk/linux/dpkg-reconfigure.md new file mode 100644 index 0000000000..a50cc8140f --- /dev/null +++ b/pages.uk/linux/dpkg-reconfigure.md @@ -0,0 +1,8 @@ +# dpkg-reconfigure + +> Змінює конфігурацію вже встановленого пакету. +> Більше інформації: . + +- Змінити конфігурацію одного або декількох пакетів: + +`dpkg-reconfigure {{пакунок1 пакунок2 ...}}` diff --git a/pages.uk/linux/ip-route-list.md b/pages.uk/linux/ip-route-list.md new file mode 100644 index 0000000000..8767b962e4 --- /dev/null +++ b/pages.uk/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> Ця команда є псевдонімом для `ip-route-show`. + +- Дивись документацію для оригінальної команди: + +`tldr ip-route-show` diff --git a/pages.uk/linux/journalctl.md b/pages.uk/linux/journalctl.md new file mode 100644 index 0000000000..f3ecf1b027 --- /dev/null +++ b/pages.uk/linux/journalctl.md @@ -0,0 +1,36 @@ +# journalctl + +> Запити до журналу systemd. +> Більше інформації: . + +- Показати всі повідомлення з рівнем пріоритету 3 (помилки) від цього завантаження ([b]oot): + +`journalctl -b --priority={{3}}` + +- Показати всі повідомлення з останнього завантаження: + +`journalctl -b -1` + +- Видалити записи журналу, які старіші за 2 дні: + +`journalctl --vacuum-time={{2d}}` + +- Слідкувати за новими повідомленнями (як `tail -f` для традиційного syslog): + +`journalctl -f` + +- Показати всі повідомлення за конкретним блоком ([u]nit): + +`journalctl -u {{блок}}` + +- Фільтрувати повідомлення в межах діапазону часу (мітка часу або покажчики місця заповнення, як-от «вчора»): + +`journalctl --since {{now|today|yesterday|tomorrow}} --until {{YYYY-MM-DD HH:MM:SS}}` + +- Показати всі повідомлення за певним процесом: + +`journalctl _PID={{pid}}` + +- Показати всі повідомлення за певним виконуваним файлом: + +`journalctl {{шлях/до/виконуваного_файлу}}` diff --git a/pages.uk/linux/man.md b/pages.uk/linux/man.md new file mode 100644 index 0000000000..fdaaf1b3d1 --- /dev/null +++ b/pages.uk/linux/man.md @@ -0,0 +1,32 @@ +# man + +> Форматування та відображення сторінок посібника. +> Більше інформації: . + +- Відобразити довідкову сторінку для команди: + +`man {{команда}}` + +- Відобразити сторінку довідки для команди з розділу 7: + +`man {{7}} {{команда}}` + +- Відобразити усі доступні розділи для команди: + +`man --whatis {{команда}}` + +- Відобразити шлях пошуку довідкових сторінок: + +`man --path` + +- Відобразити розташування довідкової сторінки, а не довідкову сторінку: + +`man --where {{команда}}` + +- Відобразити довідкову сторінку з використанням певної локалі: + +`man --locale={{локаль}} {{команда}}` + +- Знайти довідкові сторінки, які містять рядок пошуку: + +`man --apropos "{{рядок_пошуку}}"` diff --git a/pages.uk/linux/megadl.md b/pages.uk/linux/megadl.md new file mode 100644 index 0000000000..818e36866c --- /dev/null +++ b/pages.uk/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> Ця команда є псевдонімом для `megatools-dl`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr megatools-dl` diff --git a/pages.uk/linux/pacman.md b/pages.uk/linux/pacman.md new file mode 100644 index 0000000000..5b41853040 --- /dev/null +++ b/pages.uk/linux/pacman.md @@ -0,0 +1,38 @@ +# pacman + +> Утиліта для керування пакетами Arch Linux. +> Дивіться також: `pacman-database`, `pacman-deptest`, `pacman-files`, `pacman-key`, `pacman-mirrors`, `pacman-query`, `pacman-remove`, `pacman-sync`, `pacman-upgrade`. +> Для еквівалентних команд в інших менеджерах пакетів дивіться . +> Більше інформації: . + +- Синхронізувати та оновити всі пакети: + +`sudo pacman -Syu` + +- Встановити новий пакет: + +`sudo pacman -S {{пакет}}` + +- Видалити пакет і його залежності: + +`sudo pacman -Rs {{пакет}}` + +- Шукати в базі даних пакети, що містять певний файл: + +`pacman -F "{{ім'я_файлу}}"` + +- Перелічити встановлені пакети та версії: + +`pacman -Q` + +- Перелічити лише явно встановлені пакети та версії: + +`pacman -Qe` + +- Перелічити безхазяйні пакети (встановлені як залежні, але фактично не потрібних для жодного пакета): + +`pacman -Qtdq` + +- Очистити весь кеш Pacman: + +`sudo pacman -Scc` diff --git a/pages.uk/linux/pamac.md b/pages.uk/linux/pamac.md new file mode 100644 index 0000000000..b52f8cbd0a --- /dev/null +++ b/pages.uk/linux/pamac.md @@ -0,0 +1,29 @@ +# pamac + +> Утиліта командного рядка для GUI менеджера пакетів pamac. +> Якщо ви не можете побачити пакети AUR, увімкніть його `/etc/pamac.conf` або в GUI. +> Більше інформації: . + +- Встановити новий пакет: + +`pamac install {{назва_пакета}}` + +- Видалити пакет і його непотрібні залежності (сироти): + +`pamac remove --orphans {{назва_пакета}}` + +- Шукати пакет в базі даних пакетів: + +`pamac search {{назва_пакета}}` + +- Перелічити встановлені пакети: + +`pamac list --installed` + +- Перевірити наявність оновлень пакетів: + +`pamac checkupdates` + +- Оновити всі пакети: + +`pamac upgrade` diff --git a/pages.uk/linux/parted.md b/pages.uk/linux/parted.md new file mode 100644 index 0000000000..83e1cd7b60 --- /dev/null +++ b/pages.uk/linux/parted.md @@ -0,0 +1,37 @@ +# parted + +> Програма для роботи з розділами. +> Дивіться також: `partprobe`. +> Більше інформації: . + +- Перелічити розділи на всіх блокових пристроях: + +`sudo parted --list` + +- Запустити інтерактивний режим із вибраним диском: + +`sudo parted {{/dev/sdX}}` + +- Створити нову таблицю розділів указаного типу міток: + +`sudo parted --script {{/dev/sdX}} mklabel {{aix|amiga|bsd|dvh|gpt|loop|mac|msdos|pc98|sun}}` + +- Показати інформацію про розділ в інтерактивному режимі: + +`print` + +- Вибрати диск в інтерактивному режимі: + +`select {{/dev/sdX}}` + +- Створити розділ на 16 ГБ із зазначеною файловою системою в інтерактивному режимі: + +`mkpart {{primary|logical|extended}} {{btrfs|ext2|ext3|ext4|fat16|fat32|hfs|hfs+|linux-swap|ntfs|reiserfs|udf|xfs}} {{0%}} {{16G}}` + +- Змінити розмір розділу в інтерактивному режимі: + +`resizepart {{/dev/sdXN}} {{кінцева_позиція_розділу}}` + +- Видалити розділ в інтерактивному режимі: + +`rm {{/dev/sdXN}}` diff --git a/pages.uk/linux/systemctl.md b/pages.uk/linux/systemctl.md new file mode 100644 index 0000000000..b2e1001082 --- /dev/null +++ b/pages.uk/linux/systemctl.md @@ -0,0 +1,36 @@ +# systemctl + +> Керуйте системою systemd і диспетчером служб. +> Більше інформації: . + +- Відобразити всі запущені служби: + +`systemctl status` + +- Відобразити список служб, які не запустилися через помилки: + +`systemctl --failed` + +- Запуск/зупинка/перезапуск/перезавантаження служби: + +`systemctl {{start|stop|restart|reload}} {{служба}}` + +- Показати статус служби: + +`systemctl status {{служба}}` + +- Увімкнути/вимкнути запуск служби під час завантаження: + +`systemctl {{enable|disable}} {{служба}}` + +- Маскування/розкриття служби, щоб запобігти ввімкненню та ручній активації: + +`systemctl {{mask|unmask}} {{служба}}` + +- Перезавантажити systemd, шукати нові або змінені пристрої: + +`systemctl daemon-reload` + +- Перевірити, чи ввімкнено службу до автозавантаження: + +`systemctl is-enabled {{служба}}` diff --git a/pages.uk/linux/ubuntu-bug.md b/pages.uk/linux/ubuntu-bug.md new file mode 100644 index 0000000000..73ef519759 --- /dev/null +++ b/pages.uk/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> Ця команда є псевдонімом для `apport-bug`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr apport-bug` diff --git a/pages.uk/linux/uname.md b/pages.uk/linux/uname.md new file mode 100644 index 0000000000..9d8e9a427a --- /dev/null +++ b/pages.uk/linux/uname.md @@ -0,0 +1,36 @@ +# uname + +> Uname відображає інформацію про машину та операційну систему, на якій вона працює. +> Більше інформації: . + +- Відобразити всю інформацію: + +`uname --all` + +- Вивести назву поточного ядра: + +`uname --kernel-name` + +- Вивести поточне ім’я хоста мережевого вузла: + +`uname --nodename` + +- Вивести поточний випуск ядра: + +`uname --kernel-release` + +- Вивести поточну версію ядра: + +`uname --kernel-version` + +- Вивести поточну назву апаратного забезпечення машини: + +`uname --machine` + +- Вивести поточний тип процесора: + +`uname --processor` + +- Вивести назву поточної операційної системи: + +`uname --operating-system` diff --git a/pages.uk/osx/aa.md b/pages.uk/osx/aa.md new file mode 100644 index 0000000000..211917676d --- /dev/null +++ b/pages.uk/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> Ця команда є псевдонімом для `yaa`. + +- Дивись документацію для оригінальної команди: + +`tldr yaa` diff --git a/pages.uk/osx/g[.md b/pages.uk/osx/g[.md new file mode 100644 index 0000000000..e88a71f5a1 --- /dev/null +++ b/pages.uk/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> Ця команда є псевдонімом для `-p linux [`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux [` diff --git a/pages.uk/osx/gawk.md b/pages.uk/osx/gawk.md new file mode 100644 index 0000000000..2547641ba5 --- /dev/null +++ b/pages.uk/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> Ця команда є псевдонімом для `-p linux awk`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux awk` diff --git a/pages.uk/osx/gb2sum.md b/pages.uk/osx/gb2sum.md new file mode 100644 index 0000000000..6dc7c92881 --- /dev/null +++ b/pages.uk/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> Ця команда є псевдонімом для `-p linux b2sum`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux b2sum` diff --git a/pages.uk/osx/gbase32.md b/pages.uk/osx/gbase32.md new file mode 100644 index 0000000000..bb0eca3188 --- /dev/null +++ b/pages.uk/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> Ця команда є псевдонімом для `-p linux base32`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux base32` diff --git a/pages.uk/osx/gbase64.md b/pages.uk/osx/gbase64.md new file mode 100644 index 0000000000..19d703f481 --- /dev/null +++ b/pages.uk/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> Ця команда є псевдонімом для `-p linux base64`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux base64` diff --git a/pages.uk/osx/gbasename.md b/pages.uk/osx/gbasename.md new file mode 100644 index 0000000000..8abd22357a --- /dev/null +++ b/pages.uk/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> Ця команда є псевдонімом для `-p linux basename`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux basename` diff --git a/pages.uk/osx/gbasenc.md b/pages.uk/osx/gbasenc.md new file mode 100644 index 0000000000..a9930ed557 --- /dev/null +++ b/pages.uk/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> Ця команда є псевдонімом для `-p linux basenc`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux basenc` diff --git a/pages.uk/osx/gcat.md b/pages.uk/osx/gcat.md new file mode 100644 index 0000000000..4891f5e8ae --- /dev/null +++ b/pages.uk/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> Ця команда є псевдонімом для `-p linux cat`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux cat` diff --git a/pages.uk/osx/gchcon.md b/pages.uk/osx/gchcon.md new file mode 100644 index 0000000000..e30e070b5e --- /dev/null +++ b/pages.uk/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> Ця команда є псевдонімом для `-p linux chcon`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux chcon` diff --git a/pages.uk/osx/gchgrp.md b/pages.uk/osx/gchgrp.md new file mode 100644 index 0000000000..54ad9d2ca6 --- /dev/null +++ b/pages.uk/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> Ця команда є псевдонімом для `-p linux chgrp`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux chgrp` diff --git a/pages.uk/osx/gchmod.md b/pages.uk/osx/gchmod.md new file mode 100644 index 0000000000..d006f25d95 --- /dev/null +++ b/pages.uk/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> Ця команда є псевдонімом для `-p linux chmod`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux chmod` diff --git a/pages.uk/osx/gchown.md b/pages.uk/osx/gchown.md new file mode 100644 index 0000000000..66dc83b25e --- /dev/null +++ b/pages.uk/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> Ця команда є псевдонімом для `-p linux chown`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux chown` diff --git a/pages.uk/osx/gchroot.md b/pages.uk/osx/gchroot.md new file mode 100644 index 0000000000..549edbb9ea --- /dev/null +++ b/pages.uk/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> Ця команда є псевдонімом для `-p linux chroot`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux chroot` diff --git a/pages.uk/osx/gcksum.md b/pages.uk/osx/gcksum.md new file mode 100644 index 0000000000..cafaad8d42 --- /dev/null +++ b/pages.uk/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> Ця команда є псевдонімом для `-p linux cksum`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux cksum` diff --git a/pages.uk/osx/gcomm.md b/pages.uk/osx/gcomm.md new file mode 100644 index 0000000000..6080068ee4 --- /dev/null +++ b/pages.uk/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> Ця команда є псевдонімом для `-p linux comm`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux comm` diff --git a/pages.uk/osx/gcp.md b/pages.uk/osx/gcp.md new file mode 100644 index 0000000000..8fde3ae0f5 --- /dev/null +++ b/pages.uk/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> Ця команда є псевдонімом для `-p linux cp`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux cp` diff --git a/pages.uk/osx/gcsplit.md b/pages.uk/osx/gcsplit.md new file mode 100644 index 0000000000..c84ef6acee --- /dev/null +++ b/pages.uk/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> Ця команда є псевдонімом для `-p linux csplit`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux csplit` diff --git a/pages.uk/osx/gcut.md b/pages.uk/osx/gcut.md new file mode 100644 index 0000000000..feadefe577 --- /dev/null +++ b/pages.uk/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> Ця команда є псевдонімом для `-p linux cut`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux cut` diff --git a/pages.uk/osx/gdate.md b/pages.uk/osx/gdate.md new file mode 100644 index 0000000000..2b5dbeb282 --- /dev/null +++ b/pages.uk/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> Ця команда є псевдонімом для `-p linux date`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux date` diff --git a/pages.uk/osx/gdd.md b/pages.uk/osx/gdd.md new file mode 100644 index 0000000000..a5e04c9aa6 --- /dev/null +++ b/pages.uk/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> Ця команда є псевдонімом для `-p linux dd`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux dd` diff --git a/pages.uk/osx/gdf.md b/pages.uk/osx/gdf.md new file mode 100644 index 0000000000..cbd5df9641 --- /dev/null +++ b/pages.uk/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> Ця команда є псевдонімом для `-p linux df`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux df` diff --git a/pages.uk/osx/gdir.md b/pages.uk/osx/gdir.md new file mode 100644 index 0000000000..108e00a80a --- /dev/null +++ b/pages.uk/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> Ця команда є псевдонімом для `-p linux dir`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux dir` diff --git a/pages.uk/osx/gdircolors.md b/pages.uk/osx/gdircolors.md new file mode 100644 index 0000000000..552d61e46d --- /dev/null +++ b/pages.uk/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> Ця команда є псевдонімом для `-p linux dircolors`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux dircolors` diff --git a/pages.uk/osx/gdirname.md b/pages.uk/osx/gdirname.md new file mode 100644 index 0000000000..c190dc2474 --- /dev/null +++ b/pages.uk/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> Ця команда є псевдонімом для `-p linux dirname`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux dirname` diff --git a/pages.uk/osx/gdnsdomainname.md b/pages.uk/osx/gdnsdomainname.md new file mode 100644 index 0000000000..eb71ea4a68 --- /dev/null +++ b/pages.uk/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> Ця команда є псевдонімом для `-p linux dnsdomainname`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux dnsdomainname` diff --git a/pages.uk/osx/gecho.md b/pages.uk/osx/gecho.md new file mode 100644 index 0000000000..4016e3fee5 --- /dev/null +++ b/pages.uk/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> Ця команда є псевдонімом для `-p linux echo`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux echo` diff --git a/pages.uk/osx/ged.md b/pages.uk/osx/ged.md new file mode 100644 index 0000000000..9a39d0cc50 --- /dev/null +++ b/pages.uk/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> Ця команда є псевдонімом для `-p linux ed`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux ed` diff --git a/pages.uk/osx/gegrep.md b/pages.uk/osx/gegrep.md new file mode 100644 index 0000000000..2b3e3fd858 --- /dev/null +++ b/pages.uk/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> Ця команда є псевдонімом для `-p linux egrep`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux egrep` diff --git a/pages.uk/osx/genv.md b/pages.uk/osx/genv.md new file mode 100644 index 0000000000..5d9340da46 --- /dev/null +++ b/pages.uk/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> Ця команда є псевдонімом для `-p linux env`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux env` diff --git a/pages.uk/osx/gexpand.md b/pages.uk/osx/gexpand.md new file mode 100644 index 0000000000..7bdc795643 --- /dev/null +++ b/pages.uk/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> Ця команда є псевдонімом для `-p linux expand`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux expand` diff --git a/pages.uk/osx/gexpr.md b/pages.uk/osx/gexpr.md new file mode 100644 index 0000000000..74732999b7 --- /dev/null +++ b/pages.uk/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> Ця команда є псевдонімом для `-p linux expr`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux expr` diff --git a/pages.uk/osx/gfactor.md b/pages.uk/osx/gfactor.md new file mode 100644 index 0000000000..a0dd002a11 --- /dev/null +++ b/pages.uk/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> Ця команда є псевдонімом для `-p linux factor`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux factor` diff --git a/pages.uk/osx/gfalse.md b/pages.uk/osx/gfalse.md new file mode 100644 index 0000000000..94ba3d470c --- /dev/null +++ b/pages.uk/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> Ця команда є псевдонімом для `-p linux false`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux false` diff --git a/pages.uk/osx/gfgrep.md b/pages.uk/osx/gfgrep.md new file mode 100644 index 0000000000..6789203b9c --- /dev/null +++ b/pages.uk/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> Ця команда є псевдонімом для `-p linux fgrep`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux fgrep` diff --git a/pages.uk/osx/gfind.md b/pages.uk/osx/gfind.md new file mode 100644 index 0000000000..c41825e87e --- /dev/null +++ b/pages.uk/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> Ця команда є псевдонімом для `-p linux find`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux find` diff --git a/pages.uk/osx/gfmt.md b/pages.uk/osx/gfmt.md new file mode 100644 index 0000000000..8f5ea5d302 --- /dev/null +++ b/pages.uk/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> Ця команда є псевдонімом для `-p linux fmt`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux fmt` diff --git a/pages.uk/osx/gfold.md b/pages.uk/osx/gfold.md new file mode 100644 index 0000000000..f1b716aa84 --- /dev/null +++ b/pages.uk/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> Ця команда є псевдонімом для `-p linux fold`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux fold` diff --git a/pages.uk/osx/gftp.md b/pages.uk/osx/gftp.md new file mode 100644 index 0000000000..92a973deff --- /dev/null +++ b/pages.uk/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> Ця команда є псевдонімом для `-p linux ftp`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux ftp` diff --git a/pages.uk/osx/ggrep.md b/pages.uk/osx/ggrep.md new file mode 100644 index 0000000000..9436ca7f65 --- /dev/null +++ b/pages.uk/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> Ця команда є псевдонімом для `-p linux grep`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux grep` diff --git a/pages.uk/osx/ggroups.md b/pages.uk/osx/ggroups.md new file mode 100644 index 0000000000..360c5dfea6 --- /dev/null +++ b/pages.uk/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> Ця команда є псевдонімом для `-p linux groups`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux groups` diff --git a/pages.uk/osx/ghead.md b/pages.uk/osx/ghead.md new file mode 100644 index 0000000000..964ec6e80d --- /dev/null +++ b/pages.uk/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> Ця команда є псевдонімом для `-p linux head`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux head` diff --git a/pages.uk/osx/ghostid.md b/pages.uk/osx/ghostid.md new file mode 100644 index 0000000000..304932f109 --- /dev/null +++ b/pages.uk/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> Ця команда є псевдонімом для `-p linux hostid`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux hostid` diff --git a/pages.uk/osx/ghostname.md b/pages.uk/osx/ghostname.md new file mode 100644 index 0000000000..4394523e53 --- /dev/null +++ b/pages.uk/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> Ця команда є псевдонімом для `-p linux hostname`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux hostname` diff --git a/pages.uk/osx/gid.md b/pages.uk/osx/gid.md new file mode 100644 index 0000000000..9e72569061 --- /dev/null +++ b/pages.uk/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> Ця команда є псевдонімом для `-p linux id`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux id` diff --git a/pages.uk/osx/gifconfig.md b/pages.uk/osx/gifconfig.md new file mode 100644 index 0000000000..4c05f800ca --- /dev/null +++ b/pages.uk/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> Ця команда є псевдонімом для `-p linux ifconfig`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux ifconfig` diff --git a/pages.uk/osx/gindent.md b/pages.uk/osx/gindent.md new file mode 100644 index 0000000000..da5107c35c --- /dev/null +++ b/pages.uk/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> Ця команда є псевдонімом для `-p linux indent`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux indent` diff --git a/pages.uk/osx/ginstall.md b/pages.uk/osx/ginstall.md new file mode 100644 index 0000000000..35d343fb70 --- /dev/null +++ b/pages.uk/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> Ця команда є псевдонімом для `-p linux install`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux install` diff --git a/pages.uk/osx/gjoin.md b/pages.uk/osx/gjoin.md new file mode 100644 index 0000000000..3b9eacc09b --- /dev/null +++ b/pages.uk/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> Ця команда є псевдонімом для `-p linux join`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux join` diff --git a/pages.uk/osx/gkill.md b/pages.uk/osx/gkill.md new file mode 100644 index 0000000000..ac69f07872 --- /dev/null +++ b/pages.uk/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> Ця команда є псевдонімом для `-p linux kill`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux kill` diff --git a/pages.uk/osx/glibtool.md b/pages.uk/osx/glibtool.md new file mode 100644 index 0000000000..895bd10895 --- /dev/null +++ b/pages.uk/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> Ця команда є псевдонімом для `-p linux libtool`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux libtool` diff --git a/pages.uk/osx/glibtoolize.md b/pages.uk/osx/glibtoolize.md new file mode 100644 index 0000000000..d9bd89a117 --- /dev/null +++ b/pages.uk/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> Ця команда є псевдонімом для `-p linux libtoolize`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux libtoolize` diff --git a/pages.uk/osx/glink.md b/pages.uk/osx/glink.md new file mode 100644 index 0000000000..7fdfa1d5e2 --- /dev/null +++ b/pages.uk/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> Ця команда є псевдонімом для `-p linux link`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux link` diff --git a/pages.uk/osx/gln.md b/pages.uk/osx/gln.md new file mode 100644 index 0000000000..541f3f0864 --- /dev/null +++ b/pages.uk/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> Ця команда є псевдонімом для `-p linux ln`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux ln` diff --git a/pages.uk/osx/glocate.md b/pages.uk/osx/glocate.md new file mode 100644 index 0000000000..8493e6d9b6 --- /dev/null +++ b/pages.uk/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> Ця команда є псевдонімом для `-p linux locate`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux locate` diff --git a/pages.uk/osx/glogger.md b/pages.uk/osx/glogger.md new file mode 100644 index 0000000000..240c50a019 --- /dev/null +++ b/pages.uk/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> Ця команда є псевдонімом для `-p linux logger`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux logger` diff --git a/pages.uk/osx/glogname.md b/pages.uk/osx/glogname.md new file mode 100644 index 0000000000..bcc1d46d1a --- /dev/null +++ b/pages.uk/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> Ця команда є псевдонімом для `-p linux logname`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux logname` diff --git a/pages.uk/osx/gls.md b/pages.uk/osx/gls.md new file mode 100644 index 0000000000..aad415ae9f --- /dev/null +++ b/pages.uk/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> Ця команда є псевдонімом для `-p linux ls`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux ls` diff --git a/pages.uk/osx/gmake.md b/pages.uk/osx/gmake.md new file mode 100644 index 0000000000..78bc10cfd7 --- /dev/null +++ b/pages.uk/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> Ця команда є псевдонімом для `-p linux make`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux make` diff --git a/pages.uk/osx/gmd5sum.md b/pages.uk/osx/gmd5sum.md new file mode 100644 index 0000000000..1c4ba41158 --- /dev/null +++ b/pages.uk/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> Ця команда є псевдонімом для `-p linux md5sum`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux md5sum` diff --git a/pages.uk/osx/gmkdir.md b/pages.uk/osx/gmkdir.md new file mode 100644 index 0000000000..17592404ee --- /dev/null +++ b/pages.uk/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> Ця команда є псевдонімом для `-p linux mkdir`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux mkdir` diff --git a/pages.uk/osx/gmkfifo.md b/pages.uk/osx/gmkfifo.md new file mode 100644 index 0000000000..41acbc1119 --- /dev/null +++ b/pages.uk/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> Ця команда є псевдонімом для `-p linux mkfifo`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux mkfifo` diff --git a/pages.uk/osx/gmknod.md b/pages.uk/osx/gmknod.md new file mode 100644 index 0000000000..24a4101612 --- /dev/null +++ b/pages.uk/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> Ця команда є псевдонімом для `-p linux mknod`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux mknod` diff --git a/pages.uk/osx/gmktemp.md b/pages.uk/osx/gmktemp.md new file mode 100644 index 0000000000..a98c8a38e1 --- /dev/null +++ b/pages.uk/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> Ця команда є псевдонімом для `-p linux mktemp`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux mktemp` diff --git a/pages.uk/osx/gmv.md b/pages.uk/osx/gmv.md new file mode 100644 index 0000000000..9ef7c26ed6 --- /dev/null +++ b/pages.uk/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> Ця команда є псевдонімом для `-p linux mv`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux mv` diff --git a/pages.uk/osx/gnice.md b/pages.uk/osx/gnice.md new file mode 100644 index 0000000000..4a4c09bcd3 --- /dev/null +++ b/pages.uk/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> Ця команда є псевдонімом для `-p linux nice`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux nice` diff --git a/pages.uk/osx/gnl.md b/pages.uk/osx/gnl.md new file mode 100644 index 0000000000..96c9c7b319 --- /dev/null +++ b/pages.uk/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> Ця команда є псевдонімом для `-p linux nl`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux nl` diff --git a/pages.uk/osx/gnohup.md b/pages.uk/osx/gnohup.md new file mode 100644 index 0000000000..f23f4ab088 --- /dev/null +++ b/pages.uk/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> Ця команда є псевдонімом для `-p linux nohup`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux nohup` diff --git a/pages.uk/osx/gnproc.md b/pages.uk/osx/gnproc.md new file mode 100644 index 0000000000..c2f64329ca --- /dev/null +++ b/pages.uk/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> Ця команда є псевдонімом для `-p linux nproc`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux nproc` diff --git a/pages.uk/osx/gnumfmt.md b/pages.uk/osx/gnumfmt.md new file mode 100644 index 0000000000..0bd76b94ff --- /dev/null +++ b/pages.uk/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> Ця команда є псевдонімом для `-p linux numfmt`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux numfmt` diff --git a/pages.uk/osx/god.md b/pages.uk/osx/god.md new file mode 100644 index 0000000000..6f536396dd --- /dev/null +++ b/pages.uk/osx/god.md @@ -0,0 +1,7 @@ +# god + +> Ця команда є псевдонімом для `-p linux od`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux od` diff --git a/pages.uk/osx/gpaste.md b/pages.uk/osx/gpaste.md new file mode 100644 index 0000000000..3b943e2896 --- /dev/null +++ b/pages.uk/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> Ця команда є псевдонімом для `-p linux paste`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux paste` diff --git a/pages.uk/osx/gpathchk.md b/pages.uk/osx/gpathchk.md new file mode 100644 index 0000000000..bc637f67c4 --- /dev/null +++ b/pages.uk/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> Ця команда є псевдонімом для `-p linux pathchk`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux pathchk` diff --git a/pages.uk/osx/gping.md b/pages.uk/osx/gping.md new file mode 100644 index 0000000000..38b5c43b9c --- /dev/null +++ b/pages.uk/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> Ця команда є псевдонімом для `-p linux ping`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux ping` diff --git a/pages.uk/osx/gping6.md b/pages.uk/osx/gping6.md new file mode 100644 index 0000000000..dd94dd238f --- /dev/null +++ b/pages.uk/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> Ця команда є псевдонімом для `-p linux ping6`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux ping6` diff --git a/pages.uk/osx/gpinky.md b/pages.uk/osx/gpinky.md new file mode 100644 index 0000000000..22d7c08814 --- /dev/null +++ b/pages.uk/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> Ця команда є псевдонімом для `-p linux pinky`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux pinky` diff --git a/pages.uk/osx/gpr.md b/pages.uk/osx/gpr.md new file mode 100644 index 0000000000..7572b9921f --- /dev/null +++ b/pages.uk/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> Ця команда є псевдонімом для `-p linux pr`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux pr` diff --git a/pages.uk/osx/gprintenv.md b/pages.uk/osx/gprintenv.md new file mode 100644 index 0000000000..eb00a358a5 --- /dev/null +++ b/pages.uk/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> Ця команда є псевдонімом для `-p linux printenv`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux printenv` diff --git a/pages.uk/osx/gprintf.md b/pages.uk/osx/gprintf.md new file mode 100644 index 0000000000..770d9e1576 --- /dev/null +++ b/pages.uk/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> Ця команда є псевдонімом для `-p linux printf`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux printf` diff --git a/pages.uk/osx/gptx.md b/pages.uk/osx/gptx.md new file mode 100644 index 0000000000..064967c30d --- /dev/null +++ b/pages.uk/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> Ця команда є псевдонімом для `-p linux ptx`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux ptx` diff --git a/pages.uk/osx/gpwd.md b/pages.uk/osx/gpwd.md new file mode 100644 index 0000000000..171b0bf492 --- /dev/null +++ b/pages.uk/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> Ця команда є псевдонімом для `-p linux pwd`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux pwd` diff --git a/pages.uk/osx/grcp.md b/pages.uk/osx/grcp.md new file mode 100644 index 0000000000..915c559fa4 --- /dev/null +++ b/pages.uk/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> Ця команда є псевдонімом для `-p linux rcp`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux rcp` diff --git a/pages.uk/osx/greadlink.md b/pages.uk/osx/greadlink.md new file mode 100644 index 0000000000..16ba5977d7 --- /dev/null +++ b/pages.uk/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> Ця команда є псевдонімом для `-p linux readlink`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux readlink` diff --git a/pages.uk/osx/grealpath.md b/pages.uk/osx/grealpath.md new file mode 100644 index 0000000000..3cc3c02cb8 --- /dev/null +++ b/pages.uk/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> Ця команда є псевдонімом для `-p linux realpath`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux realpath` diff --git a/pages.uk/osx/grexec.md b/pages.uk/osx/grexec.md new file mode 100644 index 0000000000..3c51c5ed41 --- /dev/null +++ b/pages.uk/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> Ця команда є псевдонімом для `-p linux rexec`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux rexec` diff --git a/pages.uk/osx/grlogin.md b/pages.uk/osx/grlogin.md new file mode 100644 index 0000000000..d31d88fcf9 --- /dev/null +++ b/pages.uk/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> Ця команда є псевдонімом для `-p linux rlogin`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux rlogin` diff --git a/pages.uk/osx/grm.md b/pages.uk/osx/grm.md new file mode 100644 index 0000000000..4a041cf64a --- /dev/null +++ b/pages.uk/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> Ця команда є псевдонімом для `-p linux rm`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux rm` diff --git a/pages.uk/osx/grmdir.md b/pages.uk/osx/grmdir.md new file mode 100644 index 0000000000..0930e3fd91 --- /dev/null +++ b/pages.uk/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> Ця команда є псевдонімом для `-p linux rmdir`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux rmdir` diff --git a/pages.uk/osx/grsh.md b/pages.uk/osx/grsh.md new file mode 100644 index 0000000000..38212cc750 --- /dev/null +++ b/pages.uk/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> Ця команда є псевдонімом для `-p linux rsh`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux rsh` diff --git a/pages.uk/osx/gruncon.md b/pages.uk/osx/gruncon.md new file mode 100644 index 0000000000..bf726ffd1d --- /dev/null +++ b/pages.uk/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> Ця команда є псевдонімом для `-p linux runcon`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux runcon` diff --git a/pages.uk/osx/gsed.md b/pages.uk/osx/gsed.md new file mode 100644 index 0000000000..6aca70bf0a --- /dev/null +++ b/pages.uk/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> Ця команда є псевдонімом для `-p linux sed`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux sed` diff --git a/pages.uk/osx/gseq.md b/pages.uk/osx/gseq.md new file mode 100644 index 0000000000..d676956b84 --- /dev/null +++ b/pages.uk/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> Ця команда є псевдонімом для `-p linux seq`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux seq` diff --git a/pages.uk/osx/gsha1sum.md b/pages.uk/osx/gsha1sum.md new file mode 100644 index 0000000000..e9e50137c7 --- /dev/null +++ b/pages.uk/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> Ця команда є псевдонімом для `-p linux sha1sum`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux sha1sum` diff --git a/pages.uk/osx/gsha224sum.md b/pages.uk/osx/gsha224sum.md new file mode 100644 index 0000000000..7c610bf2df --- /dev/null +++ b/pages.uk/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> Ця команда є псевдонімом для `-p linux sha224sum`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux sha224sum` diff --git a/pages.uk/osx/gsha256sum.md b/pages.uk/osx/gsha256sum.md new file mode 100644 index 0000000000..fe171ae481 --- /dev/null +++ b/pages.uk/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> Ця команда є псевдонімом для `-p linux sha256sum`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux sha256sum` diff --git a/pages.uk/osx/gsha384sum.md b/pages.uk/osx/gsha384sum.md new file mode 100644 index 0000000000..fde6401815 --- /dev/null +++ b/pages.uk/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> Ця команда є псевдонімом для `-p linux sha384sum`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux sha384sum` diff --git a/pages.uk/osx/gsha512sum.md b/pages.uk/osx/gsha512sum.md new file mode 100644 index 0000000000..c0c74caed6 --- /dev/null +++ b/pages.uk/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> Ця команда є псевдонімом для `-p linux sha512sum`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux sha512sum` diff --git a/pages.uk/osx/gshred.md b/pages.uk/osx/gshred.md new file mode 100644 index 0000000000..0c85f3ed75 --- /dev/null +++ b/pages.uk/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> Ця команда є псевдонімом для `-p linux shred`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux shred` diff --git a/pages.uk/osx/gshuf.md b/pages.uk/osx/gshuf.md new file mode 100644 index 0000000000..d25653ace0 --- /dev/null +++ b/pages.uk/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> Ця команда є псевдонімом для `-p linux shuf`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux shuf` diff --git a/pages.uk/osx/gsleep.md b/pages.uk/osx/gsleep.md new file mode 100644 index 0000000000..754a3ff9b2 --- /dev/null +++ b/pages.uk/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> Ця команда є псевдонімом для `-p linux sleep`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux sleep` diff --git a/pages.uk/osx/gsort.md b/pages.uk/osx/gsort.md new file mode 100644 index 0000000000..bbb8af1da8 --- /dev/null +++ b/pages.uk/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> Ця команда є псевдонімом для `-p linux sort`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux sort` diff --git a/pages.uk/osx/gsplit.md b/pages.uk/osx/gsplit.md new file mode 100644 index 0000000000..f3b9092301 --- /dev/null +++ b/pages.uk/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> Ця команда є псевдонімом для `-p linux split`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux split` diff --git a/pages.uk/osx/gstat.md b/pages.uk/osx/gstat.md new file mode 100644 index 0000000000..d0a7de65b3 --- /dev/null +++ b/pages.uk/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> Ця команда є псевдонімом для `-p linux stat`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux stat` diff --git a/pages.uk/osx/gstdbuf.md b/pages.uk/osx/gstdbuf.md new file mode 100644 index 0000000000..a05f44bb8d --- /dev/null +++ b/pages.uk/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> Ця команда є псевдонімом для `-p linux stdbuf`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux stdbuf` diff --git a/pages.uk/osx/gstty.md b/pages.uk/osx/gstty.md new file mode 100644 index 0000000000..3bb5c46c0a --- /dev/null +++ b/pages.uk/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> Ця команда є псевдонімом для `-p linux stty`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux stty` diff --git a/pages.uk/osx/gsum.md b/pages.uk/osx/gsum.md new file mode 100644 index 0000000000..5dd2686600 --- /dev/null +++ b/pages.uk/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> Ця команда є псевдонімом для `-p linux sum`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux sum` diff --git a/pages.uk/osx/gsync.md b/pages.uk/osx/gsync.md new file mode 100644 index 0000000000..e409252c4b --- /dev/null +++ b/pages.uk/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> Ця команда є псевдонімом для `-p linux sync`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux sync` diff --git a/pages.uk/osx/gtac.md b/pages.uk/osx/gtac.md new file mode 100644 index 0000000000..3fa4c30d44 --- /dev/null +++ b/pages.uk/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> Ця команда є псевдонімом для `-p linux tac`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux tac` diff --git a/pages.uk/osx/gtail.md b/pages.uk/osx/gtail.md new file mode 100644 index 0000000000..633937a561 --- /dev/null +++ b/pages.uk/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> Ця команда є псевдонімом для `-p linux tail`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux tail` diff --git a/pages.uk/osx/gtalk.md b/pages.uk/osx/gtalk.md new file mode 100644 index 0000000000..9364c30b69 --- /dev/null +++ b/pages.uk/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> Ця команда є псевдонімом для `-p linux talk`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux talk` diff --git a/pages.uk/osx/gtar.md b/pages.uk/osx/gtar.md new file mode 100644 index 0000000000..1f107649fc --- /dev/null +++ b/pages.uk/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> Ця команда є псевдонімом для `-p linux tar`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux tar` diff --git a/pages.uk/osx/gtee.md b/pages.uk/osx/gtee.md new file mode 100644 index 0000000000..ab6436d6b2 --- /dev/null +++ b/pages.uk/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> Ця команда є псевдонімом для `-p linux tee`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux tee` diff --git a/pages.uk/osx/gtelnet.md b/pages.uk/osx/gtelnet.md new file mode 100644 index 0000000000..4e8fe1961a --- /dev/null +++ b/pages.uk/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> Ця команда є псевдонімом для `-p linux telnet`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux telnet` diff --git a/pages.uk/osx/gtest.md b/pages.uk/osx/gtest.md new file mode 100644 index 0000000000..bab943b174 --- /dev/null +++ b/pages.uk/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> Ця команда є псевдонімом для `-p linux test`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux test` diff --git a/pages.uk/osx/gtftp.md b/pages.uk/osx/gtftp.md new file mode 100644 index 0000000000..a1efe86cc4 --- /dev/null +++ b/pages.uk/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> Ця команда є псевдонімом для `-p linux tftp`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux tftp` diff --git a/pages.uk/osx/gtime.md b/pages.uk/osx/gtime.md new file mode 100644 index 0000000000..d6e33630c9 --- /dev/null +++ b/pages.uk/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> Ця команда є псевдонімом для `-p linux time`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux time` diff --git a/pages.uk/osx/gtimeout.md b/pages.uk/osx/gtimeout.md new file mode 100644 index 0000000000..08b3272648 --- /dev/null +++ b/pages.uk/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> Ця команда є псевдонімом для `-p linux timeout`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux timeout` diff --git a/pages.uk/osx/gtouch.md b/pages.uk/osx/gtouch.md new file mode 100644 index 0000000000..d3006bbbda --- /dev/null +++ b/pages.uk/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> Ця команда є псевдонімом для `-p linux touch`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux touch` diff --git a/pages.uk/osx/gtr.md b/pages.uk/osx/gtr.md new file mode 100644 index 0000000000..ca15918f1f --- /dev/null +++ b/pages.uk/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> Ця команда є псевдонімом для `-p linux tr`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux tr` diff --git a/pages.uk/osx/gtraceroute.md b/pages.uk/osx/gtraceroute.md new file mode 100644 index 0000000000..110bcee9bc --- /dev/null +++ b/pages.uk/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> Ця команда є псевдонімом для `-p linux traceroute`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux traceroute` diff --git a/pages.uk/osx/gtrue.md b/pages.uk/osx/gtrue.md new file mode 100644 index 0000000000..b1c81c853e --- /dev/null +++ b/pages.uk/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> Ця команда є псевдонімом для `-p linux true`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux true` diff --git a/pages.uk/osx/gtruncate.md b/pages.uk/osx/gtruncate.md new file mode 100644 index 0000000000..81fa686dbf --- /dev/null +++ b/pages.uk/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> Ця команда є псевдонімом для `-p linux truncate`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux truncate` diff --git a/pages.uk/osx/gtsort.md b/pages.uk/osx/gtsort.md new file mode 100644 index 0000000000..a7046d9e5e --- /dev/null +++ b/pages.uk/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> Ця команда є псевдонімом для `-p linux tsort`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux tsort` diff --git a/pages.uk/osx/gtty.md b/pages.uk/osx/gtty.md new file mode 100644 index 0000000000..063a700daf --- /dev/null +++ b/pages.uk/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> Ця команда є псевдонімом для `-p linux tty`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux tty` diff --git a/pages.uk/osx/guname.md b/pages.uk/osx/guname.md new file mode 100644 index 0000000000..45d64b525b --- /dev/null +++ b/pages.uk/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> Ця команда є псевдонімом для `-p linux uname`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux uname` diff --git a/pages.uk/osx/gunexpand.md b/pages.uk/osx/gunexpand.md new file mode 100644 index 0000000000..8bbb3674cc --- /dev/null +++ b/pages.uk/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> Ця команда є псевдонімом для `-p linux unexpand`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux unexpand` diff --git a/pages.uk/osx/guniq.md b/pages.uk/osx/guniq.md new file mode 100644 index 0000000000..de6aebda0e --- /dev/null +++ b/pages.uk/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> Ця команда є псевдонімом для `-p linux uniq`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux uniq` diff --git a/pages.uk/osx/gunits.md b/pages.uk/osx/gunits.md new file mode 100644 index 0000000000..6e5363611b --- /dev/null +++ b/pages.uk/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> Ця команда є псевдонімом для `-p linux units`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux units` diff --git a/pages.uk/osx/gunlink.md b/pages.uk/osx/gunlink.md new file mode 100644 index 0000000000..6eb457d0da --- /dev/null +++ b/pages.uk/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> Ця команда є псевдонімом для `-p linux unlink`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux unlink` diff --git a/pages.uk/osx/gupdatedb.md b/pages.uk/osx/gupdatedb.md new file mode 100644 index 0000000000..d150bfdc76 --- /dev/null +++ b/pages.uk/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> Ця команда є псевдонімом для `-p linux updatedb`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux updatedb` diff --git a/pages.uk/osx/guptime.md b/pages.uk/osx/guptime.md new file mode 100644 index 0000000000..5c9442df19 --- /dev/null +++ b/pages.uk/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> Ця команда є псевдонімом для `-p linux uptime`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux uptime` diff --git a/pages.uk/osx/gusers.md b/pages.uk/osx/gusers.md new file mode 100644 index 0000000000..1b2efc3523 --- /dev/null +++ b/pages.uk/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> Ця команда є псевдонімом для `-p linux users`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux users` diff --git a/pages.uk/osx/gvdir.md b/pages.uk/osx/gvdir.md new file mode 100644 index 0000000000..9f73e417e1 --- /dev/null +++ b/pages.uk/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> Ця команда є псевдонімом для `-p linux vdir`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux vdir` diff --git a/pages.uk/osx/gwc.md b/pages.uk/osx/gwc.md new file mode 100644 index 0000000000..1d8781d550 --- /dev/null +++ b/pages.uk/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> Ця команда є псевдонімом для `-p linux wc`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux wc` diff --git a/pages.uk/osx/gwhich.md b/pages.uk/osx/gwhich.md new file mode 100644 index 0000000000..dd49b935ef --- /dev/null +++ b/pages.uk/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> Ця команда є псевдонімом для `-p linux which`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux which` diff --git a/pages.uk/osx/gwho.md b/pages.uk/osx/gwho.md new file mode 100644 index 0000000000..6af3fbf27a --- /dev/null +++ b/pages.uk/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> Ця команда є псевдонімом для `-p linux who`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux who` diff --git a/pages.uk/osx/gwhoami.md b/pages.uk/osx/gwhoami.md new file mode 100644 index 0000000000..d3b633ed0e --- /dev/null +++ b/pages.uk/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> Ця команда є псевдонімом для `-p linux whoami`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux whoami` diff --git a/pages.uk/osx/gwhois.md b/pages.uk/osx/gwhois.md new file mode 100644 index 0000000000..9144ecb3cc --- /dev/null +++ b/pages.uk/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> Ця команда є псевдонімом для `-p linux whois`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux whois` diff --git a/pages.uk/osx/gxargs.md b/pages.uk/osx/gxargs.md new file mode 100644 index 0000000000..de5ece1501 --- /dev/null +++ b/pages.uk/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> Ця команда є псевдонімом для `-p linux xargs`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux xargs` diff --git a/pages.uk/osx/gyes.md b/pages.uk/osx/gyes.md new file mode 100644 index 0000000000..1a640cf1a3 --- /dev/null +++ b/pages.uk/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> Ця команда є псевдонімом для `-p linux yes`. + +- Дивись документацію для оригінальної команди: + +`tldr -p linux yes` diff --git a/pages.uk/osx/launchd.md b/pages.uk/osx/launchd.md new file mode 100644 index 0000000000..a1ec489d35 --- /dev/null +++ b/pages.uk/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> Ця команда є псевдонімом для `launchctl`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr launchctl` diff --git a/pages.uk/windows/chrome.md b/pages.uk/windows/chrome.md new file mode 100644 index 0000000000..ea9850d6a7 --- /dev/null +++ b/pages.uk/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> Ця команда є псевдонімом для `chromium`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr chromium` diff --git a/pages.uk/windows/cpush.md b/pages.uk/windows/cpush.md new file mode 100644 index 0000000000..e22822fa8a --- /dev/null +++ b/pages.uk/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> Ця команда є псевдонімом для `choco-push`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr choco-push` diff --git a/pages.uk/windows/curl.md b/pages.uk/windows/curl.md new file mode 100644 index 0000000000..ea9956fdd5 --- /dev/null +++ b/pages.uk/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> Ця команда є псевдонімом для `curl -p common`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr curl -p common` diff --git a/pages.uk/windows/iwr.md b/pages.uk/windows/iwr.md new file mode 100644 index 0000000000..566cccbcc2 --- /dev/null +++ b/pages.uk/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> Ця команда є псевдонімом для `invoke-webrequest`. + +- Дивись документацію для оригінальної команди: + +`tldr invoke-webrequest` diff --git a/pages.uk/windows/pwsh-where.md b/pages.uk/windows/pwsh-where.md new file mode 100644 index 0000000000..a5e2c9bbce --- /dev/null +++ b/pages.uk/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> Ця команда є псевдонімом для `Where-Object`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr Where-Object` diff --git a/pages.uk/windows/rd.md b/pages.uk/windows/rd.md new file mode 100644 index 0000000000..12f65c476c --- /dev/null +++ b/pages.uk/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> Ця команда є псевдонімом для `rmdir`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr rmdir` diff --git a/pages.uk/windows/sls.md b/pages.uk/windows/sls.md new file mode 100644 index 0000000000..5a47de69de --- /dev/null +++ b/pages.uk/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> Ця команда є псевдонімом для `where-object`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr where-object` diff --git a/pages.uk/windows/wget.md b/pages.uk/windows/wget.md new file mode 100644 index 0000000000..670aaeeed8 --- /dev/null +++ b/pages.uk/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> Ця команда є псевдонімом для `wget -p common`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr wget -p common` diff --git a/pages.uz/android/bugreport.md b/pages.uz/android/bugreport.md index e744d50383..0e15afe5c2 100644 --- a/pages.uz/android/bugreport.md +++ b/pages.uz/android/bugreport.md @@ -2,7 +2,7 @@ > Android xatolik xisobotini ko'rsatish. > Bu buyruq faqat `adb shell` orqali amalga oshiriladi. -> Ko'proq malumot: . +> Ko'proq malumot: . - Android qurulmasida to'liq xatoliklar xabarini ko'rsatish: diff --git a/pages.uz/android/bugreportz.md b/pages.uz/android/bugreportz.md index 10d55f5079..0fb0691a39 100644 --- a/pages.uz/android/bugreportz.md +++ b/pages.uz/android/bugreportz.md @@ -2,7 +2,7 @@ > Arxivlangan Android xatolik xisoboti. > Bu buyruq faqat `adb shell` orqali amalga oshiriladi. -> Ko'proq malumot: . +> Ko'proq malumot: . - Android qurulmasida to'liq arxivlangan xatoliklar xisobotini yaratish: diff --git a/pages.uz/android/cmd.md b/pages.uz/android/cmd.md index 886d1fc5ad..5bf3688493 100644 --- a/pages.uz/android/cmd.md +++ b/pages.uz/android/cmd.md @@ -1,7 +1,7 @@ # cmd > Android xizmatlar boshqaruvchisi. -> Ko'proq malumot: . +> Ko'proq malumot: . - Barcha bajarilayotgan xizmatlarni ko'rsatish: diff --git a/pages.zh/android/bugreport.md b/pages.zh/android/bugreport.md index 84aba802cc..5b761d8af4 100644 --- a/pages.zh/android/bugreport.md +++ b/pages.zh/android/bugreport.md @@ -2,7 +2,7 @@ > 显示安卓的 Bug 报告。 > 该命令只能通过 `adb shell` 使用。 -> 更多信息:. +> 更多信息:. - 显示 Android 设备的完整错误报告: diff --git a/pages.zh/android/bugreportz.md b/pages.zh/android/bugreportz.md index 4b0cde7be5..aafafcf2bf 100644 --- a/pages.zh/android/bugreportz.md +++ b/pages.zh/android/bugreportz.md @@ -2,7 +2,7 @@ > 生成一个压缩的 Android 错误报告。 > 此命令只能通过 `adb shell` 使用。 -> 更多信息:. +> 更多信息:. - 生成一个完整的 Android 设备压缩错误报告: diff --git a/pages.zh/android/cmd.md b/pages.zh/android/cmd.md index d91d8781d5..d0f210c1b0 100644 --- a/pages.zh/android/cmd.md +++ b/pages.zh/android/cmd.md @@ -1,7 +1,7 @@ # cmd > Android 服务管理器。 -> 更多信息:. +> 更多信息:. - 列出所有正在运行的服务: diff --git a/pages.zh/android/screencap.md b/pages.zh/android/screencap.md new file mode 100644 index 0000000000..e2a1d40815 --- /dev/null +++ b/pages.zh/android/screencap.md @@ -0,0 +1,9 @@ +# screencap + +> 捕获移动设备显示器的屏幕截图。 +> 此命令只能通过 `adb shell` 使用。 +> 更多信息:. + +- 捕获屏幕截图: + +`screencap {{路径/到/文件}}` diff --git a/pages.zh/common/7z.md b/pages.zh/common/7z.md index a3b1f47c71..f83bdeff9c 100644 --- a/pages.zh/common/7z.md +++ b/pages.zh/common/7z.md @@ -1,7 +1,7 @@ # 7z > 一个高压缩率的文件归档器。 -> 更多信息:. +> 更多信息:. - 归档一个文件或目录: diff --git a/pages.zh/common/7za.md b/pages.zh/common/7za.md index 14ef928747..8588c73941 100644 --- a/pages.zh/common/7za.md +++ b/pages.zh/common/7za.md @@ -2,7 +2,7 @@ > 一个高压缩率的文件归档器。 > 类似于 `7z`,支持的文档类型更少但跨平台。 -> 更多信息:. +> 更多信息:. - 归档一个文件或目录: diff --git a/pages.zh/common/7zr.md b/pages.zh/common/7zr.md index 5df163df3f..106ec6f4d7 100644 --- a/pages.zh/common/7zr.md +++ b/pages.zh/common/7zr.md @@ -2,7 +2,7 @@ > 一个高压缩率的文件归档器。 > 类似于 `7z`,只支持 `.7z` 文件。 -> 更多信息:. +> 更多信息:. - 归档一个文件或目录: @@ -10,7 +10,7 @@ - 加密一个已存在的归档文件(包括文件名): -`7zr a {{加密文件.7z}} -p{{密码}} -mhe=on {{归档文件.7z}}` +`7zr a {{加密文件.7z}} -p{{密码}} -mhe={{on}} {{归档文件.7z}}` - 提取一个已存在的 7z 文件,并保持原来的目录结构: diff --git a/pages.zh/common/[[.md b/pages.zh/common/[[.md index 146a49037e..220f8e4384 100644 --- a/pages.zh/common/[[.md +++ b/pages.zh/common/[[.md @@ -2,7 +2,7 @@ > 检查文件类型,比较数值。 > 如果条件计算结果为真返回 0,如果计算结果为假返回 1。 -> More information: . +> 更多信息:. - 测试一个给定的变量是否等于/不等于指定的字符串: diff --git a/pages.zh/common/act.md b/pages.zh/common/act.md index efac6a15a9..fd966248a2 100644 --- a/pages.zh/common/act.md +++ b/pages.zh/common/act.md @@ -13,7 +13,7 @@ - 运行指定 event: -`act {{事件类型}}` +`act {{event_type}}` - 运行指定 action: @@ -26,3 +26,7 @@ - 展示详细记录: `act -v` + +- 运行指定 workflow: + +`act push -W {{workflow 的路径}}` diff --git a/pages.zh/common/acyclic.md b/pages.zh/common/acyclic.md new file mode 100644 index 0000000000..2197791b69 --- /dev/null +++ b/pages.zh/common/acyclic.md @@ -0,0 +1,17 @@ +# acyclic + +> 通过反转一些边来使有向图无环。 +> Graphviz 过滤器:`acyclic`、`bcomps`、`comps`、`edgepaint`、`gvcolor`、`gvpack`、`mingle`、`nop`、`sccmap`、`tred` 和 `unflatten`。 +> 更多信息:. + +- 通过反转一些边来使有向图无环: + +`acyclic {{路径/到/输入.gv}} > {{路径/到/输出.gv}}` + +- 打印出一个图是无环的、有环的还是无向的,不产生输出图: + +`acyclic -v -n {{路径/到/输入.gv}}` + +- 显示 `acyclic` 的帮助: + +`acyclic -?` diff --git a/pages.zh/common/adb-logcat.md b/pages.zh/common/adb-logcat.md index 89f81f46df..e8c38a4f67 100644 --- a/pages.zh/common/adb-logcat.md +++ b/pages.zh/common/adb-logcat.md @@ -23,6 +23,14 @@ `adb logcat *:W` +- 显示特定 PID 的日志: + +`adb logcat --pid={{pid}}` + +- 显示某个特定软件包的进程日志: + +`adb logcat --pid=$(adb shell pidof -s {{软件包}})` + - 给日志着色(通常与过滤器一起使用): `adb logcat -v color` diff --git a/pages.zh/common/afconvert.md b/pages.zh/common/afconvert.md new file mode 100644 index 0000000000..34c0dff171 --- /dev/null +++ b/pages.zh/common/afconvert.md @@ -0,0 +1,12 @@ +# afconvert + +> 在 AFF 和 raw 文件格式之间进行转换。 +> 更多信息: . + +- 使用一个特定的扩展名(默认:`aff`): + +`afconvert -a {{扩展名}} {{路径/到/输入文件}} {{路径/到/输出文件1 路径/到/输出文件2 ...}}` + +- 使用一个特定的压缩级别(默认:`7`): + +`afconvert -X{{0..7}} {{路径/到/输入文件}} {{路径/到/输出文件1 路径/到/输出文件2 ...}}` diff --git a/pages.zh/common/aireplay-ng.md b/pages.zh/common/aireplay-ng.md new file mode 100644 index 0000000000..111df71920 --- /dev/null +++ b/pages.zh/common/aireplay-ng.md @@ -0,0 +1,9 @@ +# aireplay-ng + +> 向无线网络注入数据包。 +> `aircrack-ng` 的一部分。 +> 更多信息:. + +- 向指定的接入点(AP)MAC 地址、客户端 MAC 地址和接口发送指定数量的去关联(disassociate)数据包: + +`sudo aireplay-ng --deauth {{count}} --bssid {{ap_mac}} --dmac {{client_mac}} {{interface}}` diff --git a/pages.zh/common/airodump-ng.md b/pages.zh/common/airodump-ng.md new file mode 100644 index 0000000000..4c14b02feb --- /dev/null +++ b/pages.zh/common/airodump-ng.md @@ -0,0 +1,13 @@ +# airodump-ng + +> 捕获数据包并显示有关无线网络的信息。 +> `aircrack-ng` 的一部分。 +> 更多信息: . + +- 捕获数据包并显示有关无线网络的信息: + +`sudo airodump-ng {{interface}}` + +- 捕获数据包并显示有关无线网络的信息,给定 MAC 地址和信道,并将输出保存到文件中: + +`sudo airodump-ng --channel {{信道}} --write {{路径/到/文件}} --bssid {{mac}} {{interface}}` diff --git a/pages.zh/common/ajson.md b/pages.zh/common/ajson.md new file mode 100644 index 0000000000..4cb140329d --- /dev/null +++ b/pages.zh/common/ajson.md @@ -0,0 +1,20 @@ +# ajson + +> 对 JSON 对象执行 JSONPath 操作。 +> 更多信息:. + +- 从文件中读取 JSON 并执行指定的 JSONPath 表达式: + +`ajson '{{$..json[?(@.path)]}}' {{路径/到/文件.json}}` + +- 从标准输入中读取 JSON 并执行指定的 JSONPath 表达式: + +`cat {{路径/到/文件.json}} | ajson '{{$..json[?(@.path)]}}'` + +- 从 URL 中获取 JSON 并计算指定的 JSONPath 表达式: + +`ajson '{{avg($..price)}}' '{{https://example.com/api/}}'` + +- 读取一些简单的 JSON 并计算一个值: + +`echo '{{3}}' | ajson '{{2 * pi * $}}'` diff --git a/pages.zh/common/amass.md b/pages.zh/common/amass.md index 7e82ed0a54..c465781cd4 100644 --- a/pages.zh/common/amass.md +++ b/pages.zh/common/amass.md @@ -4,9 +4,9 @@ > 此命令也有关于其子命令的文件,例如:`amass db`. > 更多信息:. -- 查看 Amass 版本: +- 执行 Amass 子命令: -`amass -version` +`amass {{子命令}}` - 展示帮助信息: @@ -16,6 +16,6 @@ `amass -help {{子命令}}` -- 执行 Amass 子命令: +- 查看 Amass 版本: -`amass {{子命令}}` +`amass -version` diff --git a/pages.zh/common/androguard.md b/pages.zh/common/androguard.md index 365c464576..aaec024c2e 100644 --- a/pages.zh/common/androguard.md +++ b/pages.zh/common/androguard.md @@ -1,6 +1,6 @@ # androguard -> 使用 python 编写的一款针对安卓应用的逆向工程工具。 +> 使用 Python 编写的一款针对安卓应用的逆向工程工具。 > 更多信息:. - 展示 Android manifest 清单文件: diff --git a/pages.zh/common/ani-cli.md b/pages.zh/common/ani-cli.md new file mode 100644 index 0000000000..7e22f1668a --- /dev/null +++ b/pages.zh/common/ani-cli.md @@ -0,0 +1,28 @@ +# ani-cli + +> 一个用于浏览和观看动漫的命令行工具。 +> 更多信息:. + +- 按名称搜索动漫: + +`ani-cli "{{动漫名称}}"` + +- 下载动漫剧集: + +`ani-cli -d "{{动漫名称}}"` + +- 使用 VLC 播放器播放: + +`ani-cli -v "{{动漫名称}}"` + +- 指定要观看的剧集: + +`ani-cli -a {{剧集序号}} "{{动漫名称}}"` + +- 从历史记录中继续观看动漫: + +`ani-cli -c` + +- 更新 `ani-cli`: + +`ani-cli -U` diff --git a/pages.zh/common/anki.md b/pages.zh/common/anki.md new file mode 100644 index 0000000000..2a918f5dc5 --- /dev/null +++ b/pages.zh/common/anki.md @@ -0,0 +1,20 @@ +# anki + +> 强大、智能的记忆卡片软件。 +> 更多信息:. + +- 启动 `anki`: + +`anki` + +- 用一个特定的配置文件启动 `anki`: + +`anki -p {{配置文件名称}}` + +- 以特定语言启动 `anki`: + +`anki -l {{语言}}` + +- 从一个特定的目录而不是默认的(`~/Anki`)启动`anki`: + +`anki -b {{路径/到/目录}}` diff --git a/pages.zh/common/apg.md b/pages.zh/common/apg.md index cf862e8251..fcb8da0ea0 100644 --- a/pages.zh/common/apg.md +++ b/pages.zh/common/apg.md @@ -21,4 +21,4 @@ - 生成未出现在字典中的密码(必须提供字典文件): -`apg -r {{字典文件}}` +`apg -r {{路径/到/字典文件}}` diff --git a/pages.zh/common/apm.md b/pages.zh/common/apm.md index b0407e041c..dfa3536f10 100644 --- a/pages.zh/common/apm.md +++ b/pages.zh/common/apm.md @@ -4,7 +4,7 @@ > 参见 `atom`. > 更多信息:. -- 下载包:http://atom.io/packages 和主题 http://atom.io/themes: +- 下载包: 和主题 : `apm install {{包名}}` diff --git a/pages.zh/common/arp.md b/pages.zh/common/arp.md index 0594f60a6d..488510fa4e 100644 --- a/pages.zh/common/arp.md +++ b/pages.zh/common/arp.md @@ -7,10 +7,6 @@ `arp -a` -- 清除整个缓存: - -`sudo arp -a -d` - - 删除特定条目: `arp -d {{地址}}` diff --git a/pages.zh/common/asciinema.md b/pages.zh/common/asciinema.md index 98809bf002..417ebffebc 100644 --- a/pages.zh/common/asciinema.md +++ b/pages.zh/common/asciinema.md @@ -1,7 +1,7 @@ # asciinema > 录制和播放终端会话,也可以把他们分享到 asciinema.org. -> 更多信息:. +> 更多信息:. - 将本地安装的`asciinema`与 asciinema.org 账号关联: diff --git a/pages.zh/common/autoflake.md b/pages.zh/common/autoflake.md index f55b63c8d3..17f14c9aba 100644 --- a/pages.zh/common/autoflake.md +++ b/pages.zh/common/autoflake.md @@ -5,15 +5,15 @@ - 移除指定文件中未使用的变量,并展示 diff: -`autoflake --remove-unused-variables {{文件.py}}` +`autoflake --remove-unused-variables {{路径/到/文件.py}}` - 移除多个文件中未使用的引入,并展示 diffs: -`autoflake --remove-all-unused-imports {{文件1.py}} {{文件2.py}} {{文件3.py}}` +`autoflake --remove-all-unused-imports {{路径/到/文件1.py 路径/到/文件2.py ...}}` - 移除未被使用的变量,并覆盖更新: -`autoflake --remove-unused-variables --in-place {{文件.py}}` +`autoflake --remove-unused-variables --in-place {{路径/到/文件.py}}` - 递归地移除指定文件夹下层所有文件中未使用的变量,并覆盖更新: diff --git a/pages.zh/common/banner.md b/pages.zh/common/banner.md index 15da6da41d..d173a99362 100644 --- a/pages.zh/common/banner.md +++ b/pages.zh/common/banner.md @@ -11,6 +11,6 @@ `banner -w {{50}} "{{Hello World}}"` -- 从 stdin 中读取文本: +- 从 `stdin` 中读取文本: `banner` diff --git a/pages.zh/common/bash.md b/pages.zh/common/bash.md index db1e062487..4cbc6362d4 100644 --- a/pages.zh/common/bash.md +++ b/pages.zh/common/bash.md @@ -24,7 +24,7 @@ `bash -e {{file.sh}}` -- 从输入(stdin)读取命令: +- 从输入(`stdin`)读取命令: `bash -s` diff --git a/pages.zh/common/bc.md b/pages.zh/common/bc.md new file mode 100644 index 0000000000..022feb75ae --- /dev/null +++ b/pages.zh/common/bc.md @@ -0,0 +1,29 @@ +# bc + +> 一个任意精度计算器语言。 +> 另请参阅:`dc`. +> 更多信息: . + +- 启动交互式会话: + +`bc` + +- 启动交互式会话并启用标准数学库: + +`bc --mathlib` + +- 计算表达式: + +`echo {{5 / 3}} | bc` + +- 执行脚本: + +`bc {{路径/到/脚本.bc}}` + +- 计算具有指定比例的表达式: + +`echo 'scale = {{10}}; {{5 / 3}}' | bc` + +- 使用 `mathlib` 计算正弦/余弦/反正切/自然对数/指数函数: + +`echo '{{s|c|a|l|e}}({{1}})' | bc --mathlib` diff --git a/pages.zh/common/bcomps.md b/pages.zh/common/bcomps.md new file mode 100644 index 0000000000..e1c4795574 --- /dev/null +++ b/pages.zh/common/bcomps.md @@ -0,0 +1,21 @@ +# bcomps + +> 将图形分解为它们的双连通分量。 +> Graphviz 过滤器:`acyclic`、`bcomps`、`comps`、`edgepaint`、`gvcolor`、`gvpack`、`mingle`、`nop`、`sccmap`、`tred` 和 `unflatten`。 +> 更多信息:. + +- 将一个或多个图形分解为它们的双连通分量: + +`bcomps {{路径/到/输入1.gv}} {{路径/到/输入2.gv ...}} > {{路径/到/输出.gv}}` + +- 打印一个或多个图形中的块和切割顶点的数量: + +`bcomps -v -s {{路径/到/输入1.gv}} {{路径/到/输入2.gv ...}}` + +- 根据 `输出.gv` 将每个块和块切割顶点树写入多个有编号的文件中: + +`bcomps -x -o {{路径/到/输出.gv}} {{路径/到/输入1.gv}} {{路径/到/输入2.gv ...}}` + +- 显示 `bcomps` 的帮助信息: + +`bcomps -?` diff --git a/pages.zh/linux/binwalk.md b/pages.zh/common/binwalk.md similarity index 100% rename from pages.zh/linux/binwalk.md rename to pages.zh/common/binwalk.md diff --git a/pages.zh/linux/bpytop.md b/pages.zh/common/bpytop.md similarity index 100% rename from pages.zh/linux/bpytop.md rename to pages.zh/common/bpytop.md diff --git a/pages.zh/common/buku.md b/pages.zh/common/buku.md index d4d2ab0aec..ef563fcf9a 100644 --- a/pages.zh/common/buku.md +++ b/pages.zh/common/buku.md @@ -3,13 +3,13 @@ > 命令行版本的书签管理器。 > 更多信息:. -- 根据关键词和标签查找书签: +- 根据关键词和标签“隐私”查找书签: -`buku {{关键字}} --stag {{标签}}` +`buku {{关键词}} --stag {{隐私}}` -- 添加书签,并且打上标签: +- 添加书签,并且打上标签“搜索引擎”和“隐私”: -`buku --add {{https://example.com}} {{搜索引擎}}, {{标签}}` +`buku --add {{https://example.com}} {{搜索引擎}}, {{隐私}}` - 删除一个书签: @@ -19,6 +19,6 @@ `buku --write "{{书签 id}}"` -- 将指定标签移除: +- 移除一个书签中的标签“搜索引擎”: `buku --update "{{书签 id}}" --tag {{-}} {{搜索引擎}}` diff --git a/pages.zh/common/bundler.md b/pages.zh/common/bundler.md new file mode 100644 index 0000000000..8f0668d406 --- /dev/null +++ b/pages.zh/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> 这是 `bundle` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr bundle` diff --git a/pages.zh/common/ccomps.md b/pages.zh/common/ccomps.md new file mode 100644 index 0000000000..6dac9c092a --- /dev/null +++ b/pages.zh/common/ccomps.md @@ -0,0 +1,21 @@ +# ccomps + +> 将图形分解为它们的连通分量。 +> Graphviz 过滤器:`acyclic`、`bcomps`、`comps`、`edgepaint`、`gvcolor`、`gvpack`、`mingle`、`nop`、`sccmap`、`tred` 和 `unflatten`。 +> 更多信息:. + +- 将一个或多个图形分解为它们的连通分量: + +`ccomps {{路径/到/输入1.gv}} {{路径/到/输入2.gv ...}} > {{路径/到/输出.gv}}` + +- 打印一个或多个图形中的节点、边和连通分量的数量: + +`ccomps -v -s {{路径/到/输入1.gv}} {{路径/到/输入2.gv ...}}` + +- 根据 `输出.gv` 将每个连通分量写入多个有编号的文件中: + +`ccomps -x -o {{路径/到/输出.gv}} {{路径/到/输入1.gv}} {{路径/到/输入2.gv ...}}` + +- 显示 `ccomps` 的帮助信息: + +`ccomps -?` diff --git a/pages.zh/common/clamav.md b/pages.zh/common/clamav.md new file mode 100644 index 0000000000..b19d29b967 --- /dev/null +++ b/pages.zh/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> 这是 `clamdscan` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr clamdscan` diff --git a/pages.zh/common/cron.md b/pages.zh/common/cron.md new file mode 100644 index 0000000000..a8035bb6f8 --- /dev/null +++ b/pages.zh/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> 这是 `crontab` 命令的一个别名。 + +- 原命令的文档在: + +`tldr crontab` diff --git a/pages.zh/common/curl.md b/pages.zh/common/curl.md index ebfd7187f3..c269994c6d 100644 --- a/pages.zh/common/curl.md +++ b/pages.zh/common/curl.md @@ -2,7 +2,7 @@ > 向 / 从一个服务器传输数据。 > 支持大多数协议,包括 HTTP, FTP, 和 POP3. -> 更多信息:. +> 更多信息:. - 将指定 URL 的内容下载到文件: diff --git a/pages.zh/common/edgepaint.md b/pages.zh/common/edgepaint.md new file mode 100644 index 0000000000..4e1203914b --- /dev/null +++ b/pages.zh/common/edgepaint.md @@ -0,0 +1,21 @@ +# edgepaint + +> 对图形布局的边缘进行着色,以澄清交叉边缘。 +> Graphviz 过滤器:`acyclic`、`bcomps`、`comps`、`edgepaint`、`gvcolor`、`gvpack`、`mingle`、`nop`、`sccmap`、`tred` 和 `unflatten`。 +> 更多信息:. + +- 对一个或多个已经有布局信息的图形布局的边缘进行着色,以澄清交叉边缘: + +`edgepaint {{路径/到/布局1.gv}} {{路径/到/布局2.gv ...}} > {{路径/到/输出.gv}}` + +- 使用颜色方案对边缘进行着色。(参见:): + +`edgepaint -color-scheme={{accent7}} {{路径/到/布局.gv}} > {{路径/到/输出.gv}}` + +- 对图形进行布局并对其边缘进行着色,然后将其转换为 PNG 图像: + +`dot {{路径/到/输入.gv}} | edgepaint | dot -T {{png}} > {{路径/到/输出.png}}` + +- 显示 `edgepaint` 的帮助信息: + +`edgepaint -?` diff --git a/pages.zh/common/etcd.md b/pages.zh/common/etcd.md index a11b361657..78a444fafb 100644 --- a/pages.zh/common/etcd.md +++ b/pages.zh/common/etcd.md @@ -15,6 +15,6 @@ `etcd --name {{my_etcd_cluster}}` -- 启动单节点 etcd 集群,同时可以在这里看到大量监控指标 http://localhost:2379/debug/pprof/: +- 启动单节点 etcd 集群,同时可以在这里看到大量监控指标 : `etcd --enable-pprof --metrics extensive` diff --git a/pages.zh/common/fossil-ci.md b/pages.zh/common/fossil-ci.md new file mode 100644 index 0000000000..56f461d0d2 --- /dev/null +++ b/pages.zh/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> 这是 `fossil-commit` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr fossil-commit` diff --git a/pages.zh/common/fossil-delete.md b/pages.zh/common/fossil-delete.md new file mode 100644 index 0000000000..6716215acc --- /dev/null +++ b/pages.zh/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> 这是 `fossil rm` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr fossil rm` diff --git a/pages.zh/common/fossil-forget.md b/pages.zh/common/fossil-forget.md new file mode 100644 index 0000000000..576dfbcb0b --- /dev/null +++ b/pages.zh/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> 这是 `fossil rm` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr fossil rm` diff --git a/pages.zh/common/fossil-new.md b/pages.zh/common/fossil-new.md new file mode 100644 index 0000000000..d918b27ac6 --- /dev/null +++ b/pages.zh/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> 这是 `fossil-init` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr fossil-init` diff --git a/pages.zh/common/gh-cs.md b/pages.zh/common/gh-cs.md new file mode 100644 index 0000000000..df0dcab9f0 --- /dev/null +++ b/pages.zh/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> 这是 `gh-codespace` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr gh-codespace` diff --git a/pages.zh/common/git-config.md b/pages.zh/common/git-config.md index e0c3d72ffb..905715b29d 100644 --- a/pages.zh/common/git-config.md +++ b/pages.zh/common/git-config.md @@ -8,13 +8,13 @@ `git config --list --local` -- 列出全局配置项(存储在 `~/.gitconfig`): +- 列出全局配置项(存储在 `~/.gitconfig`): `git config --list --global` -- 列出所有被修改过的配置项,包含局部的以及全局的: +- 列出系统配置项(存储在 `/etc/gitconfig`),并且展示文件的位置: -`git config --list` +`git config --list --system --show-origin` - 获取某个配置项的值: diff --git a/pages.zh/common/git-rebase.md b/pages.zh/common/git-rebase.md index 862a96ddf2..485903a2a0 100644 --- a/pages.zh/common/git-rebase.md +++ b/pages.zh/common/git-rebase.md @@ -2,7 +2,7 @@ > 将 commits 从一个分支合并到另一个分支上。 > 常用于跨分支的 commits 合并,在被合并分支的最头部构建新的 `commit`,表示合并完成。 -> 更多信息: . +> 更多信息:. - 在另一个分支的头节点合并当前分支: diff --git a/pages.zh/common/git-remote.md b/pages.zh/common/git-remote.md index 5f5a2de1e7..733afb5444 100644 --- a/pages.zh/common/git-remote.md +++ b/pages.zh/common/git-remote.md @@ -19,6 +19,10 @@ `git remote set-url {{远程仓库名字}} {{新 URL}}` +- 查看远程仓库的 URL: + +`git remote get-url {{远程仓库名字}}` + - 移除远程仓库: `git remote remove {{远程仓库名字}}` diff --git a/pages.zh/common/gnmic-sub.md b/pages.zh/common/gnmic-sub.md new file mode 100644 index 0000000000..8a922afb4a --- /dev/null +++ b/pages.zh/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> 这是 `gnmic subscribe` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr gnmic subscribe` diff --git a/pages.zh/common/go-build.md b/pages.zh/common/go-build.md index d5deff860c..8b93c93403 100644 --- a/pages.zh/common/go-build.md +++ b/pages.zh/common/go-build.md @@ -3,11 +3,11 @@ > 编译 Go 源代码。 > 更多信息:. -- 编译‘package main’文件(输出为不带扩展名的文件名): +- 编译 ‘package main’ 文件(输出为不带扩展名的文件名): `go build {{路径/到/main.go}}` -- 编译,并指定输出文件名: +- 编译并指定输出文件名: `go build -o {{路径/到/二进制文件}} {{路径/到/源文件.go}}` diff --git a/pages.zh/common/google-chrome.md b/pages.zh/common/google-chrome.md new file mode 100644 index 0000000000..9cfe4b100f --- /dev/null +++ b/pages.zh/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> 这是 `chromium` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr chromium` diff --git a/pages.zh/common/gpg.md b/pages.zh/common/gpg.md index bc04d79f1c..dfc9a8db20 100644 --- a/pages.zh/common/gpg.md +++ b/pages.zh/common/gpg.md @@ -1,26 +1,26 @@ # gpg > GNU Privacy Guard. -> 请参阅`gpg2`了解 GNU Privacy Guard 2. +> 请参阅 `gpg2` 了解 GNU Privacy Guard 2. > 更多信息:. -- 不加密,仅对`doc.txt`进行签名(生成`doc.txt.asc`,格式为 ASCII 码形式): +- 交互地创建 GPG 公钥和私钥: + +`gpg --full-generate-key` + +- 不加密,仅对 `doc.txt` 进行签名(生成 `doc.txt.asc`,格式为 ASCII 码形式): `gpg --clearsign {{doc.txt}}` -- 对`doc.txt`进行签名并加密(生成`doc.txt.asc`,格式为 ASCII 码形式): +- 为接收者 alice@example.com 和 bob@example.com 签名并加密 `doc.txt`(生成 `doc.txt.gpg`): -`gpg --local-user {{sender_id}} --recipient {{recipient_id}} --armor --sign --encrypt {{doc.txt}}` +`gpg --encrypt --sign --recipient {{alice@example.com}} --recipient {{bob@example.com}} {{doc.txt}}` -- 为接收者 alice@example.com 加密`doc.txt`(生成`doc.txt.gpg`): - -`gpg --encrypt --recipient {{alice@example.com}} {{doc.txt}}` - -- 只用密码加密`doc.txt`(生成`doc.txt.gpg`): +- 只用密码加密 `doc.txt`(生成 `doc.txt.gpg`): `gpg --symmetric {{doc.txt}}` -- 解密`doc.txt.gpg`(输出到标准输出): +- 解密 `doc.txt.gpg`(输出到标准输出): `gpg --decrypt {{doc.txt.gpg}}` diff --git a/pages.zh/common/gunicorn.md b/pages.zh/common/gunicorn.md index 2e4f5ea562..3a04eec8d1 100644 --- a/pages.zh/common/gunicorn.md +++ b/pages.zh/common/gunicorn.md @@ -3,7 +3,7 @@ > Python 的 WSGI http 服务器。 > 更多信息:. -- 运行 python web 应用程序: +- 运行 Python web 应用程序: `gunicorn {{导入路径:应用程序}}` diff --git a/pages.zh/common/gvcolor.md b/pages.zh/common/gvcolor.md new file mode 100644 index 0000000000..03988948d6 --- /dev/null +++ b/pages.zh/common/gvcolor.md @@ -0,0 +1,17 @@ +# gvcolor + +> 用一系列颜色为有序有向图着色。 +> Graphviz 过滤器: `acyclic`, `bcomps`, `comps`, `edgepaint`, `gvcolor`, `gvpack`, `mingle`, `nop`, `sccmap`, `tred`, & `unflatten`。 +> 更多信息: . + +- 为一个或多个已被 `dot` 处理的有序有向图着色: + +`gvcolor {{路径/到/布局1.gv}} {{路径/到/布局2.gv ...}} > {{路径/到/输出.gv}}` + +- 对一个图进行布局和着色,然后将其转换为 PNG 图像: + +`dot {{路径/到/输入.gv}} | gvcolor | dot -T {{png}} > {{路径/到/输出.png}}` + +- 显示 `gvcolor` 的帮助信息: + +`gvcolor -?` diff --git a/pages.zh/common/gvpack.md b/pages.zh/common/gvpack.md new file mode 100644 index 0000000000..b7d9b61a02 --- /dev/null +++ b/pages.zh/common/gvpack.md @@ -0,0 +1,25 @@ +# gvpack + +> 将多个具有布局信息的图形布局组合在一起。 +> Graphviz 过滤器: `acyclic`, `bcomps`, `comps`, `edgepaint`, `gvcolor`, `gvpack`, `mingle`, `nop`, `sccmap`, `tred` 和 `unflatten`。 +> 更多信息: . + +- 将多个具有布局信息的图形布局组合在一起: + +`gvpack {{路径/到/布局1.gv}} {{路径/到/布局2.gv ...}} > {{路径/到/输出.gv}}` + +- 在图形层面上将多个图形布局组合在一起,保持图形分开: + +`gvpack -g {{路径/到/布局1.gv}} {{路径/到/布局2.gv ...}} > {{路径/到/输出.gv}}` + +- 在节点层面上将多个图形布局组合在一起,忽略簇: + +`gvpack -n {{路径/到/布局1.gv}} {{路径/到/布局2.gv ...}} > {{路径/到/输出.gv}}` + +- 将多个图形布局组合在一起而不进行打包: + +`gvpack -u {{路径/到/布局1.gv}} {{路径/到/布局2.gv ...}} > {{路径/到/输出.gv}}` + +- 显示 `gvpack` 的帮助信息: + +`gvpack -?` diff --git a/pages.zh/common/hx.md b/pages.zh/common/hx.md new file mode 100644 index 0000000000..21c25781ab --- /dev/null +++ b/pages.zh/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> 这是 `helix` 命令的一个别名。 + +- 原命令的文档在: + +`tldr helix` diff --git a/pages.zh/osx/imgcat.md b/pages.zh/common/imgcat.md similarity index 80% rename from pages.zh/osx/imgcat.md rename to pages.zh/common/imgcat.md index 7c76d368f8..afb2641fb2 100644 --- a/pages.zh/osx/imgcat.md +++ b/pages.zh/common/imgcat.md @@ -1,7 +1,7 @@ # imgcat > 直接在命令行上显示图像的实用程序。 -> 需要兼容的终端软件,如 ITerm2. +> 需要兼容的终端软件,如 iTerm2. > 更多信息:. - 在命令行上显示图像: diff --git a/pages.zh/common/jarsigner.md b/pages.zh/common/jarsigner.md index 44325d8a81..603b3e7133 100644 --- a/pages.zh/common/jarsigner.md +++ b/pages.zh/common/jarsigner.md @@ -1,7 +1,7 @@ # jarsigner > 签名并验证 Java 存档(JAR)文件。 -> 更多信息:. +> 更多信息:. - 签名一个 `JAR` 文件: diff --git a/pages.zh/common/java.md b/pages.zh/common/java.md index 85cac1ad3e..08475514e1 100644 --- a/pages.zh/common/java.md +++ b/pages.zh/common/java.md @@ -1,7 +1,7 @@ # java > Java 程序启动器。 -> 更多信息:. +> 更多信息:. - 通过提供类名称运行一个含有 main 函数的 java .class 程序: diff --git a/pages.zh/common/javac.md b/pages.zh/common/javac.md index 5137e15f0a..90648894ab 100644 --- a/pages.zh/common/javac.md +++ b/pages.zh/common/javac.md @@ -1,7 +1,7 @@ # javac > Java 程序编译器。 -> 更多信息:. +> 更多信息:. - 编译一个 `.java` 文件: diff --git a/pages.zh/common/javadoc.md b/pages.zh/common/javadoc.md index 4a1a9a499d..6b4b648e90 100644 --- a/pages.zh/common/javadoc.md +++ b/pages.zh/common/javadoc.md @@ -1,7 +1,7 @@ # javadoc > 从源代码以 HTML 格式生成 Java API 文档。 -> 更多信息:. +> 更多信息:. - 生成 Java 源代码的文档并将结果保存在文件夹中: diff --git a/pages.zh/common/jmap.md b/pages.zh/common/jmap.md index ffe5d2616c..373cd2fd7e 100644 --- a/pages.zh/common/jmap.md +++ b/pages.zh/common/jmap.md @@ -1,7 +1,7 @@ # jmap > Java 内存映射工具。 -> 更多信息:. +> 更多信息:. - 打印 Java 进程的共享对象映射(类似 pmap 的输出): diff --git a/pages.zh/common/jps.md b/pages.zh/common/jps.md index 841889d78b..df23171a77 100644 --- a/pages.zh/common/jps.md +++ b/pages.zh/common/jps.md @@ -1,7 +1,7 @@ # jps > 显示当前用户的 JVM 进程状态。 -> 更多信息:. +> 更多信息:. - 列出所有 JVM 进程: diff --git a/pages.zh/common/kafkacat.md b/pages.zh/common/kafkacat.md new file mode 100644 index 0000000000..389f850cc5 --- /dev/null +++ b/pages.zh/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> 这是 `kcat` 命令的一个别名。 + +- 原命令的文档在: + +`tldr kcat` diff --git a/pages.zh/common/logger.md b/pages.zh/common/logger.md index 8ad39c2e1c..dfdedfd052 100644 --- a/pages.zh/common/logger.md +++ b/pages.zh/common/logger.md @@ -7,7 +7,7 @@ `logger {{消息内容}}` -- 从 stdin 获取输入并记录到系统日志 syslog: +- 从 `stdin` 获取输入并记录到系统日志 syslog: `echo {{记录内容}} | logger` diff --git a/pages.zh/common/lzcat.md b/pages.zh/common/lzcat.md new file mode 100644 index 0000000000..40caeeb842 --- /dev/null +++ b/pages.zh/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> 这是 `xz` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr xz` diff --git a/pages.zh/common/lzma.md b/pages.zh/common/lzma.md new file mode 100644 index 0000000000..b01423cf61 --- /dev/null +++ b/pages.zh/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> 这是 `xz` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr xz` diff --git a/pages.zh/common/mingle.md b/pages.zh/common/mingle.md new file mode 100644 index 0000000000..2c2820a862 --- /dev/null +++ b/pages.zh/common/mingle.md @@ -0,0 +1,17 @@ +# mingle + +> 捆绑图形布局中的边缘。 +> Graphviz 过滤器:`acyclic`、`bcomps`、`comps`、`edgepaint`、`gvcolor`、`gvpack`、`mingle`、`nop`、`sccmap`、`tred` 和 `unflatten`。 +> 更多信息: . + +- 捆绑一个或多个已经有布局信息的图形布局的边缘: + +`mingle {{路径/到/布局1.gv}} {{路径/到/布局2.gv ...}} > {{路径/到/输出.gv}}` + +- 通过一个命令执行布局、捆绑和输出到图片: + +`dot {{路径/到/输入.gv}} | mingle | dot -T {{png}} > {{路径/到/输出.png}}` + +- 显示 `mingle` 的帮助信息: + +`mingle -?` diff --git a/pages.zh/common/mv.md b/pages.zh/common/mv.md index d743b7a9d7..0e1396bece 100644 --- a/pages.zh/common/mv.md +++ b/pages.zh/common/mv.md @@ -5,24 +5,24 @@ - 移动文件到任意位置: -`mv {{来源}} {{目标}}` +`mv {{路径/到/来源}} {{路径/到/目标}}` - 移动文件到其他目录,并保持文件名不变: -`mv {{来源1}} {{来源2}} {{来源3}} {{目标目录}}` +`mv {{路径/到/来源1 路径/到/来源2 ...}} {{路径/到/目标目录}}` - 覆盖现有文件前无需确认: -`mv -f {{来源}} {{目标}}` +`mv -f {{路径/到/来源}} {{路径/到/目标}}` - 无论是否有文件权限,覆盖现有文件前均需要确认: -`mv -i {{来源}} {{目标}}` +`mv -i {{路径/到/来源}} {{路径/到/目标}}` - 不要覆盖现有的目标文件: -`mv -n {{来源}} {{目标}}` +`mv -n {{路径/到/来源}} {{路径/到/目标}}` - 详细模式,移动后打印文件名: -`mv -v {{来源}} {{目标}}` +`mv -v {{路径/到/来源}} {{路径/到/目标}}` diff --git a/pages.zh/common/n.md b/pages.zh/common/n.md index 4b90def3a5..165625d125 100644 --- a/pages.zh/common/n.md +++ b/pages.zh/common/n.md @@ -1,9 +1,9 @@ # n -> 用于管理多个节点版本的工具。 +> 用于管理多个 node 版本的工具。 > 更多信息:. -- 安装给定版本的节点。如果版本已经安装,它将被激活: +- 安装给定版本的 node。如果版本已经安装,它将被激活: `n {{版本}}` diff --git a/pages.zh/common/ninja.md b/pages.zh/common/ninja.md index 1ac6c0b57f..9037cb5d53 100644 --- a/pages.zh/common/ninja.md +++ b/pages.zh/common/ninja.md @@ -7,6 +7,10 @@ `ninja` +- 在当前目录下构建,最多并行执行 4 个作业: + +`ninja -j {{4}}` + - 在指定的目录中构建一个程序: `ninja -C {{路径}}` diff --git a/pages.zh/common/nm-classic.md b/pages.zh/common/nm-classic.md new file mode 100644 index 0000000000..d709b730ec --- /dev/null +++ b/pages.zh/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> 这是 `nm` 命令的一个别名。 + +- 原命令的文档在: + +`tldr nm` diff --git a/pages.zh/common/nop.md b/pages.zh/common/nop.md new file mode 100644 index 0000000000..6d7c753973 --- /dev/null +++ b/pages.zh/common/nop.md @@ -0,0 +1,17 @@ +# nop + +> 检查有效性并以规范的格式漂亮地打印图形。 +> Graphviz 过滤器:`acyclic`、`bcomps`、`comps`、`edgepaint`、`gvcolor`、`gvpack`、`mingle`、`nop`、`sccmap`、`tred` 和 `unflatten`。 +> 更多信息: . + +- 漂亮地打印一个或多个规范格式的图形: + +`nop {{路径/到/输入1.gv}} {{路径/到/输入2.gv ...}} > {{路径/到/输出.gv}}` + +- 检查一个或多个图形的有效性,不生成输出图形: + +`nop -p {{路径/到/输入1.gv}} {{路径/到/输入2.gv ...}}` + +- 显示 `nop` 的帮助信息: + +`nop -?` diff --git a/pages.zh/common/ntl.md b/pages.zh/common/ntl.md new file mode 100644 index 0000000000..ad42680c36 --- /dev/null +++ b/pages.zh/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> 这是 `netlify` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr netlify` diff --git a/pages.zh/common/ptpython3.md b/pages.zh/common/ptpython3.md new file mode 100644 index 0000000000..c5a78346fa --- /dev/null +++ b/pages.zh/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> 这是 `ptpython` 命令的一个别名。 + +- 原命令的文档在: + +`tldr ptpython` diff --git a/pages.zh/common/python3.md b/pages.zh/common/python3.md new file mode 100644 index 0000000000..71d0165e06 --- /dev/null +++ b/pages.zh/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> 这是 `python` 命令的一个别名。 + +- 原命令的文档在: + +`tldr python` diff --git a/pages.zh/common/rcat.md b/pages.zh/common/rcat.md new file mode 100644 index 0000000000..792c30ffdb --- /dev/null +++ b/pages.zh/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> 这是 `rc` 命令的一个别名。 + +- 原命令的文档在: + +`tldr rc` diff --git a/pages.zh/common/ripgrep.md b/pages.zh/common/ripgrep.md new file mode 100644 index 0000000000..3a9260ca71 --- /dev/null +++ b/pages.zh/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> 这是 `rg` 命令的一个别名。 + +- 原命令的文档在: + +`tldr rg` diff --git a/pages.zh/common/rsync.md b/pages.zh/common/rsync.md index a01d0a1ab1..03cfef9725 100644 --- a/pages.zh/common/rsync.md +++ b/pages.zh/common/rsync.md @@ -1,7 +1,7 @@ # rsync > 一种快速,通用,远程(和本地)文件复制工具。 -> 更多信息:. +> 更多信息:. - 从本地传输文件到远程主机: diff --git a/pages.zh/common/rustfmt.md b/pages.zh/common/rustfmt.md index 82ef882ff1..46f6ecde3b 100644 --- a/pages.zh/common/rustfmt.md +++ b/pages.zh/common/rustfmt.md @@ -5,12 +5,12 @@ - 格式化文件,就地覆盖原始文件: -`rustfmt {{source.rs}}` +`rustfmt {{路径/到/源文件.rs}}` - 检查文件的格式并在控制台上显示所有更改: -`rustfmt --check {{source.rs}}` +`rustfmt --check {{路径/到/源文件.rs}}` - 格式化之前,备份所有修改过的文件(原始文件的扩展名为 `.bk`): -`rustfmt --backup {{source.rs}}` +`rustfmt --backup {{路径/到/源文件.rs}}` diff --git a/pages.zh/common/sccmap.md b/pages.zh/common/sccmap.md new file mode 100644 index 0000000000..0877cd89b9 --- /dev/null +++ b/pages.zh/common/sccmap.md @@ -0,0 +1,17 @@ +# sccmap + +> 提取有向图的强连通分量。 +> Graphviz 过滤器:`acyclic`、`bcomps`、`comps`、`edgepaint`、`gvcolor`、`gvpack`、`mingle`、`nop`、`sccmap`、`tred` 和 `unflatten`。 +> 更多信息: . + +- 从一个或多个有向图中提取强连通分量: + +`sccmap -S {{路径/到/输入1.gv}} {{路径/到/输入2.gv ...}} > {{路径/到/输出.gv}}` + +- 打印一个图形的统计信息,不生成输出图形: + +`sccmap -v -s {{路径/到/输入1.gv}} {{路径/到/输入2.gv ...}}` + +- 显示 `sccmap` 的帮助信息: + +`sccmap -?` diff --git a/pages.zh/common/todoman.md b/pages.zh/common/todoman.md new file mode 100644 index 0000000000..6e95322d7d --- /dev/null +++ b/pages.zh/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> 这是 `todo` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr todo` diff --git a/pages.zh/common/transmission.md b/pages.zh/common/transmission.md new file mode 100644 index 0000000000..3f33805c80 --- /dev/null +++ b/pages.zh/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> 这是 `transmission-daemon` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr transmission-daemon` diff --git a/pages.zh/common/tred.md b/pages.zh/common/tred.md new file mode 100644 index 0000000000..1fe3353857 --- /dev/null +++ b/pages.zh/common/tred.md @@ -0,0 +1,13 @@ +# tred + +> 计算有向图的传递闭包约简。 +> Graphviz 过滤器:`acyclic`、`bcomps`、`comps`、`edgepaint`、`gvcolor`、`gvpack`、`mingle`、`nop`、`sccmap`、`tred` 和 `unflatten`。 +> 更多信息: . + +- 构建一个或多个有向图的传递闭包约简: + +`tred {{路径/到/输入1.gv}} {{路径/到/输入2.gv ...}} > {{路径/到/输出.gv}}` + +- 显示帮助信息: + +`tred -?` diff --git a/pages.zh/common/unar.md b/pages.zh/common/unar.md new file mode 100644 index 0000000000..7ab4c4980c --- /dev/null +++ b/pages.zh/common/unar.md @@ -0,0 +1,24 @@ +# unar + +> 从归档文件中提取内容。 +> 更多信息:. + +- 提取一个归档文件到当前目录: + +`unar {{归档文件}}` + +- 提取一个归档文件到指定目录: + +`unar -o {{路径/到/目录}} {{归档文件}}` + +- 如果要提取的文件已经存在,则总是覆盖: + +`unar -f {{归档文件}}` + +- 如果要提取的文件已经存在,则总是重命名: + +`unar -r {{归档文件}}` + +- 如果要提取的文件已经存在,则总是跳过: + +`unar -s {{归档文件}}` diff --git a/pages.zh/common/unflatten.md b/pages.zh/common/unflatten.md new file mode 100644 index 0000000000..15016b5700 --- /dev/null +++ b/pages.zh/common/unflatten.md @@ -0,0 +1,17 @@ +# unflatten + +> 调整有向图以改善布局的纵横比。 +> Graphviz 过滤器: `acyclic`, `bcomps`, `comps`, `edgepaint`, `gvcolor`, `gvpack`, `mingle`, `nop`, `sccmap`, `tred`, 和 `unflatten`。 +> 更多信息: . + +- 调整一个或多个有向图以改善布局的纵横比: + +`unflatten {{路径/到/输入1.gv}} {{路径/到/输入2.gv ...}} > {{路径/到/输出.gv}}` + +- 将 `unflatten` 作为 `dot` 布局的预处理器以改善纵横比: + +`unflatten {{路径/到/输入.gv}} | dot -T {{png}} {{路径/到/输出.png}}` + +- 显示 `unflatten` 的帮助: + +`unflatten -?` diff --git a/pages.zh/common/unlzma.md b/pages.zh/common/unlzma.md new file mode 100644 index 0000000000..ded8e38c9b --- /dev/null +++ b/pages.zh/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> 这是 `xz` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr xz` diff --git a/pages.zh/common/unxz.md b/pages.zh/common/unxz.md new file mode 100644 index 0000000000..bd097561a1 --- /dev/null +++ b/pages.zh/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> 这是 `xz` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr xz` diff --git a/pages.zh/common/xzcat.md b/pages.zh/common/xzcat.md new file mode 100644 index 0000000000..82cd7963f2 --- /dev/null +++ b/pages.zh/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> 这是 `xz` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr xz` diff --git a/pages.zh/common/yank.md b/pages.zh/common/yank.md index fceaad2feb..41b28dc413 100644 --- a/pages.zh/common/yank.md +++ b/pages.zh/common/yank.md @@ -1,6 +1,6 @@ # yank -> 从 stdin 读取输入并显示一个选择界面,该界面允许选择一个字段并将其复制到剪贴板。 +> 从 `stdin` 读取输入并显示一个选择界面,该界面允许选择一个字段并将其复制到剪贴板。 > 更多信息:. - 使用默认分隔符(\f, \n, \r, \s, \t): diff --git a/pages.zh/common/zstd.md b/pages.zh/common/zstd.md index b9ae112e86..a01dcbbb65 100644 --- a/pages.zh/common/zstd.md +++ b/pages.zh/common/zstd.md @@ -11,7 +11,7 @@ `zstd -d {{file}}.zst` -- 将文件解压缩到标准输出(stdout): +- 将文件解压缩到标准输出(`stdout`): `zstd -dc {{file}}.zst` diff --git a/pages.zh/linux/alternatives.md b/pages.zh/linux/alternatives.md new file mode 100644 index 0000000000..1c5f67ef0d --- /dev/null +++ b/pages.zh/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> 这是 `update-alternatives` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr update-alternatives` diff --git a/pages.zh/linux/archlinux-java.md b/pages.zh/linux/archlinux-java.md index 86430233ad..0e5ca733e8 100644 --- a/pages.zh/linux/archlinux-java.md +++ b/pages.zh/linux/archlinux-java.md @@ -1,7 +1,7 @@ # archlinux-java > 提供 Java 环境设置功能的一个帮助脚本。 -> 更多信息:. +> 更多信息:. - 列出已安装的 Java 环境: diff --git a/pages.zh/linux/arithmetic.md b/pages.zh/linux/arithmetic.md index 8fe61a33b4..2df162374d 100644 --- a/pages.zh/linux/arithmetic.md +++ b/pages.zh/linux/arithmetic.md @@ -1,7 +1,7 @@ # arithmetic > 测试见到你的算术问题。 -> 更多信息:. +> 更多信息:. - 开始算术测试: diff --git a/pages.zh/linux/ark.md b/pages.zh/linux/ark.md index a0f27a4e86..daaafb63a3 100644 --- a/pages.zh/linux/ark.md +++ b/pages.zh/linux/ark.md @@ -5,12 +5,12 @@ - 将存档解压缩到当前目录: -`ark --batch {{存档名}}` +`ark --batch {{路径/到/存档名}}` - 改变解压缩目录: -`ark --batch --destination {{解压缩目录路径}} {{存档名}}` +`ark --batch --destination {{路径/到/目录}} {{路径/到/存档名}}` - 创建一个原本不存在的存档并向它添加文件: -`ark --add-to {{存档名}} {{文件1}} {{文件2}}` +`ark --add-to {{路径/到/存档名}} {{路径/到/文件1 路径/到/文件2 ...}}` diff --git a/pages.zh/linux/batcat.md b/pages.zh/linux/batcat.md new file mode 100644 index 0000000000..84f46921f9 --- /dev/null +++ b/pages.zh/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> 这是 `bat` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr bat` diff --git a/pages.zh/linux/bspwm.md b/pages.zh/linux/bspwm.md new file mode 100644 index 0000000000..70730047f8 --- /dev/null +++ b/pages.zh/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> 这是 `bspc` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr bspc` diff --git a/pages.zh/linux/cc.md b/pages.zh/linux/cc.md new file mode 100644 index 0000000000..d33f0f56c4 --- /dev/null +++ b/pages.zh/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> 这是 `gcc` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr gcc` diff --git a/pages.zh/linux/cgroups.md b/pages.zh/linux/cgroups.md new file mode 100644 index 0000000000..d22a372c57 --- /dev/null +++ b/pages.zh/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> 这是 `cgclassify` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr cgclassify` diff --git a/pages.zh/linux/debuild.md b/pages.zh/linux/debuild.md index fa53aa5283..cccf305fc3 100644 --- a/pages.zh/linux/debuild.md +++ b/pages.zh/linux/debuild.md @@ -1,7 +1,7 @@ # debuild > 从源代码构建 `Debian` 软件包的工具。 -> 更多信息:. +> 更多信息:. - 在当前目录中生成软件包: diff --git a/pages.zh/linux/diff3.md b/pages.zh/linux/diff3.md index cd5287992e..0b0b35574a 100644 --- a/pages.zh/linux/diff3.md +++ b/pages.zh/linux/diff3.md @@ -5,8 +5,8 @@ - 比较文件: -`diff3 {{文件1}} {{文件2}} {{文件3}}` +`diff3 {{路径/到/文件1}} {{路径/到/文件2}} {{路径/到/文件3}}` - 展示所有的变化,同时列出冲突: -`diff3 --show-all {{文件1}} {{文件2}} {{文件3}}` +`diff3 --show-all {{路径/到/文件1}} {{路径/到/文件2}} {{路径/到/文件3}}` diff --git a/pages.zh/linux/ip-route-list.md b/pages.zh/linux/ip-route-list.md new file mode 100644 index 0000000000..930ed6d8bd --- /dev/null +++ b/pages.zh/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> 这是 `ip-route-show` 命令的一个别名。 + +- 原命令的文档在: + +`tldr ip-route-show` diff --git a/pages.zh/linux/konsole.md b/pages.zh/linux/konsole.md index 3b12a73100..7646142971 100644 --- a/pages.zh/linux/konsole.md +++ b/pages.zh/linux/konsole.md @@ -1,7 +1,7 @@ # konsole > Konsole: KDE 终端模拟器。 -> 更多信息:. +> 更多信息:. - 在特定目录中打开一个新的 Konsole: diff --git a/pages.zh/linux/megadl.md b/pages.zh/linux/megadl.md new file mode 100644 index 0000000000..bc764ae2e5 --- /dev/null +++ b/pages.zh/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> 这是 `megatools-dl` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr megatools-dl` diff --git a/pages.zh/linux/pacman.md b/pages.zh/linux/pacman.md index 103a5bfead..3cfde038d2 100644 --- a/pages.zh/linux/pacman.md +++ b/pages.zh/linux/pacman.md @@ -1,6 +1,7 @@ # pacman > Arch Linux 的软件包管理器工具。 +> 也可以看看:`pacman-database`, `pacman-deptest`, `pacman-files`, `pacman-key`, `pacman-mirrors`, `pacman-query`, `pacman-remove`, `pacman-sync`, `pacman-upgrade`. > 更多信息:. - 同步并更新所有软件包: diff --git a/pages.zh/linux/sacctmgr.md b/pages.zh/linux/sacctmgr.md index 1c05aaa293..f7e22ed6de 100644 --- a/pages.zh/linux/sacctmgr.md +++ b/pages.zh/linux/sacctmgr.md @@ -17,4 +17,4 @@ - 以指定格式显示用户、账户资源关联、集群、账户的详细信息: -`sacctmgr show {{user|association|cluster|account}} format="Accout%10" format="GrpTRES%30"` +`sacctmgr show {{user|association|cluster|account}} format="Account%10" format="GrpTRES%30"` diff --git a/pages.zh/linux/ubuntu-bug.md b/pages.zh/linux/ubuntu-bug.md new file mode 100644 index 0000000000..8a8e706655 --- /dev/null +++ b/pages.zh/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> 这是 `apport-bug` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr apport-bug` diff --git a/pages.zh/linux/xcowsay.md b/pages.zh/linux/xcowsay.md index 88e06ed345..cc81ea7a20 100644 --- a/pages.zh/linux/xcowsay.md +++ b/pages.zh/linux/xcowsay.md @@ -2,7 +2,7 @@ > 在您的 Linux 桌面上显示一头可爱的牛和指定的消息。 > 牛的显示时间是固定的或则是根据文本大小计算得出的。 点击牛即马上关闭。 -> 更多信息: . +> 更多信息:. - 显示一头说 “hello, world” 的牛: diff --git a/pages.zh/osx/aa.md b/pages.zh/osx/aa.md new file mode 100644 index 0000000000..dee2f42231 --- /dev/null +++ b/pages.zh/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> 这是 `yaa` 命令的一个别名。 + +- 原命令的文档在: + +`tldr yaa` diff --git a/pages.zh/osx/cal.md b/pages.zh/osx/cal.md index bf522134fc..4c2e42468d 100644 --- a/pages.zh/osx/cal.md +++ b/pages.zh/osx/cal.md @@ -3,11 +3,11 @@ > 打印日历信息。 > 更多信息:. -- 打印本月日历: +- 显示本月日历: `cal` -- 显示上个月,当前月,下个月的日历: +- 显示上月、本月和下月的日历: `cal -3` @@ -15,18 +15,18 @@ `cal -m {{月}}` -- 显示全年日历: +- 显示本年日历: `cal -y` -- 显示指定某年的日历(年份为 4 个数字): +- 显示指定年份的日历(年份为 4 个数字): `cal {{年}}` -- 显示特定年和月的日历: +- 显示指定年月的日历: `cal {{月}} {{年}}` -- 显示指定年的复活节日期: +- 显示指定年份的复活节日期: `ncal -e {{年}}` diff --git a/pages.zh/osx/g[.md b/pages.zh/osx/g[.md new file mode 100644 index 0000000000..5141bce855 --- /dev/null +++ b/pages.zh/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> 这是 `-p linux [` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux [` diff --git a/pages.zh/osx/gawk.md b/pages.zh/osx/gawk.md new file mode 100644 index 0000000000..88cbb8f46f --- /dev/null +++ b/pages.zh/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> 这是 `-p linux awk` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux awk` diff --git a/pages.zh/osx/gb2sum.md b/pages.zh/osx/gb2sum.md new file mode 100644 index 0000000000..f58ddafa90 --- /dev/null +++ b/pages.zh/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> 这是 `-p linux b2sum` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux b2sum` diff --git a/pages.zh/osx/gbase32.md b/pages.zh/osx/gbase32.md new file mode 100644 index 0000000000..ff8be68392 --- /dev/null +++ b/pages.zh/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> 这是 `-p linux base32` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux base32` diff --git a/pages.zh/osx/gbase64.md b/pages.zh/osx/gbase64.md new file mode 100644 index 0000000000..597e0994b7 --- /dev/null +++ b/pages.zh/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> 这是 `-p linux base64` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux base64` diff --git a/pages.zh/osx/gbasename.md b/pages.zh/osx/gbasename.md new file mode 100644 index 0000000000..143f0576c4 --- /dev/null +++ b/pages.zh/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> 这是 `-p linux basename` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux basename` diff --git a/pages.zh/osx/gbasenc.md b/pages.zh/osx/gbasenc.md new file mode 100644 index 0000000000..6fb344010c --- /dev/null +++ b/pages.zh/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> 这是 `-p linux basenc` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux basenc` diff --git a/pages.zh/osx/gcat.md b/pages.zh/osx/gcat.md new file mode 100644 index 0000000000..7ecf7d160b --- /dev/null +++ b/pages.zh/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> 这是 `-p linux cat` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux cat` diff --git a/pages.zh/osx/gchcon.md b/pages.zh/osx/gchcon.md new file mode 100644 index 0000000000..0498e76b1a --- /dev/null +++ b/pages.zh/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> 这是 `-p linux chcon` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux chcon` diff --git a/pages.zh/osx/gchgrp.md b/pages.zh/osx/gchgrp.md new file mode 100644 index 0000000000..447961da2b --- /dev/null +++ b/pages.zh/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> 这是 `-p linux chgrp` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux chgrp` diff --git a/pages.zh/osx/gchmod.md b/pages.zh/osx/gchmod.md new file mode 100644 index 0000000000..1e7938cc40 --- /dev/null +++ b/pages.zh/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> 这是 `-p linux chmod` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux chmod` diff --git a/pages.zh/osx/gchown.md b/pages.zh/osx/gchown.md new file mode 100644 index 0000000000..29898e72db --- /dev/null +++ b/pages.zh/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> 这是 `-p linux chown` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux chown` diff --git a/pages.zh/osx/gchroot.md b/pages.zh/osx/gchroot.md new file mode 100644 index 0000000000..0ea2b047c6 --- /dev/null +++ b/pages.zh/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> 这是 `-p linux chroot` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux chroot` diff --git a/pages.zh/osx/gcksum.md b/pages.zh/osx/gcksum.md new file mode 100644 index 0000000000..0f99fbcec5 --- /dev/null +++ b/pages.zh/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> 这是 `-p linux cksum` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux cksum` diff --git a/pages.zh/osx/gcomm.md b/pages.zh/osx/gcomm.md new file mode 100644 index 0000000000..b6e421ff36 --- /dev/null +++ b/pages.zh/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> 这是 `-p linux comm` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux comm` diff --git a/pages.zh/osx/gcp.md b/pages.zh/osx/gcp.md new file mode 100644 index 0000000000..2a32163577 --- /dev/null +++ b/pages.zh/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> 这是 `-p linux cp` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux cp` diff --git a/pages.zh/osx/gcsplit.md b/pages.zh/osx/gcsplit.md new file mode 100644 index 0000000000..fde5657694 --- /dev/null +++ b/pages.zh/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> 这是 `-p linux csplit` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux csplit` diff --git a/pages.zh/osx/gcut.md b/pages.zh/osx/gcut.md new file mode 100644 index 0000000000..3acfcd4567 --- /dev/null +++ b/pages.zh/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> 这是 `-p linux cut` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux cut` diff --git a/pages.zh/osx/gdate.md b/pages.zh/osx/gdate.md new file mode 100644 index 0000000000..e013f4ddf7 --- /dev/null +++ b/pages.zh/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> 这是 `-p linux date` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux date` diff --git a/pages.zh/osx/gdd.md b/pages.zh/osx/gdd.md new file mode 100644 index 0000000000..adcb28c5b7 --- /dev/null +++ b/pages.zh/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> 这是 `-p linux dd` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux dd` diff --git a/pages.zh/osx/gdf.md b/pages.zh/osx/gdf.md new file mode 100644 index 0000000000..42ef436e60 --- /dev/null +++ b/pages.zh/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> 这是 `-p linux df` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux df` diff --git a/pages.zh/osx/gdir.md b/pages.zh/osx/gdir.md new file mode 100644 index 0000000000..7208efe7d9 --- /dev/null +++ b/pages.zh/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> 这是 `-p linux dir` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux dir` diff --git a/pages.zh/osx/gdircolors.md b/pages.zh/osx/gdircolors.md new file mode 100644 index 0000000000..8c550bc017 --- /dev/null +++ b/pages.zh/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> 这是 `-p linux dircolors` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux dircolors` diff --git a/pages.zh/osx/gdirname.md b/pages.zh/osx/gdirname.md new file mode 100644 index 0000000000..6c3293b782 --- /dev/null +++ b/pages.zh/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> 这是 `-p linux dirname` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux dirname` diff --git a/pages.zh/osx/gdnsdomainname.md b/pages.zh/osx/gdnsdomainname.md new file mode 100644 index 0000000000..3f0d1740aa --- /dev/null +++ b/pages.zh/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> 这是 `-p linux dnsdomainname` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux dnsdomainname` diff --git a/pages.zh/osx/gecho.md b/pages.zh/osx/gecho.md new file mode 100644 index 0000000000..c7a4def603 --- /dev/null +++ b/pages.zh/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> 这是 `-p linux echo` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux echo` diff --git a/pages.zh/osx/ged.md b/pages.zh/osx/ged.md new file mode 100644 index 0000000000..3dc1e4d19d --- /dev/null +++ b/pages.zh/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> 这是 `-p linux ed` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux ed` diff --git a/pages.zh/osx/gegrep.md b/pages.zh/osx/gegrep.md new file mode 100644 index 0000000000..d89ef17454 --- /dev/null +++ b/pages.zh/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> 这是 `-p linux egrep` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux egrep` diff --git a/pages.zh/osx/genv.md b/pages.zh/osx/genv.md new file mode 100644 index 0000000000..a801bd69ac --- /dev/null +++ b/pages.zh/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> 这是 `-p linux env` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux env` diff --git a/pages.zh/osx/gexpand.md b/pages.zh/osx/gexpand.md new file mode 100644 index 0000000000..5babd8740e --- /dev/null +++ b/pages.zh/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> 这是 `-p linux expand` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux expand` diff --git a/pages.zh/osx/gexpr.md b/pages.zh/osx/gexpr.md new file mode 100644 index 0000000000..e3d27afe40 --- /dev/null +++ b/pages.zh/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> 这是 `-p linux expr` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux expr` diff --git a/pages.zh/osx/gfactor.md b/pages.zh/osx/gfactor.md new file mode 100644 index 0000000000..d744dbc864 --- /dev/null +++ b/pages.zh/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> 这是 `-p linux factor` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux factor` diff --git a/pages.zh/osx/gfalse.md b/pages.zh/osx/gfalse.md new file mode 100644 index 0000000000..22aa709a2f --- /dev/null +++ b/pages.zh/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> 这是 `-p linux false` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux false` diff --git a/pages.zh/osx/gfgrep.md b/pages.zh/osx/gfgrep.md new file mode 100644 index 0000000000..73f140e3f8 --- /dev/null +++ b/pages.zh/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> 这是 `-p linux fgrep` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux fgrep` diff --git a/pages.zh/osx/gfind.md b/pages.zh/osx/gfind.md new file mode 100644 index 0000000000..2edee07668 --- /dev/null +++ b/pages.zh/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> 这是 `-p linux find` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux find` diff --git a/pages.zh/osx/gfmt.md b/pages.zh/osx/gfmt.md new file mode 100644 index 0000000000..5d5083700f --- /dev/null +++ b/pages.zh/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> 这是 `-p linux fmt` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux fmt` diff --git a/pages.zh/osx/gfold.md b/pages.zh/osx/gfold.md new file mode 100644 index 0000000000..bcdbf9b919 --- /dev/null +++ b/pages.zh/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> 这是 `-p linux fold` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux fold` diff --git a/pages.zh/osx/gftp.md b/pages.zh/osx/gftp.md new file mode 100644 index 0000000000..d88bfc08ee --- /dev/null +++ b/pages.zh/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> 这是 `-p linux ftp` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux ftp` diff --git a/pages.zh/osx/ggrep.md b/pages.zh/osx/ggrep.md new file mode 100644 index 0000000000..32333973d9 --- /dev/null +++ b/pages.zh/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> 这是 `-p linux grep` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux grep` diff --git a/pages.zh/osx/ggroups.md b/pages.zh/osx/ggroups.md new file mode 100644 index 0000000000..99caa58b9a --- /dev/null +++ b/pages.zh/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> 这是 `-p linux groups` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux groups` diff --git a/pages.zh/osx/ghead.md b/pages.zh/osx/ghead.md new file mode 100644 index 0000000000..743fe08bf5 --- /dev/null +++ b/pages.zh/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> 这是 `-p linux head` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux head` diff --git a/pages.zh/osx/ghostid.md b/pages.zh/osx/ghostid.md new file mode 100644 index 0000000000..b61828665f --- /dev/null +++ b/pages.zh/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> 这是 `-p linux hostid` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux hostid` diff --git a/pages.zh/osx/ghostname.md b/pages.zh/osx/ghostname.md new file mode 100644 index 0000000000..0d4b849224 --- /dev/null +++ b/pages.zh/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> 这是 `-p linux hostname` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux hostname` diff --git a/pages.zh/osx/gid.md b/pages.zh/osx/gid.md new file mode 100644 index 0000000000..e40b749b7b --- /dev/null +++ b/pages.zh/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> 这是 `-p linux id` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux id` diff --git a/pages.zh/osx/gifconfig.md b/pages.zh/osx/gifconfig.md new file mode 100644 index 0000000000..3ef2eea615 --- /dev/null +++ b/pages.zh/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> 这是 `-p linux ifconfig` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux ifconfig` diff --git a/pages.zh/osx/gindent.md b/pages.zh/osx/gindent.md new file mode 100644 index 0000000000..51fabcbf51 --- /dev/null +++ b/pages.zh/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> 这是 `-p linux indent` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux indent` diff --git a/pages.zh/osx/ginstall.md b/pages.zh/osx/ginstall.md new file mode 100644 index 0000000000..bd627f3815 --- /dev/null +++ b/pages.zh/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> 这是 `-p linux install` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux install` diff --git a/pages.zh/osx/gjoin.md b/pages.zh/osx/gjoin.md new file mode 100644 index 0000000000..e3cca805c7 --- /dev/null +++ b/pages.zh/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> 这是 `-p linux join` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux join` diff --git a/pages.zh/osx/gkill.md b/pages.zh/osx/gkill.md new file mode 100644 index 0000000000..162c1c2cd7 --- /dev/null +++ b/pages.zh/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> 这是 `-p linux kill` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux kill` diff --git a/pages.zh/osx/glibtool.md b/pages.zh/osx/glibtool.md new file mode 100644 index 0000000000..88dc502dc9 --- /dev/null +++ b/pages.zh/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> 这是 `-p linux libtool` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux libtool` diff --git a/pages.zh/osx/glibtoolize.md b/pages.zh/osx/glibtoolize.md new file mode 100644 index 0000000000..ef34e1ce9e --- /dev/null +++ b/pages.zh/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> 这是 `-p linux libtoolize` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux libtoolize` diff --git a/pages.zh/osx/glink.md b/pages.zh/osx/glink.md new file mode 100644 index 0000000000..d2001118b5 --- /dev/null +++ b/pages.zh/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> 这是 `-p linux link` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux link` diff --git a/pages.zh/osx/gln.md b/pages.zh/osx/gln.md new file mode 100644 index 0000000000..3183d548c0 --- /dev/null +++ b/pages.zh/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> 这是 `-p linux ln` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux ln` diff --git a/pages.zh/osx/glocate.md b/pages.zh/osx/glocate.md new file mode 100644 index 0000000000..299f22785f --- /dev/null +++ b/pages.zh/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> 这是 `-p linux locate` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux locate` diff --git a/pages.zh/osx/glogger.md b/pages.zh/osx/glogger.md new file mode 100644 index 0000000000..bbd61cee72 --- /dev/null +++ b/pages.zh/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> 这是 `-p linux logger` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux logger` diff --git a/pages.zh/osx/glogname.md b/pages.zh/osx/glogname.md new file mode 100644 index 0000000000..46f5ad8f91 --- /dev/null +++ b/pages.zh/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> 这是 `-p linux logname` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux logname` diff --git a/pages.zh/osx/gls.md b/pages.zh/osx/gls.md new file mode 100644 index 0000000000..f57589660b --- /dev/null +++ b/pages.zh/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> 这是 `-p linux ls` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux ls` diff --git a/pages.zh/osx/gmake.md b/pages.zh/osx/gmake.md new file mode 100644 index 0000000000..17cf6f8ddf --- /dev/null +++ b/pages.zh/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> 这是 `-p linux make` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux make` diff --git a/pages.zh/osx/gmd5sum.md b/pages.zh/osx/gmd5sum.md new file mode 100644 index 0000000000..9af13991d8 --- /dev/null +++ b/pages.zh/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> 这是 `-p linux md5sum` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux md5sum` diff --git a/pages.zh/osx/gmkdir.md b/pages.zh/osx/gmkdir.md new file mode 100644 index 0000000000..7cb5e23f4d --- /dev/null +++ b/pages.zh/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> 这是 `-p linux mkdir` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux mkdir` diff --git a/pages.zh/osx/gmkfifo.md b/pages.zh/osx/gmkfifo.md new file mode 100644 index 0000000000..ca8acb7b04 --- /dev/null +++ b/pages.zh/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> 这是 `-p linux mkfifo` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux mkfifo` diff --git a/pages.zh/osx/gmknod.md b/pages.zh/osx/gmknod.md new file mode 100644 index 0000000000..d2217def67 --- /dev/null +++ b/pages.zh/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> 这是 `-p linux mknod` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux mknod` diff --git a/pages.zh/osx/gmktemp.md b/pages.zh/osx/gmktemp.md new file mode 100644 index 0000000000..3b18f77b79 --- /dev/null +++ b/pages.zh/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> 这是 `-p linux mktemp` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux mktemp` diff --git a/pages.zh/osx/gmv.md b/pages.zh/osx/gmv.md new file mode 100644 index 0000000000..16f7130476 --- /dev/null +++ b/pages.zh/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> 这是 `-p linux mv` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux mv` diff --git a/pages.zh/osx/gnice.md b/pages.zh/osx/gnice.md new file mode 100644 index 0000000000..0edf9b7075 --- /dev/null +++ b/pages.zh/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> 这是 `-p linux nice` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux nice` diff --git a/pages.zh/osx/gnl.md b/pages.zh/osx/gnl.md new file mode 100644 index 0000000000..0776c12d95 --- /dev/null +++ b/pages.zh/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> 这是 `-p linux nl` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux nl` diff --git a/pages.zh/osx/gnohup.md b/pages.zh/osx/gnohup.md new file mode 100644 index 0000000000..5d760c973c --- /dev/null +++ b/pages.zh/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> 这是 `-p linux nohup` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux nohup` diff --git a/pages.zh/osx/gnproc.md b/pages.zh/osx/gnproc.md new file mode 100644 index 0000000000..6f79960ba9 --- /dev/null +++ b/pages.zh/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> 这是 `-p linux nproc` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux nproc` diff --git a/pages.zh/osx/gnumfmt.md b/pages.zh/osx/gnumfmt.md new file mode 100644 index 0000000000..e11a25ab0d --- /dev/null +++ b/pages.zh/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> 这是 `-p linux numfmt` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux numfmt` diff --git a/pages.zh/osx/god.md b/pages.zh/osx/god.md new file mode 100644 index 0000000000..098986596d --- /dev/null +++ b/pages.zh/osx/god.md @@ -0,0 +1,7 @@ +# god + +> 这是 `-p linux od` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux od` diff --git a/pages.zh/osx/gpaste.md b/pages.zh/osx/gpaste.md new file mode 100644 index 0000000000..d87ecbc2a4 --- /dev/null +++ b/pages.zh/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> 这是 `-p linux paste` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux paste` diff --git a/pages.zh/osx/gpathchk.md b/pages.zh/osx/gpathchk.md new file mode 100644 index 0000000000..d2490604ed --- /dev/null +++ b/pages.zh/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> 这是 `-p linux pathchk` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux pathchk` diff --git a/pages.zh/osx/gping.md b/pages.zh/osx/gping.md new file mode 100644 index 0000000000..2225027ccf --- /dev/null +++ b/pages.zh/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> 这是 `-p linux ping` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux ping` diff --git a/pages.zh/osx/gping6.md b/pages.zh/osx/gping6.md new file mode 100644 index 0000000000..2009daf66d --- /dev/null +++ b/pages.zh/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> 这是 `-p linux ping6` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux ping6` diff --git a/pages.zh/osx/gpinky.md b/pages.zh/osx/gpinky.md new file mode 100644 index 0000000000..10a1830a48 --- /dev/null +++ b/pages.zh/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> 这是 `-p linux pinky` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux pinky` diff --git a/pages.zh/osx/gpr.md b/pages.zh/osx/gpr.md new file mode 100644 index 0000000000..acaec33bc7 --- /dev/null +++ b/pages.zh/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> 这是 `-p linux pr` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux pr` diff --git a/pages.zh/osx/gprintenv.md b/pages.zh/osx/gprintenv.md new file mode 100644 index 0000000000..1ed7b2ae72 --- /dev/null +++ b/pages.zh/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> 这是 `-p linux printenv` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux printenv` diff --git a/pages.zh/osx/gprintf.md b/pages.zh/osx/gprintf.md new file mode 100644 index 0000000000..ca05c64bae --- /dev/null +++ b/pages.zh/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> 这是 `-p linux printf` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux printf` diff --git a/pages.zh/osx/gptx.md b/pages.zh/osx/gptx.md new file mode 100644 index 0000000000..8cec9aa9b9 --- /dev/null +++ b/pages.zh/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> 这是 `-p linux ptx` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux ptx` diff --git a/pages.zh/osx/gpwd.md b/pages.zh/osx/gpwd.md new file mode 100644 index 0000000000..9718b0f3d7 --- /dev/null +++ b/pages.zh/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> 这是 `-p linux pwd` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux pwd` diff --git a/pages.zh/osx/grcp.md b/pages.zh/osx/grcp.md new file mode 100644 index 0000000000..fb26d7eb08 --- /dev/null +++ b/pages.zh/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> 这是 `-p linux rcp` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux rcp` diff --git a/pages.zh/osx/greadlink.md b/pages.zh/osx/greadlink.md new file mode 100644 index 0000000000..4a7b67cb20 --- /dev/null +++ b/pages.zh/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> 这是 `-p linux readlink` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux readlink` diff --git a/pages.zh/osx/grealpath.md b/pages.zh/osx/grealpath.md new file mode 100644 index 0000000000..51d7a18bbd --- /dev/null +++ b/pages.zh/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> 这是 `-p linux realpath` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux realpath` diff --git a/pages.zh/osx/grexec.md b/pages.zh/osx/grexec.md new file mode 100644 index 0000000000..c340a309f1 --- /dev/null +++ b/pages.zh/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> 这是 `-p linux rexec` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux rexec` diff --git a/pages.zh/osx/grlogin.md b/pages.zh/osx/grlogin.md new file mode 100644 index 0000000000..cd5f4f86ce --- /dev/null +++ b/pages.zh/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> 这是 `-p linux rlogin` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux rlogin` diff --git a/pages.zh/osx/grm.md b/pages.zh/osx/grm.md new file mode 100644 index 0000000000..da14b8dd87 --- /dev/null +++ b/pages.zh/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> 这是 `-p linux rm` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux rm` diff --git a/pages.zh/osx/grmdir.md b/pages.zh/osx/grmdir.md new file mode 100644 index 0000000000..b5b07d7d17 --- /dev/null +++ b/pages.zh/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> 这是 `-p linux rmdir` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux rmdir` diff --git a/pages.zh/osx/grsh.md b/pages.zh/osx/grsh.md new file mode 100644 index 0000000000..3f55b07203 --- /dev/null +++ b/pages.zh/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> 这是 `-p linux rsh` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux rsh` diff --git a/pages.zh/osx/gruncon.md b/pages.zh/osx/gruncon.md new file mode 100644 index 0000000000..22f2c86015 --- /dev/null +++ b/pages.zh/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> 这是 `-p linux runcon` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux runcon` diff --git a/pages.zh/osx/gsed.md b/pages.zh/osx/gsed.md new file mode 100644 index 0000000000..5e831a3844 --- /dev/null +++ b/pages.zh/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> 这是 `-p linux sed` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux sed` diff --git a/pages.zh/osx/gseq.md b/pages.zh/osx/gseq.md new file mode 100644 index 0000000000..bfb9733bdc --- /dev/null +++ b/pages.zh/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> 这是 `-p linux seq` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux seq` diff --git a/pages.zh/osx/gsha1sum.md b/pages.zh/osx/gsha1sum.md new file mode 100644 index 0000000000..4bfb1d9acc --- /dev/null +++ b/pages.zh/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> 这是 `-p linux sha1sum` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux sha1sum` diff --git a/pages.zh/osx/gsha224sum.md b/pages.zh/osx/gsha224sum.md new file mode 100644 index 0000000000..5ace7263a2 --- /dev/null +++ b/pages.zh/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> 这是 `-p linux sha224sum` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux sha224sum` diff --git a/pages.zh/osx/gsha256sum.md b/pages.zh/osx/gsha256sum.md new file mode 100644 index 0000000000..0465d186b8 --- /dev/null +++ b/pages.zh/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> 这是 `-p linux sha256sum` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux sha256sum` diff --git a/pages.zh/osx/gsha384sum.md b/pages.zh/osx/gsha384sum.md new file mode 100644 index 0000000000..94d5efc2d9 --- /dev/null +++ b/pages.zh/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> 这是 `-p linux sha384sum` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux sha384sum` diff --git a/pages.zh/osx/gsha512sum.md b/pages.zh/osx/gsha512sum.md new file mode 100644 index 0000000000..ac09121a69 --- /dev/null +++ b/pages.zh/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> 这是 `-p linux sha512sum` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux sha512sum` diff --git a/pages.zh/osx/gshred.md b/pages.zh/osx/gshred.md new file mode 100644 index 0000000000..0fa2f4fec8 --- /dev/null +++ b/pages.zh/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> 这是 `-p linux shred` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux shred` diff --git a/pages.zh/osx/gshuf.md b/pages.zh/osx/gshuf.md new file mode 100644 index 0000000000..66fb5c45c1 --- /dev/null +++ b/pages.zh/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> 这是 `-p linux shuf` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux shuf` diff --git a/pages.zh/osx/gsleep.md b/pages.zh/osx/gsleep.md new file mode 100644 index 0000000000..4375d6b946 --- /dev/null +++ b/pages.zh/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> 这是 `-p linux sleep` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux sleep` diff --git a/pages.zh/osx/gsort.md b/pages.zh/osx/gsort.md new file mode 100644 index 0000000000..e15da26369 --- /dev/null +++ b/pages.zh/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> 这是 `-p linux sort` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux sort` diff --git a/pages.zh/osx/gsplit.md b/pages.zh/osx/gsplit.md new file mode 100644 index 0000000000..07346d791e --- /dev/null +++ b/pages.zh/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> 这是 `-p linux split` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux split` diff --git a/pages.zh/osx/gstat.md b/pages.zh/osx/gstat.md new file mode 100644 index 0000000000..79e2ba01a3 --- /dev/null +++ b/pages.zh/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> 这是 `-p linux stat` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux stat` diff --git a/pages.zh/osx/gstdbuf.md b/pages.zh/osx/gstdbuf.md new file mode 100644 index 0000000000..ffac3b6ab7 --- /dev/null +++ b/pages.zh/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> 这是 `-p linux stdbuf` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux stdbuf` diff --git a/pages.zh/osx/gstty.md b/pages.zh/osx/gstty.md new file mode 100644 index 0000000000..7eb6489153 --- /dev/null +++ b/pages.zh/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> 这是 `-p linux stty` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux stty` diff --git a/pages.zh/osx/gsum.md b/pages.zh/osx/gsum.md new file mode 100644 index 0000000000..faac9f72f7 --- /dev/null +++ b/pages.zh/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> 这是 `-p linux sum` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux sum` diff --git a/pages.zh/osx/gsync.md b/pages.zh/osx/gsync.md new file mode 100644 index 0000000000..9b27c537ea --- /dev/null +++ b/pages.zh/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> 这是 `-p linux sync` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux sync` diff --git a/pages.zh/osx/gtac.md b/pages.zh/osx/gtac.md new file mode 100644 index 0000000000..8a822915c7 --- /dev/null +++ b/pages.zh/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> 这是 `-p linux tac` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux tac` diff --git a/pages.zh/osx/gtail.md b/pages.zh/osx/gtail.md new file mode 100644 index 0000000000..bbc4f2fb95 --- /dev/null +++ b/pages.zh/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> 这是 `-p linux tail` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux tail` diff --git a/pages.zh/osx/gtalk.md b/pages.zh/osx/gtalk.md new file mode 100644 index 0000000000..6d4909351c --- /dev/null +++ b/pages.zh/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> 这是 `-p linux talk` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux talk` diff --git a/pages.zh/osx/gtar.md b/pages.zh/osx/gtar.md new file mode 100644 index 0000000000..b73fb01a4e --- /dev/null +++ b/pages.zh/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> 这是 `-p linux tar` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux tar` diff --git a/pages.zh/osx/gtee.md b/pages.zh/osx/gtee.md new file mode 100644 index 0000000000..147e95e64e --- /dev/null +++ b/pages.zh/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> 这是 `-p linux tee` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux tee` diff --git a/pages.zh/osx/gtelnet.md b/pages.zh/osx/gtelnet.md new file mode 100644 index 0000000000..ebd1443755 --- /dev/null +++ b/pages.zh/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> 这是 `-p linux telnet` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux telnet` diff --git a/pages.zh/osx/gtest.md b/pages.zh/osx/gtest.md new file mode 100644 index 0000000000..87e42a8df3 --- /dev/null +++ b/pages.zh/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> 这是 `-p linux test` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux test` diff --git a/pages.zh/osx/gtftp.md b/pages.zh/osx/gtftp.md new file mode 100644 index 0000000000..1cb05616d3 --- /dev/null +++ b/pages.zh/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> 这是 `-p linux tftp` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux tftp` diff --git a/pages.zh/osx/gtime.md b/pages.zh/osx/gtime.md new file mode 100644 index 0000000000..ee15b33627 --- /dev/null +++ b/pages.zh/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> 这是 `-p linux time` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux time` diff --git a/pages.zh/osx/gtimeout.md b/pages.zh/osx/gtimeout.md new file mode 100644 index 0000000000..b035a28e34 --- /dev/null +++ b/pages.zh/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> 这是 `-p linux timeout` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux timeout` diff --git a/pages.zh/osx/gtouch.md b/pages.zh/osx/gtouch.md new file mode 100644 index 0000000000..1dd53e479f --- /dev/null +++ b/pages.zh/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> 这是 `-p linux touch` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux touch` diff --git a/pages.zh/osx/gtr.md b/pages.zh/osx/gtr.md new file mode 100644 index 0000000000..9081e3cf25 --- /dev/null +++ b/pages.zh/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> 这是 `-p linux tr` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux tr` diff --git a/pages.zh/osx/gtraceroute.md b/pages.zh/osx/gtraceroute.md new file mode 100644 index 0000000000..88fa7392cd --- /dev/null +++ b/pages.zh/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> 这是 `-p linux traceroute` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux traceroute` diff --git a/pages.zh/osx/gtrue.md b/pages.zh/osx/gtrue.md new file mode 100644 index 0000000000..66839d346b --- /dev/null +++ b/pages.zh/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> 这是 `-p linux true` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux true` diff --git a/pages.zh/osx/gtruncate.md b/pages.zh/osx/gtruncate.md new file mode 100644 index 0000000000..b65343df14 --- /dev/null +++ b/pages.zh/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> 这是 `-p linux truncate` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux truncate` diff --git a/pages.zh/osx/gtsort.md b/pages.zh/osx/gtsort.md new file mode 100644 index 0000000000..a3039b33ce --- /dev/null +++ b/pages.zh/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> 这是 `-p linux tsort` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux tsort` diff --git a/pages.zh/osx/gtty.md b/pages.zh/osx/gtty.md new file mode 100644 index 0000000000..9bb8f53184 --- /dev/null +++ b/pages.zh/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> 这是 `-p linux tty` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux tty` diff --git a/pages.zh/osx/guname.md b/pages.zh/osx/guname.md new file mode 100644 index 0000000000..2f91336037 --- /dev/null +++ b/pages.zh/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> 这是 `-p linux uname` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux uname` diff --git a/pages.zh/osx/gunexpand.md b/pages.zh/osx/gunexpand.md new file mode 100644 index 0000000000..81f6d52ea9 --- /dev/null +++ b/pages.zh/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> 这是 `-p linux unexpand` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux unexpand` diff --git a/pages.zh/osx/guniq.md b/pages.zh/osx/guniq.md new file mode 100644 index 0000000000..7166cf5bf6 --- /dev/null +++ b/pages.zh/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> 这是 `-p linux uniq` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux uniq` diff --git a/pages.zh/osx/gunits.md b/pages.zh/osx/gunits.md new file mode 100644 index 0000000000..8d08dba6bc --- /dev/null +++ b/pages.zh/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> 这是 `-p linux units` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux units` diff --git a/pages.zh/osx/gunlink.md b/pages.zh/osx/gunlink.md new file mode 100644 index 0000000000..3c66739c61 --- /dev/null +++ b/pages.zh/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> 这是 `-p linux unlink` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux unlink` diff --git a/pages.zh/osx/gupdatedb.md b/pages.zh/osx/gupdatedb.md new file mode 100644 index 0000000000..008198f9e6 --- /dev/null +++ b/pages.zh/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> 这是 `-p linux updatedb` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux updatedb` diff --git a/pages.zh/osx/guptime.md b/pages.zh/osx/guptime.md new file mode 100644 index 0000000000..527028ec4c --- /dev/null +++ b/pages.zh/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> 这是 `-p linux uptime` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux uptime` diff --git a/pages.zh/osx/gusers.md b/pages.zh/osx/gusers.md new file mode 100644 index 0000000000..ef2a36ebee --- /dev/null +++ b/pages.zh/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> 这是 `-p linux users` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux users` diff --git a/pages.zh/osx/gvdir.md b/pages.zh/osx/gvdir.md new file mode 100644 index 0000000000..987e12afb8 --- /dev/null +++ b/pages.zh/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> 这是 `-p linux vdir` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux vdir` diff --git a/pages.zh/osx/gwc.md b/pages.zh/osx/gwc.md new file mode 100644 index 0000000000..7f87e76069 --- /dev/null +++ b/pages.zh/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> 这是 `-p linux wc` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux wc` diff --git a/pages.zh/osx/gwhich.md b/pages.zh/osx/gwhich.md new file mode 100644 index 0000000000..4b29bab940 --- /dev/null +++ b/pages.zh/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> 这是 `-p linux which` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux which` diff --git a/pages.zh/osx/gwho.md b/pages.zh/osx/gwho.md new file mode 100644 index 0000000000..3ce7161424 --- /dev/null +++ b/pages.zh/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> 这是 `-p linux who` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux who` diff --git a/pages.zh/osx/gwhoami.md b/pages.zh/osx/gwhoami.md new file mode 100644 index 0000000000..6adee6d459 --- /dev/null +++ b/pages.zh/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> 这是 `-p linux whoami` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux whoami` diff --git a/pages.zh/osx/gwhois.md b/pages.zh/osx/gwhois.md new file mode 100644 index 0000000000..4bddcbb5b1 --- /dev/null +++ b/pages.zh/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> 这是 `-p linux whois` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux whois` diff --git a/pages.zh/osx/gxargs.md b/pages.zh/osx/gxargs.md new file mode 100644 index 0000000000..74b1968c5f --- /dev/null +++ b/pages.zh/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> 这是 `-p linux xargs` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux xargs` diff --git a/pages.zh/osx/gyes.md b/pages.zh/osx/gyes.md new file mode 100644 index 0000000000..a1c17dc4e1 --- /dev/null +++ b/pages.zh/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> 这是 `-p linux yes` 命令的一个别名。 + +- 原命令的文档在: + +`tldr -p linux yes` diff --git a/pages.zh/osx/ipconfig.md b/pages.zh/osx/ipconfig.md new file mode 100644 index 0000000000..9f0e026170 --- /dev/null +++ b/pages.zh/osx/ipconfig.md @@ -0,0 +1,12 @@ +# ipconfig + +> 查看和编辑网卡信息. +> 更多信息:. + +- 列出所有的网卡: + +`ipconfig getiflist` + +- 获取特定网卡的地址信息: + +`ipconfig getifaddr {{接口名称}}` diff --git a/pages.zh/osx/launchd.md b/pages.zh/osx/launchd.md new file mode 100644 index 0000000000..09f6d6a136 --- /dev/null +++ b/pages.zh/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> 这是 `launchctl` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr launchctl` diff --git a/pages.zh/osx/md5.md b/pages.zh/osx/md5.md index 0893f25766..4c0e5c832f 100644 --- a/pages.zh/osx/md5.md +++ b/pages.zh/osx/md5.md @@ -5,15 +5,15 @@ - 计算一个文件的 MD5 校验值: -`md5 {{文件名}}` +`md5 {{路径/到/文件}}` - 计算多个文件的 MD5 校验值: -`md5 {{文件名 1}} {{文件名 2}}` +`md5 {{路径/到/文件1 路径/到/文件2 ...}}` - 仅输出 MD5 校验值(无文件名): -`md5 -q {{文件名}}` +`md5 -q {{路径/到/文件}}` - 打印给定字符串的 MD5 校验值: diff --git a/pages.zh/osx/pbcopy.md b/pages.zh/osx/pbcopy.md index 245a6ddf17..f867516ad8 100644 --- a/pages.zh/osx/pbcopy.md +++ b/pages.zh/osx/pbcopy.md @@ -1,11 +1,12 @@ # pbcopy -> 将标准输出放入剪贴板(命令行里的 cmd + C)。 +> 将来自标准输入的数据放入剪贴板。 +> 相当于在键盘上按下 Cmd + C. > 更多信息:. - 将文件的内容放入剪贴板: -`pbcopy < {{文件}}` +`pbcopy < {{路径/到/文件}}` - 将命令的执行结果放入剪贴板: diff --git a/pages.zh/osx/pbpaste.md b/pages.zh/osx/pbpaste.md index c7f140ef35..47eac98ef0 100644 --- a/pages.zh/osx/pbpaste.md +++ b/pages.zh/osx/pbpaste.md @@ -1,11 +1,12 @@ # pbpaste -> 将剪贴板的内容发送到标准输出(命令行)。 +> 将剪贴板的内容发送到标准输出。 +> 相当于在键盘上按下 Cmd + V. > 更多信息:. - 将剪贴板的内容写入文件: -`pbpaste > {{文件}}` +`pbpaste > {{路径/到/文件}}` - 将剪贴板的内容用作命令的输入: diff --git a/pages.zh/osx/ping.md b/pages.zh/osx/ping.md index dd2af3ea12..ba931f87cc 100644 --- a/pages.zh/osx/ping.md +++ b/pages.zh/osx/ping.md @@ -11,7 +11,7 @@ `ping -c {{次数}} {{主机}}` -- ping `主机` , 指定请求之间的间隔(以`秒`为单位)(默认为 1 秒): +- Ping `主机` , 指定请求之间的间隔(以`秒`为单位)(默认为 1 秒): `ping -i {{秒}} {{主机}}` @@ -19,10 +19,10 @@ `ping -n {{主机}}` -- ping `主机` 并在收到数据包时响铃(如果您的终端支持): +- Ping `主机` 并在收到数据包时响铃(如果您的终端支持): `ping -a {{主机}}` -- ping `主机` 并打印接收数据包的时间(此选项是 Apple 的附加项): +- Ping `主机` 并打印接收数据包的时间(此选项是 Apple 的附加项): `ping --apple-time {{主机}}` diff --git a/pages.zh/osx/qlmanage.md b/pages.zh/osx/qlmanage.md index d61cfae0f2..7241cb222c 100644 --- a/pages.zh/osx/qlmanage.md +++ b/pages.zh/osx/qlmanage.md @@ -5,7 +5,7 @@ - 快速显示一个或多个文件: -`qlmanage -p {{文件名}} {{文件名 2}}` +`qlmanage -p {{路径/到/文件1 路径/到/文件2 ...}}` - 计算生成当前目录中所有 jpeg 文件的缩略图,300px 宽 png 格式,并将它们放在一个指定目录中: diff --git a/pages.zh/osx/say.md b/pages.zh/osx/say.md index d16df0e686..6cd6c05fc7 100644 --- a/pages.zh/osx/say.md +++ b/pages.zh/osx/say.md @@ -5,20 +5,24 @@ - 大声说出一个句子: -`say "{{你好,世界!}}"` +`say "{{我喜欢骑脚踏车。}}"` - 播放文本文件内容音频: -`say -f {{文件名.txt}}` +`say --input-file={{文件名.txt}}` - 用自定义的语音和语音速率说出一个句子: -`say -v {{语音库名}} -r {{每分钟多少词}} "{{你好,我可以说中文.}}"` +`say --voice={{语音库名}} --rate={{每分钟多少词}} "{{戴夫,我很抱歉,我不能让你那么干。}}"` -- 列出可用的语音库: +- 列出可用的语音库(不同的语音用于不同的语言): `say --voice="?"` +- 用波兰语说一个句子: + +`say --voice={{Zosia}} "{{Litwo, ojczyzno moja!}}"` + - 创建文本的音频文件: -`say -o {{文件名.aiff}} "{{你好,请将录音内容输出到文件.}}"` +`say --output-file={{文件名.aiff}} "{{献给疯狂的人们。}}"` diff --git a/pages.zh/osx/sed.md b/pages.zh/osx/sed.md index 921bbc38e8..184df2d06a 100644 --- a/pages.zh/osx/sed.md +++ b/pages.zh/osx/sed.md @@ -1,7 +1,7 @@ # sed > 以可用脚本的来批量编辑文本。 -> 更多信息:. +> 更多信息:. - 替换文件中第一个出现的字符串,并打印结果: diff --git a/pages.zh/osx/wifi-password.md b/pages.zh/osx/wifi-password.md index a44cb79b80..56c973f356 100644 --- a/pages.zh/osx/wifi-password.md +++ b/pages.zh/osx/wifi-password.md @@ -1,13 +1,13 @@ # wifi-password -> 获取 wifi 的密码。 +> 获取 Wi-Fi 的密码。 > 更多信息:. -- 获取你当前登录的 wifi 的密码: +- 获取你当前登录的 Wi-Fi 的密码: `wifi-password` -- 获取特定 SSID 的 wifi 的密码: +- 获取特定 SSID 的 Wi-Fi 的密码: `wifi-password {{ssid}}` diff --git a/pages.zh/osx/xed.md b/pages.zh/osx/xed.md index c89feb08b7..2e86ceedf3 100644 --- a/pages.zh/osx/xed.md +++ b/pages.zh/osx/xed.md @@ -9,8 +9,8 @@ - 在 Xcode 中打开文件,如果不存在则创建: -`xed -c {{文件名}}` +`xed --create {{文件名}}` - 在 Xcode 中打开一个文件并跳转到第 75 行: -`xed -l 75 {{文件名}}` +`xed --line 75 {{文件名}}` diff --git a/pages.zh/windows/chrome.md b/pages.zh/windows/chrome.md new file mode 100644 index 0000000000..880439337d --- /dev/null +++ b/pages.zh/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> 这是 `chromium` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr chromium` diff --git a/pages.zh/windows/cpush.md b/pages.zh/windows/cpush.md new file mode 100644 index 0000000000..a226ae46c8 --- /dev/null +++ b/pages.zh/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> 这是 `choco-push` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr choco-push` diff --git a/pages.zh/windows/curl.md b/pages.zh/windows/curl.md new file mode 100644 index 0000000000..8c11ed0d8c --- /dev/null +++ b/pages.zh/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> 这是 `curl -p common` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr curl -p common` diff --git a/pages.zh/windows/iwr.md b/pages.zh/windows/iwr.md new file mode 100644 index 0000000000..1ad3ec1056 --- /dev/null +++ b/pages.zh/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> 这是 `invoke-webrequest` 命令的一个别名。 + +- 原命令的文档在: + +`tldr invoke-webrequest` diff --git a/pages.zh/windows/pwsh-where.md b/pages.zh/windows/pwsh-where.md new file mode 100644 index 0000000000..a1d6c65450 --- /dev/null +++ b/pages.zh/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> 这是 `Where-Object` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr Where-Object` diff --git a/pages.zh/windows/rd.md b/pages.zh/windows/rd.md new file mode 100644 index 0000000000..40efcc572d --- /dev/null +++ b/pages.zh/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> 这是 `rmdir` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr rmdir` diff --git a/pages.zh/windows/sls.md b/pages.zh/windows/sls.md new file mode 100644 index 0000000000..2753fa0ab4 --- /dev/null +++ b/pages.zh/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> 这是 `where-object` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr where-object` diff --git a/pages.zh/windows/wget.md b/pages.zh/windows/wget.md new file mode 100644 index 0000000000..d071a1a13f --- /dev/null +++ b/pages.zh/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> 这是 `wget -p common` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr wget -p common` diff --git a/pages.zh_TW/android/bugreport.md b/pages.zh_TW/android/bugreport.md index 596ccdc0bd..406d0648a6 100644 --- a/pages.zh_TW/android/bugreport.md +++ b/pages.zh_TW/android/bugreport.md @@ -2,7 +2,7 @@ > 顯示安卓的 Bug 報告。 > 該命令只能透過 `adb shell` 使用。 -> 更多資訊:. +> 更多資訊:. - 顯示 Android 裝置的完整錯誤報告: diff --git a/pages.zh_TW/android/bugreportz.md b/pages.zh_TW/android/bugreportz.md index e31b09cbc0..a00a1c7f8d 100644 --- a/pages.zh_TW/android/bugreportz.md +++ b/pages.zh_TW/android/bugreportz.md @@ -2,7 +2,7 @@ > 生成一個壓縮的 Android 錯誤報告。 > 此命令只能透過 `adb shell` 使用。 -> 更多資訊:. +> 更多資訊:. - 生成一個完整的 Android 裝置壓縮錯誤報告: diff --git a/pages.zh_TW/android/cmd.md b/pages.zh_TW/android/cmd.md index 4354f22fde..03fcf3c384 100644 --- a/pages.zh_TW/android/cmd.md +++ b/pages.zh_TW/android/cmd.md @@ -1,7 +1,7 @@ # cmd > Android 服務管理器。 -> 更多資訊:. +> 更多資訊:. - 列出所有正在執行的服務: diff --git a/pages.zh_TW/common/alias.md b/pages.zh_TW/common/alias.md new file mode 100644 index 0000000000..dc094632d0 --- /dev/null +++ b/pages.zh_TW/common/alias.md @@ -0,0 +1,29 @@ +# alias + +> 建立快捷鍵名稱 -- 取代命令字串的單字。 +> 快捷鍵只會在現有的 shell 有效,除非在 shell 的設定檔中定義快捷鍵,例如:`~/.bashrc`. +> 更多資訊:. + +- 列出所有快捷鍵: + +`alias` + +- 建立快捷鍵: + +`alias {{快捷名稱}}="{{命令字串}}"` + +- 查看與給定名稱有關的快捷鍵: + +`alias {{快捷名稱}}` + +- 移除快捷鍵: + +`unalias {{快捷名稱}}` + +- 將 `rm` 變成互動式指令: + +`alias {{rm}}="{{rm --interactive}}"` + +- 建立 `la` 作為 `ls --all` 的捷徑: + +`alias {{la}}="{{ls --all}}"` diff --git a/pages.zh_TW/common/aws.md b/pages.zh_TW/common/aws.md new file mode 100644 index 0000000000..c74b50e525 --- /dev/null +++ b/pages.zh_TW/common/aws.md @@ -0,0 +1,37 @@ +# aws + +> Amazon Web Services 官方的命令列介面工具。 +> 此命令也有關於其子命令的文件,例如:`aws s3`. +> 更多資訊:. + +- 設定 AWS 命令列: + +`aws configure wizard` + +- 使用 SSO 設定 AWS 命令​​列: + +`aws configure sso` + +- 查看 AWS 指令​​的說明: + +`aws {{AWS指令}} help` + +- 取得呼叫者身分(用於排除權限問題): + +`aws sts get-caller-identity` + +- 列出某個區域中的 AWS Dynamodb 並以 YAML 輸出: + +`aws dynamodb list-tables --region {{區域}} --output yaml` + +- 使用自動提示來幫助執行命令,: + +`aws iam create-user --cli-auto-prompt` + +- 取得 AWS 互動式精靈: + +`aws {{指令}} wizard {{精靈名稱}}` + +- 產生 JSON CLI 骨架(對於基礎設施即程式碼有用): + +`aws dynamodb update-table --generate-cli-skeleton` diff --git a/pages.zh_TW/common/az.md b/pages.zh_TW/common/az.md index 1de75c8e90..213680505c 100644 --- a/pages.zh_TW/common/az.md +++ b/pages.zh_TW/common/az.md @@ -2,7 +2,7 @@ > Microsoft Azure 的官方客戶端工具。 > 此命令也有關於其子命令的文件,例如:`az login`. -> 更多資訊:. +> 更多資訊:. - 登錄到 Azure: diff --git a/pages.zh_TW/common/bash.md b/pages.zh_TW/common/bash.md index ca0a5ad956..b8c101f6b6 100644 --- a/pages.zh_TW/common/bash.md +++ b/pages.zh_TW/common/bash.md @@ -24,7 +24,7 @@ `bash -e {{sh檔}}` -- 從標準輸入 (stdin) 讀取並執行指令: +- 從標準輸入 (`stdin`) 讀取並執行指令: `bash -s` diff --git a/pages.zh_TW/common/bundler.md b/pages.zh_TW/common/bundler.md new file mode 100644 index 0000000000..36b58cea98 --- /dev/null +++ b/pages.zh_TW/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> 這是 `bundle` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr bundle` diff --git a/pages.zh_TW/common/chezmoi.md b/pages.zh_TW/common/chezmoi.md new file mode 100644 index 0000000000..f24d5cbc7e --- /dev/null +++ b/pages.zh_TW/common/chezmoi.md @@ -0,0 +1,32 @@ +# Chezmoi + +> 一個用 Go 語言寫的 dotfile 管理工具。 +> 更多資訊:. + +- 初始化 chezmoi: + +`chezmoi init` + +- 叫 chezmoi 管理一個 dotfile: + +`chezmoi add {{檔案/完整/路徑}}` + +- 編輯一個已管理的 dotfile: + +`chezmoi edit {檔案/完整/路徑}}` + +- 檢視 chezmoi 所做的更動: + +`chezmoi diff` + +- 套用所做的更動: + +`chezmoi -v apply` + +- 用一個已存在的 git repository 來初始化 chezmoi: + +`chezmoi init {{https://example.com/path/to/repository.git}}` + +- 從遠端的 repository 獲取所做的更動: + +`chezmoi update` diff --git a/pages.zh_TW/common/chmod.md b/pages.zh_TW/common/chmod.md new file mode 100644 index 0000000000..ede1d47a5d --- /dev/null +++ b/pages.zh_TW/common/chmod.md @@ -0,0 +1,37 @@ +# chmod + +> 修改文件或目錄的存取權限。 +> 使用者類型分為檔案所有者(u)、檔案所有者之群組(g)、以及其他使用者(o)。 +> 更多資訊:. + +- 給予文件所有者執行的權限: + +`chmod u+x {{檔案/完整/路徑}}` + +- 給予使用者讀寫權利: + +`chmod u+rw {{檔案/完整/路徑}}` + +- 移除群組執行權限: + +`chmod g-x {{檔案/完整/路徑}}` + +- 給予全部使用者讀與執行權限: + +`chmod a+rx {{檔案/完整/路徑}}` + +- 給予其他使用者(o)和檔案所有者之群組(g)一樣的權限: + +`chmod o=g {{檔案/完整/路徑}}` + +- 移除其他使用者(o)的全部權限: + +`chmod o= {{檔案/完整/路徑}}` + +- 改變目錄底下所有檔案以及目錄的權限,給予檔案所有者之群組寫的權限,以及其他使用者寫的權限: + +`chmod -R g+w,o+w {{目標目錄}}` + +- 改變目錄底下所有檔案以及目錄的權限,給予全部使用者讀與對其底下檔案之執行權限: + +`chmod -R a+rX {{目標目錄}}` diff --git a/pages.zh_TW/common/clamav.md b/pages.zh_TW/common/clamav.md new file mode 100644 index 0000000000..1d2ba878c3 --- /dev/null +++ b/pages.zh_TW/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> 這是 `clamdscan` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr clamdscan` diff --git a/pages.zh_TW/common/cron.md b/pages.zh_TW/common/cron.md new file mode 100644 index 0000000000..90cefb5062 --- /dev/null +++ b/pages.zh_TW/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> 這是 `crontab` 命令的一個別名。 + +- 原命令的文件在: + +`tldr crontab` diff --git a/pages.zh_TW/common/crontab.md b/pages.zh_TW/common/crontab.md new file mode 100644 index 0000000000..de33a2a312 --- /dev/null +++ b/pages.zh_TW/common/crontab.md @@ -0,0 +1,36 @@ +# crontab + +> 排程作業按時間間隔執行。 +> 更多資訊:. + +- 編輯目前使用者的排程文件: + +`crontab -e` + +- 編輯特定使用者的排程文件: + +`sudo crontab -e -u {{使用者名稱}}` + +- 用給定檔案的內容取代目前的排程文件: + +`crontab {{檔案/完整/路徑}}` + +- 查看目前使用者的排程: + +`crontab -l` + +- 刪除目前使用者的所有排程: + +`crontab -r` + +- 範例排程:每天於 10:00 時執行, `*` 表示任意值: + +`0 10 * * * {{執行命令}}` + +- 範例排程:每 10 分鐘執行一次命令: + +`*/10 * * * * {{執行命令}}` + +- 範例排程:每週五 02:30 執行sh檔: + +`30 2 * * Fri {{sh檔路徑}}` diff --git a/pages.zh_TW/common/curl.md b/pages.zh_TW/common/curl.md index 8b59a2bafa..5bced01161 100644 --- a/pages.zh_TW/common/curl.md +++ b/pages.zh_TW/common/curl.md @@ -2,7 +2,7 @@ > 向 / 從一個伺服器傳輸數據。 > 支持大多數協議,包括 HTTP、FTP 和 POP3. -> 更多資訊:. +> 更多資訊:. - 將指定 URL 的內容下載到檔案: diff --git a/pages.zh_TW/common/dotnet.md b/pages.zh_TW/common/dotnet.md index 42e279270e..cea06c0581 100644 --- a/pages.zh_TW/common/dotnet.md +++ b/pages.zh_TW/common/dotnet.md @@ -2,7 +2,7 @@ > 適用於 .NET Core 的跨平台 .NET 命令列工具。 > 此命令也有關於其子命令的文件,例如:`dotnet build`. -> 更多資訊:. +> 更多資訊:. - 初始化一個新的 .NET 專案: diff --git a/pages.zh_TW/common/du.md b/pages.zh_TW/common/du.md new file mode 100644 index 0000000000..53ec83b08b --- /dev/null +++ b/pages.zh_TW/common/du.md @@ -0,0 +1,28 @@ +# du + +> 硬碟使用量:估算每個檔案以及目錄所佔用的硬碟容量。 +> 更多資訊:. + +- 以給定單位(B/KiB/MiB)列出目錄和所有子目錄的大小: + +`du -{{b|k|m}} {{目錄路徑}}` + +- 以人類可讀形式(自動選擇單位)列出目錄和所有子目錄的大小: + +`du -h {{目錄路徑}}` + +- 以人類可讀形式(自動選擇單位)列出單一目錄大小: + +`du -sh {{目錄路徑}}` + +- 以人類可讀形式(自動選擇單位)列出目錄以及底下所有檔案大小: + +`du -ah {{目錄路徑}}` + +- 以人類可讀形式列出目錄和任何子目錄的大小,最多 N 層: + +`du -h --max-depth=N {{目錄路徑}}` + +- 以人類可讀形式列出目前目錄子目錄中所有 `.jpg` 檔案的大小,並在最後顯示累積總數: + +`du -ch {{*/*.jpg}}` diff --git a/pages.zh_TW/common/fossil-ci.md b/pages.zh_TW/common/fossil-ci.md new file mode 100644 index 0000000000..826beb6469 --- /dev/null +++ b/pages.zh_TW/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil-ci + +> 這是 `fossil-commit` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr fossil-commit` diff --git a/pages.zh_TW/common/fossil-delete.md b/pages.zh_TW/common/fossil-delete.md new file mode 100644 index 0000000000..b277c20008 --- /dev/null +++ b/pages.zh_TW/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil-delete + +> 這是 `fossil rm` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr fossil rm` diff --git a/pages.zh_TW/common/fossil-forget.md b/pages.zh_TW/common/fossil-forget.md new file mode 100644 index 0000000000..c539cea453 --- /dev/null +++ b/pages.zh_TW/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil-forget + +> 這是 `fossil rm` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr fossil rm` diff --git a/pages.zh_TW/common/fossil-new.md b/pages.zh_TW/common/fossil-new.md new file mode 100644 index 0000000000..92a4dec43c --- /dev/null +++ b/pages.zh_TW/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil-new + +> 這是 `fossil-init` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr fossil-init` diff --git a/pages.zh_TW/common/gh-cs.md b/pages.zh_TW/common/gh-cs.md new file mode 100644 index 0000000000..c9dd4dff5f --- /dev/null +++ b/pages.zh_TW/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh-cs + +> 這是 `gh-codespace` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr gh-codespace` diff --git a/pages.zh_TW/common/gnmic-sub.md b/pages.zh_TW/common/gnmic-sub.md new file mode 100644 index 0000000000..009229d25f --- /dev/null +++ b/pages.zh_TW/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic-sub + +> 這是 `gnmic subscribe` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr gnmic subscribe` diff --git a/pages.zh_TW/common/google-chrome.md b/pages.zh_TW/common/google-chrome.md new file mode 100644 index 0000000000..9dbc6d8530 --- /dev/null +++ b/pages.zh_TW/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> 這是 `chromium` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr chromium` diff --git a/pages.zh_TW/common/hx.md b/pages.zh_TW/common/hx.md new file mode 100644 index 0000000000..3f6e69bed0 --- /dev/null +++ b/pages.zh_TW/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> 這是 `helix` 命令的一個別名。 + +- 原命令的文件在: + +`tldr helix` diff --git a/pages.zh_TW/common/kafkacat.md b/pages.zh_TW/common/kafkacat.md new file mode 100644 index 0000000000..2c97797949 --- /dev/null +++ b/pages.zh_TW/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> 這是 `kcat` 命令的一個別名。 + +- 原命令的文件在: + +`tldr kcat` diff --git a/pages.zh_TW/common/latex.md b/pages.zh_TW/common/latex.md new file mode 100644 index 0000000000..78b9a76a1a --- /dev/null +++ b/pages.zh_TW/common/latex.md @@ -0,0 +1,16 @@ +# latex + +> 從 LaTeX 原始檔編譯 DVI 文件。 +> 更多資訊:. + +- 編譯 DVI 文件: + +`latex {{tex 檔案}}` + +- 編譯 DVI 文件,指定輸出位置: + +`latex -output-directory={{輸出目錄位置}} {{tex 檔案}}` + +- 編譯 DVI 文件,出錯時退出: + +`latex -halt-on-error {{tex 檔案}}` diff --git a/pages.zh_TW/common/lzcat.md b/pages.zh_TW/common/lzcat.md new file mode 100644 index 0000000000..93b8246978 --- /dev/null +++ b/pages.zh_TW/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> 這是 `xz` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr xz` diff --git a/pages.zh_TW/common/lzma.md b/pages.zh_TW/common/lzma.md new file mode 100644 index 0000000000..217a102eb7 --- /dev/null +++ b/pages.zh_TW/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> 這是 `xz` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr xz` diff --git a/pages.zh_TW/common/mkdir.md b/pages.zh_TW/common/mkdir.md index f0a7a6a872..d8e610ec8c 100644 --- a/pages.zh_TW/common/mkdir.md +++ b/pages.zh_TW/common/mkdir.md @@ -10,3 +10,7 @@ - 遞迴建立目錄,若上層目錄尚未被建立則會一併建立: `mkdir -p {{目錄/完整/路徑}}` + +- 使用指定的權限建立新目錄: + +`mkdir -m {{rwxrw-r--}} {{目錄/完整/路徑}}` diff --git a/pages.zh_TW/common/mysql.md b/pages.zh_TW/common/mysql.md new file mode 100644 index 0000000000..946eb08c83 --- /dev/null +++ b/pages.zh_TW/common/mysql.md @@ -0,0 +1,32 @@ +# mysql + +> MySQL 命令列工具。 +> 更多資訊:. + +- 與資料庫連線: + +`mysql {{資料庫名稱}}}` + +- 與資料庫連線,系統將提示使用者輸入密碼: + +`mysql -u {{使用者名稱}} --password {{資料庫名稱}}}` + +- 連線到另一台主機上的資料庫: + +`mysql -h {{資料庫主機}} {{資料庫名稱}}}` + +- 透過 Unix 通訊端連接到資料庫: + +`mysql --socket {{sock 檔路徑}}` + +- 執行腳本檔案(批次檔)中的 `SQL` 語句: + +`mysql -e "source {{sql 檔案}}" {{資料庫名稱}}}` + +- 用 `mysqldump` 建立的備份還原資料庫(系統將提示使用者輸入密碼): + +`mysql --user {{使用者名稱}} --password {{資料庫名稱}} < {{sql 備份檔路徑}}` + +- 從備份中恢復所有資料庫(系統將提示使用者輸入密碼): + +`mysql --user {{使用者名稱}} --password < {{sql 備份檔路徑}}` diff --git a/pages.zh_TW/common/nm-classic.md b/pages.zh_TW/common/nm-classic.md new file mode 100644 index 0000000000..e42787bf0d --- /dev/null +++ b/pages.zh_TW/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> 這是 `nm` 命令的一個別名。 + +- 原命令的文件在: + +`tldr nm` diff --git a/pages.zh_TW/common/nohup.md b/pages.zh_TW/common/nohup.md new file mode 100644 index 0000000000..5eae61457d --- /dev/null +++ b/pages.zh_TW/common/nohup.md @@ -0,0 +1,20 @@ +# nohup + +> 當終端被關閉時允許程序繼續存在運作。 +> 更多資訊: . + +- 執行一個可以在終端機之外繼續執行的程序: + +`nohup {{程序指令}} {{參數1 參數2 ...}}` + +- 在背景啟動 `nohup`: + +`nohup {{程序指令}} {{參數1 參數2 ...}} &` + +- 執行可以在終端機之外繼續執行的的 `.sh` 檔: + +`nohup {{sh檔案}} &` + +- 執行一個程序並將其輸出寫入特定文件: + +`nohup {{程序指令}} {{參數1 參數2 ...}} > {{文件路徑}} &` diff --git a/pages.zh_TW/common/ntl.md b/pages.zh_TW/common/ntl.md new file mode 100644 index 0000000000..bdaacef0ea --- /dev/null +++ b/pages.zh_TW/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> 這是 `netlify` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr netlify` diff --git a/pages.zh_TW/common/p10k.md b/pages.zh_TW/common/p10k.md new file mode 100644 index 0000000000..17b145badb --- /dev/null +++ b/pages.zh_TW/common/p10k.md @@ -0,0 +1,16 @@ +# p10k + +> 管理 powerlevel10k 的設定。 +> 更多資訊:. + +- 互動式設定 powerlevel10k: + +`p10k configure` + +- 重新載入 powerlevel10k: + +`p10k reload` + +- 顯示幫助頁面: + +`p10k help` diff --git a/pages.zh_TW/common/ping.md b/pages.zh_TW/common/ping.md new file mode 100644 index 0000000000..9d75a9e565 --- /dev/null +++ b/pages.zh_TW/common/ping.md @@ -0,0 +1,28 @@ +# ping + +> 向網路主機發送 ICMP ECHO_REQUEST 封包。 +> 更多資訊:. + +- Ping 主機: + +`ping {{主機}}` + +- 對主機執行特定次數的 ping 操作: + +`ping -c {{次數}} {{主機}}` + +- Ping 主機,指定發送間隔(以秒為單位)(預設為 1 秒): + +`ping -i {{秒數}} {{主機}}` + +- Ping 主機,只以數字形式輸出,不嘗試查找名稱: + +`ping -n {{主機}}` + +- Ping 主機並在收到封包時響鈴(如果您的終端支援): + +`ping -a {{主機}}` + +- 如果未收到回應,也會顯示訊息: + +`ping -O {{host}}` diff --git a/pages.zh_TW/common/ptpython3.md b/pages.zh_TW/common/ptpython3.md new file mode 100644 index 0000000000..a7063f8635 --- /dev/null +++ b/pages.zh_TW/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> 這是 `ptpython` 命令的一個別名。 + +- 原命令的文件在: + +`tldr ptpython` diff --git a/pages.zh_TW/common/python3.md b/pages.zh_TW/common/python3.md new file mode 100644 index 0000000000..5d076df844 --- /dev/null +++ b/pages.zh_TW/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> 這是 `python` 命令的一個別名。 + +- 原命令的文件在: + +`tldr python` diff --git a/pages.zh_TW/common/rcat.md b/pages.zh_TW/common/rcat.md new file mode 100644 index 0000000000..0e5c142986 --- /dev/null +++ b/pages.zh_TW/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> 這是 `rc` 命令的一個別名。 + +- 原命令的文件在: + +`tldr rc` diff --git a/pages.zh_TW/common/ripgrep.md b/pages.zh_TW/common/ripgrep.md new file mode 100644 index 0000000000..139cbcb985 --- /dev/null +++ b/pages.zh_TW/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> 這是 `rg` 命令的一個別名。 + +- 原命令的文件在: + +`tldr rg` diff --git a/pages.zh_TW/common/todoman.md b/pages.zh_TW/common/todoman.md new file mode 100644 index 0000000000..6c6f6184f7 --- /dev/null +++ b/pages.zh_TW/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> 這是 `todo` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr todo` diff --git a/pages.zh_TW/common/touch.md b/pages.zh_TW/common/touch.md index 7b2eb3cee1..c5271284bc 100644 --- a/pages.zh_TW/common/touch.md +++ b/pages.zh_TW/common/touch.md @@ -1,7 +1,7 @@ # touch > 改變檔案的存取與修改時間。 -> 更多資訊:. +> 更多資訊:. - 建立新檔案,或更新現存檔案的存取與修改時間: diff --git a/pages.zh_TW/common/transmission.md b/pages.zh_TW/common/transmission.md new file mode 100644 index 0000000000..e1deb05536 --- /dev/null +++ b/pages.zh_TW/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> 這是 `transmission-daemon` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr transmission-daemon` diff --git a/pages.zh_TW/common/unlzma.md b/pages.zh_TW/common/unlzma.md new file mode 100644 index 0000000000..ba55c9ad80 --- /dev/null +++ b/pages.zh_TW/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> 這是 `xz` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr xz` diff --git a/pages.zh_TW/common/unxz.md b/pages.zh_TW/common/unxz.md new file mode 100644 index 0000000000..694ceb05ce --- /dev/null +++ b/pages.zh_TW/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> 這是 `xz` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr xz` diff --git a/pages.zh_TW/common/vim.md b/pages.zh_TW/common/vim.md new file mode 100644 index 0000000000..7206b59dfa --- /dev/null +++ b/pages.zh_TW/common/vim.md @@ -0,0 +1,37 @@ +# vim + +> Vim (Vi IMproved), 是一個命令列文字編輯器,為不同類型的文字操作提供了多種模式。 +> 在正常模式下按下 `i` 進入插入模式。按 `` 返回正常模式,可以使用 Vim 指令。 +> 更多資訊:. + +- 打開檔案: + +`vim {{檔案/完整/路徑}}` + +- 使用指定行數打開檔案: + +`vim +{{指定行數}} {{檔案/完整/路徑}}` + +- 查看 Vim 指令手冊: + +`:help` + +- 儲存並且離開: + +`:wq` + +- 進入正常模式並且復原上次操作: + +`u` + +- 搜尋特定字詞: + +`/{{欲搜尋字詞}}` + +- 使用正規表示式(RE)尋找並取代整份文件: + +`:%s/{{正規表示式}}/{{取代文字}}/g` + +- 顯示行數: + +`:set nu` diff --git a/pages.zh_TW/common/xzcat.md b/pages.zh_TW/common/xzcat.md new file mode 100644 index 0000000000..fe852fa421 --- /dev/null +++ b/pages.zh_TW/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> 這是 `xz` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr xz` diff --git a/pages.zh_TW/linux/alternatives.md b/pages.zh_TW/linux/alternatives.md new file mode 100644 index 0000000000..401cf8c709 --- /dev/null +++ b/pages.zh_TW/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> 這是 `update-alternatives` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr update-alternatives` diff --git a/pages.zh_TW/linux/batcat.md b/pages.zh_TW/linux/batcat.md new file mode 100644 index 0000000000..4bb2e2f215 --- /dev/null +++ b/pages.zh_TW/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> 這是 `bat` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr bat` diff --git a/pages.zh_TW/linux/bspwm.md b/pages.zh_TW/linux/bspwm.md new file mode 100644 index 0000000000..a8c689c5c4 --- /dev/null +++ b/pages.zh_TW/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> 這是 `bspc` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr bspc` diff --git a/pages.zh_TW/linux/cc.md b/pages.zh_TW/linux/cc.md new file mode 100644 index 0000000000..234b007824 --- /dev/null +++ b/pages.zh_TW/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> 這是 `gcc` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr gcc` diff --git a/pages.zh_TW/linux/cgroups.md b/pages.zh_TW/linux/cgroups.md new file mode 100644 index 0000000000..22dc4b36ab --- /dev/null +++ b/pages.zh_TW/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> 這是 `cgclassify` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr cgclassify` diff --git a/pages.zh_TW/linux/cp.md b/pages.zh_TW/linux/cp.md index c17a4a4541..09ca9d8624 100644 --- a/pages.zh_TW/linux/cp.md +++ b/pages.zh_TW/linux/cp.md @@ -1,7 +1,7 @@ # cp > 複製檔案與資料夾。 -> 更多資訊可參考:. +> 更多資訊:. - 複製一個檔案到新位置,並重新命名: diff --git a/pages.zh_TW/linux/ip-route-list.md b/pages.zh_TW/linux/ip-route-list.md new file mode 100644 index 0000000000..e5e8d16eb2 --- /dev/null +++ b/pages.zh_TW/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip-route-list + +> 這是 `ip-route-show` 命令的一個別名。 + +- 原命令的文件在: + +`tldr ip-route-show` diff --git a/pages.zh_TW/linux/megadl.md b/pages.zh_TW/linux/megadl.md new file mode 100644 index 0000000000..fdf3e63eec --- /dev/null +++ b/pages.zh_TW/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> 這是 `megatools-dl` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr megatools-dl` diff --git a/pages.zh_TW/linux/top.md b/pages.zh_TW/linux/top.md new file mode 100644 index 0000000000..d19bf8ee17 --- /dev/null +++ b/pages.zh_TW/linux/top.md @@ -0,0 +1,32 @@ +# top + +> 即時顯示系統執行程序的資訊。 +> 更多資訊:. + +- 啟動 `top`: + +`top` + +- 不顯示閒置以及殭屍行程: + +`top -i` + +- 只顯示特定使用者之程序: + +`top -u {{使用者名稱}}` + +- 依照指定領域排序: + +`top -o {{領域名稱}}` + +- 查看程序底下的所有線程: + +`top -Hp {{程序 id}}` + +- 僅顯示特定名稱程序的 PID: + +`top -p $(pgrep -d ',' {{程序名稱}})` + +- 打開協助頁面: + +`?` diff --git a/pages.zh_TW/linux/ubuntu-bug.md b/pages.zh_TW/linux/ubuntu-bug.md new file mode 100644 index 0000000000..8094b8eb38 --- /dev/null +++ b/pages.zh_TW/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> 這是 `apport-bug` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr apport-bug` diff --git a/pages.zh_TW/osx/aa.md b/pages.zh_TW/osx/aa.md new file mode 100644 index 0000000000..1f7bffa59a --- /dev/null +++ b/pages.zh_TW/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> 這是 `yaa` 命令的一個別名。 + +- 原命令的文件在: + +`tldr yaa` diff --git a/pages.zh_TW/osx/du.md b/pages.zh_TW/osx/du.md new file mode 100644 index 0000000000..2d35901183 --- /dev/null +++ b/pages.zh_TW/osx/du.md @@ -0,0 +1,28 @@ +# du + +> 硬碟使用量:估算每個檔案以及目錄所佔用的硬碟容量。 +> 更多資訊:. + +- 以給定單位(KiB/MiB/GiB)列出目錄和所有子目錄的大小: + +`du -{{k|m|g}} {{目錄路徑}}` + +- 以人類可讀形式(自動選擇單位)列出目錄和所有子目錄的大小: + +`du -h {{目錄路徑}}` + +- 以人類可讀形式(自動選擇單位)列出單一目錄大小: + +`du -sh {{目錄路徑}}` + +- 以人類可讀形式(自動選擇單位)列出目錄以及底下所有檔案大小: + +`du -ah {{目錄路徑}}` + +- 以人類可讀形式列出目錄和任何子目錄的大小,最多 N 層: + +`du -h -d {{N}} {{目錄路徑}}` + +- 以人類可讀形式列出目前目錄子目錄中所有 `.jpg` 檔案的大小,並在最後顯示累積總數: + +`du -ch {{*/*.jpg}}` diff --git a/pages.zh_TW/osx/g[.md b/pages.zh_TW/osx/g[.md new file mode 100644 index 0000000000..1b67c6767f --- /dev/null +++ b/pages.zh_TW/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> 這是 `-p linux [` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux [` diff --git a/pages.zh_TW/osx/gawk.md b/pages.zh_TW/osx/gawk.md new file mode 100644 index 0000000000..01291de480 --- /dev/null +++ b/pages.zh_TW/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> 這是 `-p linux awk` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux awk` diff --git a/pages.zh_TW/osx/gb2sum.md b/pages.zh_TW/osx/gb2sum.md new file mode 100644 index 0000000000..6c1a4353f4 --- /dev/null +++ b/pages.zh_TW/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> 這是 `-p linux b2sum` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux b2sum` diff --git a/pages.zh_TW/osx/gbase32.md b/pages.zh_TW/osx/gbase32.md new file mode 100644 index 0000000000..b13c5c1813 --- /dev/null +++ b/pages.zh_TW/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> 這是 `-p linux base32` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux base32` diff --git a/pages.zh_TW/osx/gbase64.md b/pages.zh_TW/osx/gbase64.md new file mode 100644 index 0000000000..47f609d1b8 --- /dev/null +++ b/pages.zh_TW/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> 這是 `-p linux base64` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux base64` diff --git a/pages.zh_TW/osx/gbasename.md b/pages.zh_TW/osx/gbasename.md new file mode 100644 index 0000000000..b68e412a93 --- /dev/null +++ b/pages.zh_TW/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> 這是 `-p linux basename` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux basename` diff --git a/pages.zh_TW/osx/gbasenc.md b/pages.zh_TW/osx/gbasenc.md new file mode 100644 index 0000000000..b7280a7138 --- /dev/null +++ b/pages.zh_TW/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> 這是 `-p linux basenc` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux basenc` diff --git a/pages.zh_TW/osx/gcat.md b/pages.zh_TW/osx/gcat.md new file mode 100644 index 0000000000..e2a78a9906 --- /dev/null +++ b/pages.zh_TW/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> 這是 `-p linux cat` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux cat` diff --git a/pages.zh_TW/osx/gchcon.md b/pages.zh_TW/osx/gchcon.md new file mode 100644 index 0000000000..2af17aa567 --- /dev/null +++ b/pages.zh_TW/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> 這是 `-p linux chcon` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux chcon` diff --git a/pages.zh_TW/osx/gchgrp.md b/pages.zh_TW/osx/gchgrp.md new file mode 100644 index 0000000000..6e43accbc2 --- /dev/null +++ b/pages.zh_TW/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> 這是 `-p linux chgrp` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux chgrp` diff --git a/pages.zh_TW/osx/gchmod.md b/pages.zh_TW/osx/gchmod.md new file mode 100644 index 0000000000..7218146f04 --- /dev/null +++ b/pages.zh_TW/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> 這是 `-p linux chmod` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux chmod` diff --git a/pages.zh_TW/osx/gchown.md b/pages.zh_TW/osx/gchown.md new file mode 100644 index 0000000000..8137b8a109 --- /dev/null +++ b/pages.zh_TW/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> 這是 `-p linux chown` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux chown` diff --git a/pages.zh_TW/osx/gchroot.md b/pages.zh_TW/osx/gchroot.md new file mode 100644 index 0000000000..2fbddb34e8 --- /dev/null +++ b/pages.zh_TW/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> 這是 `-p linux chroot` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux chroot` diff --git a/pages.zh_TW/osx/gcksum.md b/pages.zh_TW/osx/gcksum.md new file mode 100644 index 0000000000..b7cec88cd2 --- /dev/null +++ b/pages.zh_TW/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> 這是 `-p linux cksum` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux cksum` diff --git a/pages.zh_TW/osx/gcomm.md b/pages.zh_TW/osx/gcomm.md new file mode 100644 index 0000000000..5e0fbdc1ad --- /dev/null +++ b/pages.zh_TW/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> 這是 `-p linux comm` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux comm` diff --git a/pages.zh_TW/osx/gcp.md b/pages.zh_TW/osx/gcp.md new file mode 100644 index 0000000000..f4afdd1931 --- /dev/null +++ b/pages.zh_TW/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> 這是 `-p linux cp` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux cp` diff --git a/pages.zh_TW/osx/gcsplit.md b/pages.zh_TW/osx/gcsplit.md new file mode 100644 index 0000000000..e07357a4b3 --- /dev/null +++ b/pages.zh_TW/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> 這是 `-p linux csplit` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux csplit` diff --git a/pages.zh_TW/osx/gcut.md b/pages.zh_TW/osx/gcut.md new file mode 100644 index 0000000000..911aa864df --- /dev/null +++ b/pages.zh_TW/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> 這是 `-p linux cut` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux cut` diff --git a/pages.zh_TW/osx/gdate.md b/pages.zh_TW/osx/gdate.md new file mode 100644 index 0000000000..d5035d5543 --- /dev/null +++ b/pages.zh_TW/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> 這是 `-p linux date` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux date` diff --git a/pages.zh_TW/osx/gdd.md b/pages.zh_TW/osx/gdd.md new file mode 100644 index 0000000000..b214684eef --- /dev/null +++ b/pages.zh_TW/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> 這是 `-p linux dd` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux dd` diff --git a/pages.zh_TW/osx/gdf.md b/pages.zh_TW/osx/gdf.md new file mode 100644 index 0000000000..289f9bf30f --- /dev/null +++ b/pages.zh_TW/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> 這是 `-p linux df` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux df` diff --git a/pages.zh_TW/osx/gdir.md b/pages.zh_TW/osx/gdir.md new file mode 100644 index 0000000000..f8366f384c --- /dev/null +++ b/pages.zh_TW/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> 這是 `-p linux dir` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux dir` diff --git a/pages.zh_TW/osx/gdircolors.md b/pages.zh_TW/osx/gdircolors.md new file mode 100644 index 0000000000..94d0b8b0b4 --- /dev/null +++ b/pages.zh_TW/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> 這是 `-p linux dircolors` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux dircolors` diff --git a/pages.zh_TW/osx/gdirname.md b/pages.zh_TW/osx/gdirname.md new file mode 100644 index 0000000000..4c36950d53 --- /dev/null +++ b/pages.zh_TW/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> 這是 `-p linux dirname` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux dirname` diff --git a/pages.zh_TW/osx/gdnsdomainname.md b/pages.zh_TW/osx/gdnsdomainname.md new file mode 100644 index 0000000000..d16879f64a --- /dev/null +++ b/pages.zh_TW/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> 這是 `-p linux dnsdomainname` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux dnsdomainname` diff --git a/pages.zh_TW/osx/gecho.md b/pages.zh_TW/osx/gecho.md new file mode 100644 index 0000000000..1efdea2136 --- /dev/null +++ b/pages.zh_TW/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> 這是 `-p linux echo` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux echo` diff --git a/pages.zh_TW/osx/ged.md b/pages.zh_TW/osx/ged.md new file mode 100644 index 0000000000..a6522ffd26 --- /dev/null +++ b/pages.zh_TW/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> 這是 `-p linux ed` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux ed` diff --git a/pages.zh_TW/osx/gegrep.md b/pages.zh_TW/osx/gegrep.md new file mode 100644 index 0000000000..4bad436e55 --- /dev/null +++ b/pages.zh_TW/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> 這是 `-p linux egrep` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux egrep` diff --git a/pages.zh_TW/osx/genv.md b/pages.zh_TW/osx/genv.md new file mode 100644 index 0000000000..bd64acde4f --- /dev/null +++ b/pages.zh_TW/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> 這是 `-p linux env` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux env` diff --git a/pages.zh_TW/osx/gexpand.md b/pages.zh_TW/osx/gexpand.md new file mode 100644 index 0000000000..0e0ef77c1d --- /dev/null +++ b/pages.zh_TW/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> 這是 `-p linux expand` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux expand` diff --git a/pages.zh_TW/osx/gexpr.md b/pages.zh_TW/osx/gexpr.md new file mode 100644 index 0000000000..26f6dde634 --- /dev/null +++ b/pages.zh_TW/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> 這是 `-p linux expr` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux expr` diff --git a/pages.zh_TW/osx/gfactor.md b/pages.zh_TW/osx/gfactor.md new file mode 100644 index 0000000000..a4d8431159 --- /dev/null +++ b/pages.zh_TW/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> 這是 `-p linux factor` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux factor` diff --git a/pages.zh_TW/osx/gfalse.md b/pages.zh_TW/osx/gfalse.md new file mode 100644 index 0000000000..be8bf0ce51 --- /dev/null +++ b/pages.zh_TW/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> 這是 `-p linux false` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux false` diff --git a/pages.zh_TW/osx/gfgrep.md b/pages.zh_TW/osx/gfgrep.md new file mode 100644 index 0000000000..549fc0125a --- /dev/null +++ b/pages.zh_TW/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> 這是 `-p linux fgrep` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux fgrep` diff --git a/pages.zh_TW/osx/gfind.md b/pages.zh_TW/osx/gfind.md new file mode 100644 index 0000000000..925516e8ca --- /dev/null +++ b/pages.zh_TW/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> 這是 `-p linux find` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux find` diff --git a/pages.zh_TW/osx/gfmt.md b/pages.zh_TW/osx/gfmt.md new file mode 100644 index 0000000000..1404cae9e5 --- /dev/null +++ b/pages.zh_TW/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> 這是 `-p linux fmt` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux fmt` diff --git a/pages.zh_TW/osx/gfold.md b/pages.zh_TW/osx/gfold.md new file mode 100644 index 0000000000..d2cc9e398f --- /dev/null +++ b/pages.zh_TW/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> 這是 `-p linux fold` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux fold` diff --git a/pages.zh_TW/osx/gftp.md b/pages.zh_TW/osx/gftp.md new file mode 100644 index 0000000000..87c08c181c --- /dev/null +++ b/pages.zh_TW/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> 這是 `-p linux ftp` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux ftp` diff --git a/pages.zh_TW/osx/ggrep.md b/pages.zh_TW/osx/ggrep.md new file mode 100644 index 0000000000..4f6bcda37b --- /dev/null +++ b/pages.zh_TW/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> 這是 `-p linux grep` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux grep` diff --git a/pages.zh_TW/osx/ggroups.md b/pages.zh_TW/osx/ggroups.md new file mode 100644 index 0000000000..69c328f4d1 --- /dev/null +++ b/pages.zh_TW/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> 這是 `-p linux groups` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux groups` diff --git a/pages.zh_TW/osx/ghead.md b/pages.zh_TW/osx/ghead.md new file mode 100644 index 0000000000..1aab5f300a --- /dev/null +++ b/pages.zh_TW/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> 這是 `-p linux head` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux head` diff --git a/pages.zh_TW/osx/ghostid.md b/pages.zh_TW/osx/ghostid.md new file mode 100644 index 0000000000..51272c370f --- /dev/null +++ b/pages.zh_TW/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> 這是 `-p linux hostid` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux hostid` diff --git a/pages.zh_TW/osx/ghostname.md b/pages.zh_TW/osx/ghostname.md new file mode 100644 index 0000000000..af70275810 --- /dev/null +++ b/pages.zh_TW/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> 這是 `-p linux hostname` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux hostname` diff --git a/pages.zh_TW/osx/gid.md b/pages.zh_TW/osx/gid.md new file mode 100644 index 0000000000..b05c17aca8 --- /dev/null +++ b/pages.zh_TW/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> 這是 `-p linux id` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux id` diff --git a/pages.zh_TW/osx/gifconfig.md b/pages.zh_TW/osx/gifconfig.md new file mode 100644 index 0000000000..cea6b47101 --- /dev/null +++ b/pages.zh_TW/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> 這是 `-p linux ifconfig` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux ifconfig` diff --git a/pages.zh_TW/osx/gindent.md b/pages.zh_TW/osx/gindent.md new file mode 100644 index 0000000000..94436b965c --- /dev/null +++ b/pages.zh_TW/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> 這是 `-p linux indent` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux indent` diff --git a/pages.zh_TW/osx/ginstall.md b/pages.zh_TW/osx/ginstall.md new file mode 100644 index 0000000000..4823f5e736 --- /dev/null +++ b/pages.zh_TW/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> 這是 `-p linux install` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux install` diff --git a/pages.zh_TW/osx/gjoin.md b/pages.zh_TW/osx/gjoin.md new file mode 100644 index 0000000000..21526489b2 --- /dev/null +++ b/pages.zh_TW/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> 這是 `-p linux join` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux join` diff --git a/pages.zh_TW/osx/gkill.md b/pages.zh_TW/osx/gkill.md new file mode 100644 index 0000000000..76a564f33c --- /dev/null +++ b/pages.zh_TW/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> 這是 `-p linux kill` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux kill` diff --git a/pages.zh_TW/osx/glibtool.md b/pages.zh_TW/osx/glibtool.md new file mode 100644 index 0000000000..bf0cd50df4 --- /dev/null +++ b/pages.zh_TW/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> 這是 `-p linux libtool` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux libtool` diff --git a/pages.zh_TW/osx/glibtoolize.md b/pages.zh_TW/osx/glibtoolize.md new file mode 100644 index 0000000000..1614a92e63 --- /dev/null +++ b/pages.zh_TW/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> 這是 `-p linux libtoolize` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux libtoolize` diff --git a/pages.zh_TW/osx/glink.md b/pages.zh_TW/osx/glink.md new file mode 100644 index 0000000000..99ae2ac478 --- /dev/null +++ b/pages.zh_TW/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> 這是 `-p linux link` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux link` diff --git a/pages.zh_TW/osx/gln.md b/pages.zh_TW/osx/gln.md new file mode 100644 index 0000000000..40e89c0914 --- /dev/null +++ b/pages.zh_TW/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> 這是 `-p linux ln` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux ln` diff --git a/pages.zh_TW/osx/glocate.md b/pages.zh_TW/osx/glocate.md new file mode 100644 index 0000000000..18f000a260 --- /dev/null +++ b/pages.zh_TW/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> 這是 `-p linux locate` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux locate` diff --git a/pages.zh_TW/osx/glogger.md b/pages.zh_TW/osx/glogger.md new file mode 100644 index 0000000000..2505208097 --- /dev/null +++ b/pages.zh_TW/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> 這是 `-p linux logger` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux logger` diff --git a/pages.zh_TW/osx/glogname.md b/pages.zh_TW/osx/glogname.md new file mode 100644 index 0000000000..d17b831848 --- /dev/null +++ b/pages.zh_TW/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> 這是 `-p linux logname` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux logname` diff --git a/pages.zh_TW/osx/gls.md b/pages.zh_TW/osx/gls.md new file mode 100644 index 0000000000..f7313a5876 --- /dev/null +++ b/pages.zh_TW/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> 這是 `-p linux ls` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux ls` diff --git a/pages.zh_TW/osx/gmake.md b/pages.zh_TW/osx/gmake.md new file mode 100644 index 0000000000..d4bec9f531 --- /dev/null +++ b/pages.zh_TW/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> 這是 `-p linux make` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux make` diff --git a/pages.zh_TW/osx/gmd5sum.md b/pages.zh_TW/osx/gmd5sum.md new file mode 100644 index 0000000000..4492d639e5 --- /dev/null +++ b/pages.zh_TW/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> 這是 `-p linux md5sum` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux md5sum` diff --git a/pages.zh_TW/osx/gmkdir.md b/pages.zh_TW/osx/gmkdir.md new file mode 100644 index 0000000000..c910b26996 --- /dev/null +++ b/pages.zh_TW/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> 這是 `-p linux mkdir` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux mkdir` diff --git a/pages.zh_TW/osx/gmkfifo.md b/pages.zh_TW/osx/gmkfifo.md new file mode 100644 index 0000000000..f990c74d6d --- /dev/null +++ b/pages.zh_TW/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> 這是 `-p linux mkfifo` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux mkfifo` diff --git a/pages.zh_TW/osx/gmknod.md b/pages.zh_TW/osx/gmknod.md new file mode 100644 index 0000000000..58d434c3c1 --- /dev/null +++ b/pages.zh_TW/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> 這是 `-p linux mknod` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux mknod` diff --git a/pages.zh_TW/osx/gmktemp.md b/pages.zh_TW/osx/gmktemp.md new file mode 100644 index 0000000000..f9537d0d12 --- /dev/null +++ b/pages.zh_TW/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> 這是 `-p linux mktemp` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux mktemp` diff --git a/pages.zh_TW/osx/gmv.md b/pages.zh_TW/osx/gmv.md new file mode 100644 index 0000000000..08a7c943fc --- /dev/null +++ b/pages.zh_TW/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> 這是 `-p linux mv` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux mv` diff --git a/pages.zh_TW/osx/gnice.md b/pages.zh_TW/osx/gnice.md new file mode 100644 index 0000000000..07b2f19775 --- /dev/null +++ b/pages.zh_TW/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> 這是 `-p linux nice` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux nice` diff --git a/pages.zh_TW/osx/gnl.md b/pages.zh_TW/osx/gnl.md new file mode 100644 index 0000000000..898877bd30 --- /dev/null +++ b/pages.zh_TW/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> 這是 `-p linux nl` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux nl` diff --git a/pages.zh_TW/osx/gnohup.md b/pages.zh_TW/osx/gnohup.md new file mode 100644 index 0000000000..c67371eeda --- /dev/null +++ b/pages.zh_TW/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> 這是 `-p linux nohup` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux nohup` diff --git a/pages.zh_TW/osx/gnproc.md b/pages.zh_TW/osx/gnproc.md new file mode 100644 index 0000000000..4018f98470 --- /dev/null +++ b/pages.zh_TW/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> 這是 `-p linux nproc` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux nproc` diff --git a/pages.zh_TW/osx/gnumfmt.md b/pages.zh_TW/osx/gnumfmt.md new file mode 100644 index 0000000000..b098a1a875 --- /dev/null +++ b/pages.zh_TW/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> 這是 `-p linux numfmt` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux numfmt` diff --git a/pages.zh_TW/osx/god.md b/pages.zh_TW/osx/god.md new file mode 100644 index 0000000000..1e07281466 --- /dev/null +++ b/pages.zh_TW/osx/god.md @@ -0,0 +1,7 @@ +# god + +> 這是 `-p linux od` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux od` diff --git a/pages.zh_TW/osx/gpaste.md b/pages.zh_TW/osx/gpaste.md new file mode 100644 index 0000000000..b2a5a92aad --- /dev/null +++ b/pages.zh_TW/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> 這是 `-p linux paste` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux paste` diff --git a/pages.zh_TW/osx/gpathchk.md b/pages.zh_TW/osx/gpathchk.md new file mode 100644 index 0000000000..cc8616ca8f --- /dev/null +++ b/pages.zh_TW/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> 這是 `-p linux pathchk` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux pathchk` diff --git a/pages.zh_TW/osx/gping.md b/pages.zh_TW/osx/gping.md new file mode 100644 index 0000000000..764ec6f81b --- /dev/null +++ b/pages.zh_TW/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> 這是 `-p linux ping` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux ping` diff --git a/pages.zh_TW/osx/gping6.md b/pages.zh_TW/osx/gping6.md new file mode 100644 index 0000000000..1f792d3eb8 --- /dev/null +++ b/pages.zh_TW/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> 這是 `-p linux ping6` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux ping6` diff --git a/pages.zh_TW/osx/gpinky.md b/pages.zh_TW/osx/gpinky.md new file mode 100644 index 0000000000..1946f41856 --- /dev/null +++ b/pages.zh_TW/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> 這是 `-p linux pinky` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux pinky` diff --git a/pages.zh_TW/osx/gpr.md b/pages.zh_TW/osx/gpr.md new file mode 100644 index 0000000000..38a0cf0c5f --- /dev/null +++ b/pages.zh_TW/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> 這是 `-p linux pr` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux pr` diff --git a/pages.zh_TW/osx/gprintenv.md b/pages.zh_TW/osx/gprintenv.md new file mode 100644 index 0000000000..1a2cc2decf --- /dev/null +++ b/pages.zh_TW/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> 這是 `-p linux printenv` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux printenv` diff --git a/pages.zh_TW/osx/gprintf.md b/pages.zh_TW/osx/gprintf.md new file mode 100644 index 0000000000..0d916a451e --- /dev/null +++ b/pages.zh_TW/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> 這是 `-p linux printf` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux printf` diff --git a/pages.zh_TW/osx/gptx.md b/pages.zh_TW/osx/gptx.md new file mode 100644 index 0000000000..d1f4a10bca --- /dev/null +++ b/pages.zh_TW/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> 這是 `-p linux ptx` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux ptx` diff --git a/pages.zh_TW/osx/gpwd.md b/pages.zh_TW/osx/gpwd.md new file mode 100644 index 0000000000..8653475da4 --- /dev/null +++ b/pages.zh_TW/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> 這是 `-p linux pwd` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux pwd` diff --git a/pages.zh_TW/osx/grcp.md b/pages.zh_TW/osx/grcp.md new file mode 100644 index 0000000000..82326f1cf1 --- /dev/null +++ b/pages.zh_TW/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> 這是 `-p linux rcp` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux rcp` diff --git a/pages.zh_TW/osx/greadlink.md b/pages.zh_TW/osx/greadlink.md new file mode 100644 index 0000000000..8164f79137 --- /dev/null +++ b/pages.zh_TW/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> 這是 `-p linux readlink` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux readlink` diff --git a/pages.zh_TW/osx/grealpath.md b/pages.zh_TW/osx/grealpath.md new file mode 100644 index 0000000000..3f6fe2af32 --- /dev/null +++ b/pages.zh_TW/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> 這是 `-p linux realpath` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux realpath` diff --git a/pages.zh_TW/osx/grexec.md b/pages.zh_TW/osx/grexec.md new file mode 100644 index 0000000000..ef179f0d12 --- /dev/null +++ b/pages.zh_TW/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> 這是 `-p linux rexec` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux rexec` diff --git a/pages.zh_TW/osx/grlogin.md b/pages.zh_TW/osx/grlogin.md new file mode 100644 index 0000000000..a6d3274544 --- /dev/null +++ b/pages.zh_TW/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> 這是 `-p linux rlogin` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux rlogin` diff --git a/pages.zh_TW/osx/grm.md b/pages.zh_TW/osx/grm.md new file mode 100644 index 0000000000..68b33e7b35 --- /dev/null +++ b/pages.zh_TW/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> 這是 `-p linux rm` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux rm` diff --git a/pages.zh_TW/osx/grmdir.md b/pages.zh_TW/osx/grmdir.md new file mode 100644 index 0000000000..760085cd52 --- /dev/null +++ b/pages.zh_TW/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> 這是 `-p linux rmdir` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux rmdir` diff --git a/pages.zh_TW/osx/grsh.md b/pages.zh_TW/osx/grsh.md new file mode 100644 index 0000000000..74f2bbb98e --- /dev/null +++ b/pages.zh_TW/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> 這是 `-p linux rsh` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux rsh` diff --git a/pages.zh_TW/osx/gruncon.md b/pages.zh_TW/osx/gruncon.md new file mode 100644 index 0000000000..f55707c980 --- /dev/null +++ b/pages.zh_TW/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> 這是 `-p linux runcon` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux runcon` diff --git a/pages.zh_TW/osx/gsed.md b/pages.zh_TW/osx/gsed.md new file mode 100644 index 0000000000..adc77a5aec --- /dev/null +++ b/pages.zh_TW/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> 這是 `-p linux sed` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux sed` diff --git a/pages.zh_TW/osx/gseq.md b/pages.zh_TW/osx/gseq.md new file mode 100644 index 0000000000..0717ab348f --- /dev/null +++ b/pages.zh_TW/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> 這是 `-p linux seq` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux seq` diff --git a/pages.zh_TW/osx/gsha1sum.md b/pages.zh_TW/osx/gsha1sum.md new file mode 100644 index 0000000000..caf2a78056 --- /dev/null +++ b/pages.zh_TW/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> 這是 `-p linux sha1sum` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux sha1sum` diff --git a/pages.zh_TW/osx/gsha224sum.md b/pages.zh_TW/osx/gsha224sum.md new file mode 100644 index 0000000000..d45cc7b2ce --- /dev/null +++ b/pages.zh_TW/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> 這是 `-p linux sha224sum` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux sha224sum` diff --git a/pages.zh_TW/osx/gsha256sum.md b/pages.zh_TW/osx/gsha256sum.md new file mode 100644 index 0000000000..e779322cb0 --- /dev/null +++ b/pages.zh_TW/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> 這是 `-p linux sha256sum` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux sha256sum` diff --git a/pages.zh_TW/osx/gsha384sum.md b/pages.zh_TW/osx/gsha384sum.md new file mode 100644 index 0000000000..609321ef63 --- /dev/null +++ b/pages.zh_TW/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> 這是 `-p linux sha384sum` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux sha384sum` diff --git a/pages.zh_TW/osx/gsha512sum.md b/pages.zh_TW/osx/gsha512sum.md new file mode 100644 index 0000000000..dce77f6360 --- /dev/null +++ b/pages.zh_TW/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> 這是 `-p linux sha512sum` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux sha512sum` diff --git a/pages.zh_TW/osx/gshred.md b/pages.zh_TW/osx/gshred.md new file mode 100644 index 0000000000..4da2e5c44c --- /dev/null +++ b/pages.zh_TW/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> 這是 `-p linux shred` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux shred` diff --git a/pages.zh_TW/osx/gshuf.md b/pages.zh_TW/osx/gshuf.md new file mode 100644 index 0000000000..18d28750dc --- /dev/null +++ b/pages.zh_TW/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> 這是 `-p linux shuf` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux shuf` diff --git a/pages.zh_TW/osx/gsleep.md b/pages.zh_TW/osx/gsleep.md new file mode 100644 index 0000000000..fa9f05eca9 --- /dev/null +++ b/pages.zh_TW/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> 這是 `-p linux sleep` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux sleep` diff --git a/pages.zh_TW/osx/gsort.md b/pages.zh_TW/osx/gsort.md new file mode 100644 index 0000000000..c77d3b71de --- /dev/null +++ b/pages.zh_TW/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> 這是 `-p linux sort` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux sort` diff --git a/pages.zh_TW/osx/gsplit.md b/pages.zh_TW/osx/gsplit.md new file mode 100644 index 0000000000..6e428ed582 --- /dev/null +++ b/pages.zh_TW/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> 這是 `-p linux split` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux split` diff --git a/pages.zh_TW/osx/gstat.md b/pages.zh_TW/osx/gstat.md new file mode 100644 index 0000000000..47570c75af --- /dev/null +++ b/pages.zh_TW/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> 這是 `-p linux stat` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux stat` diff --git a/pages.zh_TW/osx/gstdbuf.md b/pages.zh_TW/osx/gstdbuf.md new file mode 100644 index 0000000000..ac311aa2fe --- /dev/null +++ b/pages.zh_TW/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> 這是 `-p linux stdbuf` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux stdbuf` diff --git a/pages.zh_TW/osx/gstty.md b/pages.zh_TW/osx/gstty.md new file mode 100644 index 0000000000..d3df9155e7 --- /dev/null +++ b/pages.zh_TW/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> 這是 `-p linux stty` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux stty` diff --git a/pages.zh_TW/osx/gsum.md b/pages.zh_TW/osx/gsum.md new file mode 100644 index 0000000000..79546a0ab9 --- /dev/null +++ b/pages.zh_TW/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> 這是 `-p linux sum` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux sum` diff --git a/pages.zh_TW/osx/gsync.md b/pages.zh_TW/osx/gsync.md new file mode 100644 index 0000000000..2f53ecc0cb --- /dev/null +++ b/pages.zh_TW/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> 這是 `-p linux sync` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux sync` diff --git a/pages.zh_TW/osx/gtac.md b/pages.zh_TW/osx/gtac.md new file mode 100644 index 0000000000..f3efc469ce --- /dev/null +++ b/pages.zh_TW/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> 這是 `-p linux tac` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux tac` diff --git a/pages.zh_TW/osx/gtail.md b/pages.zh_TW/osx/gtail.md new file mode 100644 index 0000000000..9439ee9d83 --- /dev/null +++ b/pages.zh_TW/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> 這是 `-p linux tail` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux tail` diff --git a/pages.zh_TW/osx/gtalk.md b/pages.zh_TW/osx/gtalk.md new file mode 100644 index 0000000000..2a59d34601 --- /dev/null +++ b/pages.zh_TW/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> 這是 `-p linux talk` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux talk` diff --git a/pages.zh_TW/osx/gtar.md b/pages.zh_TW/osx/gtar.md new file mode 100644 index 0000000000..391685b9c8 --- /dev/null +++ b/pages.zh_TW/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> 這是 `-p linux tar` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux tar` diff --git a/pages.zh_TW/osx/gtee.md b/pages.zh_TW/osx/gtee.md new file mode 100644 index 0000000000..0c543c7d41 --- /dev/null +++ b/pages.zh_TW/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> 這是 `-p linux tee` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux tee` diff --git a/pages.zh_TW/osx/gtelnet.md b/pages.zh_TW/osx/gtelnet.md new file mode 100644 index 0000000000..862b936fa6 --- /dev/null +++ b/pages.zh_TW/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> 這是 `-p linux telnet` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux telnet` diff --git a/pages.zh_TW/osx/gtest.md b/pages.zh_TW/osx/gtest.md new file mode 100644 index 0000000000..907aec6753 --- /dev/null +++ b/pages.zh_TW/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> 這是 `-p linux test` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux test` diff --git a/pages.zh_TW/osx/gtftp.md b/pages.zh_TW/osx/gtftp.md new file mode 100644 index 0000000000..b3dd412ad0 --- /dev/null +++ b/pages.zh_TW/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> 這是 `-p linux tftp` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux tftp` diff --git a/pages.zh_TW/osx/gtime.md b/pages.zh_TW/osx/gtime.md new file mode 100644 index 0000000000..caa66f90c4 --- /dev/null +++ b/pages.zh_TW/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> 這是 `-p linux time` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux time` diff --git a/pages.zh_TW/osx/gtimeout.md b/pages.zh_TW/osx/gtimeout.md new file mode 100644 index 0000000000..1148905dfd --- /dev/null +++ b/pages.zh_TW/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> 這是 `-p linux timeout` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux timeout` diff --git a/pages.zh_TW/osx/gtouch.md b/pages.zh_TW/osx/gtouch.md new file mode 100644 index 0000000000..0c26b7f795 --- /dev/null +++ b/pages.zh_TW/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> 這是 `-p linux touch` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux touch` diff --git a/pages.zh_TW/osx/gtr.md b/pages.zh_TW/osx/gtr.md new file mode 100644 index 0000000000..e60d2eaca9 --- /dev/null +++ b/pages.zh_TW/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> 這是 `-p linux tr` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux tr` diff --git a/pages.zh_TW/osx/gtraceroute.md b/pages.zh_TW/osx/gtraceroute.md new file mode 100644 index 0000000000..a1bdbcd84a --- /dev/null +++ b/pages.zh_TW/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> 這是 `-p linux traceroute` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux traceroute` diff --git a/pages.zh_TW/osx/gtrue.md b/pages.zh_TW/osx/gtrue.md new file mode 100644 index 0000000000..15add9ac35 --- /dev/null +++ b/pages.zh_TW/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> 這是 `-p linux true` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux true` diff --git a/pages.zh_TW/osx/gtruncate.md b/pages.zh_TW/osx/gtruncate.md new file mode 100644 index 0000000000..1ad851acca --- /dev/null +++ b/pages.zh_TW/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> 這是 `-p linux truncate` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux truncate` diff --git a/pages.zh_TW/osx/gtsort.md b/pages.zh_TW/osx/gtsort.md new file mode 100644 index 0000000000..e5cf281088 --- /dev/null +++ b/pages.zh_TW/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> 這是 `-p linux tsort` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux tsort` diff --git a/pages.zh_TW/osx/gtty.md b/pages.zh_TW/osx/gtty.md new file mode 100644 index 0000000000..1e757ffba8 --- /dev/null +++ b/pages.zh_TW/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> 這是 `-p linux tty` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux tty` diff --git a/pages.zh_TW/osx/guname.md b/pages.zh_TW/osx/guname.md new file mode 100644 index 0000000000..f08fd314bd --- /dev/null +++ b/pages.zh_TW/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> 這是 `-p linux uname` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux uname` diff --git a/pages.zh_TW/osx/gunexpand.md b/pages.zh_TW/osx/gunexpand.md new file mode 100644 index 0000000000..4197b61832 --- /dev/null +++ b/pages.zh_TW/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> 這是 `-p linux unexpand` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux unexpand` diff --git a/pages.zh_TW/osx/guniq.md b/pages.zh_TW/osx/guniq.md new file mode 100644 index 0000000000..2a2f20ffd0 --- /dev/null +++ b/pages.zh_TW/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> 這是 `-p linux uniq` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux uniq` diff --git a/pages.zh_TW/osx/gunits.md b/pages.zh_TW/osx/gunits.md new file mode 100644 index 0000000000..54f934e341 --- /dev/null +++ b/pages.zh_TW/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> 這是 `-p linux units` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux units` diff --git a/pages.zh_TW/osx/gunlink.md b/pages.zh_TW/osx/gunlink.md new file mode 100644 index 0000000000..222a14ccf6 --- /dev/null +++ b/pages.zh_TW/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> 這是 `-p linux unlink` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux unlink` diff --git a/pages.zh_TW/osx/gupdatedb.md b/pages.zh_TW/osx/gupdatedb.md new file mode 100644 index 0000000000..a05a9bcde0 --- /dev/null +++ b/pages.zh_TW/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> 這是 `-p linux updatedb` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux updatedb` diff --git a/pages.zh_TW/osx/guptime.md b/pages.zh_TW/osx/guptime.md new file mode 100644 index 0000000000..832367d728 --- /dev/null +++ b/pages.zh_TW/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> 這是 `-p linux uptime` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux uptime` diff --git a/pages.zh_TW/osx/gusers.md b/pages.zh_TW/osx/gusers.md new file mode 100644 index 0000000000..93dab36aa3 --- /dev/null +++ b/pages.zh_TW/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> 這是 `-p linux users` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux users` diff --git a/pages.zh_TW/osx/gvdir.md b/pages.zh_TW/osx/gvdir.md new file mode 100644 index 0000000000..d4ad92825f --- /dev/null +++ b/pages.zh_TW/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> 這是 `-p linux vdir` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux vdir` diff --git a/pages.zh_TW/osx/gwc.md b/pages.zh_TW/osx/gwc.md new file mode 100644 index 0000000000..fa815a4c4f --- /dev/null +++ b/pages.zh_TW/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> 這是 `-p linux wc` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux wc` diff --git a/pages.zh_TW/osx/gwhich.md b/pages.zh_TW/osx/gwhich.md new file mode 100644 index 0000000000..4ce3680fa5 --- /dev/null +++ b/pages.zh_TW/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> 這是 `-p linux which` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux which` diff --git a/pages.zh_TW/osx/gwho.md b/pages.zh_TW/osx/gwho.md new file mode 100644 index 0000000000..e692f47433 --- /dev/null +++ b/pages.zh_TW/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> 這是 `-p linux who` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux who` diff --git a/pages.zh_TW/osx/gwhoami.md b/pages.zh_TW/osx/gwhoami.md new file mode 100644 index 0000000000..b36fd130a6 --- /dev/null +++ b/pages.zh_TW/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> 這是 `-p linux whoami` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux whoami` diff --git a/pages.zh_TW/osx/gwhois.md b/pages.zh_TW/osx/gwhois.md new file mode 100644 index 0000000000..7ddd7ae6c3 --- /dev/null +++ b/pages.zh_TW/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> 這是 `-p linux whois` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux whois` diff --git a/pages.zh_TW/osx/gxargs.md b/pages.zh_TW/osx/gxargs.md new file mode 100644 index 0000000000..d5f6dcb38b --- /dev/null +++ b/pages.zh_TW/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> 這是 `-p linux xargs` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux xargs` diff --git a/pages.zh_TW/osx/gyes.md b/pages.zh_TW/osx/gyes.md new file mode 100644 index 0000000000..e8109b221e --- /dev/null +++ b/pages.zh_TW/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> 這是 `-p linux yes` 命令的一個別名。 + +- 原命令的文件在: + +`tldr -p linux yes` diff --git a/pages.zh_TW/osx/launchd.md b/pages.zh_TW/osx/launchd.md new file mode 100644 index 0000000000..d6233445e0 --- /dev/null +++ b/pages.zh_TW/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> 這是 `launchctl` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr launchctl` diff --git a/pages.zh_TW/osx/reboot.md b/pages.zh_TW/osx/reboot.md new file mode 100644 index 0000000000..b679f61d7d --- /dev/null +++ b/pages.zh_TW/osx/reboot.md @@ -0,0 +1,12 @@ +# reboot + +> 重啟系統。 +> 更多資訊:. + +- 立即重新啟動: + +`sudo reboot` + +- 立即強制重新啟動(應避免使用此選項): + +`sudo reboot -q` diff --git a/pages.zh_TW/windows/choco.md b/pages.zh_TW/windows/choco.md index c22012853c..dcecb215f2 100644 --- a/pages.zh_TW/windows/choco.md +++ b/pages.zh_TW/windows/choco.md @@ -1,18 +1,18 @@ # choco > 「Chocolatey package manager」軟體套件管理器。 -> 執行命令由兩個單字「組合」成,例如 `choco install`,請參考使用文檔。 +> 執行命令由兩個單字「組合」成,例如 `choco install`,請參考使用文件。 > 更多資訊:. - 執行「組合」命令: `choco {{命令}}` -- 顯示 `choco` 幫助文檔: +- 顯示 `choco` 幫助文件: `choco -?` -- 顯示「組合」命令幫助文檔: +- 顯示「組合」命令幫助文件: `choco {{命令}} -?` diff --git a/pages.zh_TW/windows/chrome.md b/pages.zh_TW/windows/chrome.md new file mode 100644 index 0000000000..609cb52e6b --- /dev/null +++ b/pages.zh_TW/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> 這是 `chromium` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr chromium` diff --git a/pages.zh_TW/windows/clip.md b/pages.zh_TW/windows/clip.md new file mode 100644 index 0000000000..6c2052b88a --- /dev/null +++ b/pages.zh_TW/windows/clip.md @@ -0,0 +1,20 @@ +# clip + +> 將輸入的內容複製到 Windows 剪貼簿中。 +> 更多資訊:. + +- 使用管道將命令輸出的內容複製到 Windows 剪貼簿中: + +`{{dir}} | clip` + +- 將文件內容複製到 Windows 剪貼簿中: + +`clip < {{檔案/完整/路徑}}` + +- 將帶有換行符的內容複製到 Windows 剪貼簿中: + +`echo {{文字}} | clip` + +- 將不帶換行符的內容複製到 Windows 剪貼簿中: + +`echo | set /p="文字" | clip` diff --git a/pages.zh_TW/windows/cpush.md b/pages.zh_TW/windows/cpush.md new file mode 100644 index 0000000000..4a3bb6b76b --- /dev/null +++ b/pages.zh_TW/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> 這是 `choco-push` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr choco-push` diff --git a/pages.zh_TW/windows/curl.md b/pages.zh_TW/windows/curl.md new file mode 100644 index 0000000000..1b92d06c4a --- /dev/null +++ b/pages.zh_TW/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> 這是 `curl -p common` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr curl -p common` diff --git a/pages.zh_TW/windows/del.md b/pages.zh_TW/windows/del.md new file mode 100644 index 0000000000..5ab83082fc --- /dev/null +++ b/pages.zh_TW/windows/del.md @@ -0,0 +1,32 @@ +# del + +> 刪除一個或多個檔案。 +> 更多資訊:. + +- 刪除一個或多個以空格分隔的檔案: + +`del {{檔案 檔案 ..}}` + +- 在刪除每個檔案之前提示確認: + +`del {{檔案}} /p` + +- 強制刪除唯讀檔案: + +`del {{檔案}} /f` + +- 遞歸刪除所有子目錄中的檔案: + +`del {{檔案}} /s` + +- 在使用全域萬用字元刪除檔案時不做提示確認: + +`del {{檔案}} /q` + +- 顯示幫助訊息和列出所有可用屬性: + +`del /?` + +- 刪除符合指定屬性的檔案: + +`del {{檔案}} /a {{属性}}` diff --git a/pages.zh_TW/windows/iwr.md b/pages.zh_TW/windows/iwr.md new file mode 100644 index 0000000000..c0875c0fd7 --- /dev/null +++ b/pages.zh_TW/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> 這是 `invoke-webrequest` 命令的一個別名。 + +- 原命令的文件在: + +`tldr invoke-webrequest` diff --git a/pages.zh_TW/windows/pwsh-where.md b/pages.zh_TW/windows/pwsh-where.md new file mode 100644 index 0000000000..6a0a4b5d07 --- /dev/null +++ b/pages.zh_TW/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# pwsh-where + +> 這是 `Where-Object` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr Where-Object` diff --git a/pages.zh_TW/windows/rd.md b/pages.zh_TW/windows/rd.md new file mode 100644 index 0000000000..5abc0d3d29 --- /dev/null +++ b/pages.zh_TW/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> 這是 `rmdir` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr rmdir` diff --git a/pages.zh_TW/windows/sls.md b/pages.zh_TW/windows/sls.md new file mode 100644 index 0000000000..ed09319ac7 --- /dev/null +++ b/pages.zh_TW/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> 這是 `where-object` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr where-object` diff --git a/pages.zh_TW/windows/systeminfo.md b/pages.zh_TW/windows/systeminfo.md new file mode 100644 index 0000000000..cc6f0d7c9c --- /dev/null +++ b/pages.zh_TW/windows/systeminfo.md @@ -0,0 +1,20 @@ +# systeminfo + +> 顯示本機或遠端電腦的作業系統配置。 +> 更多資訊:. + +- 顯示本機的系統配置: + +`systeminfo` + +- 以指定的輸出格式顯示系統配置: + +`systeminfo /fo {{table|list|csv}}` + +- 顯示遠端電腦的系統配置: + +`systeminfo /s {{遠端名稱}} /u {{使用者名稱}} /p {{密碼}}` + +- 顯示詳細的使用資訊: + +`systeminfo /?` diff --git a/pages.zh_TW/windows/wget.md b/pages.zh_TW/windows/wget.md new file mode 100644 index 0000000000..baa0a98601 --- /dev/null +++ b/pages.zh_TW/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> 這是 `wget -p common` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr wget -p common` diff --git a/pages.zh_TW/windows/winget.md b/pages.zh_TW/windows/winget.md index ee7d3729fd..1684de87bb 100644 --- a/pages.zh_TW/windows/winget.md +++ b/pages.zh_TW/windows/winget.md @@ -7,6 +7,10 @@ `winget install {{套件}}` +- 刪除一個套件(註:可以用 `remove` 代替 `uninstall`): + +`winget uninstall {{package}}` + - 顯示指定套件的相關資訊: `winget show {{套件}}` @@ -14,3 +18,19 @@ - 搜尋指定套件: `winget search {{套件}}` + +- 升級所有套件至最新版本: + +`winget upgrade --all` + +- 列出所有可由 `winget` 管理的已安裝套件: + +`winget list --source winget` + +- 從檔案匯入套件,或將已安裝的套件匯出至檔案: + +`winget {{import|export}} {{--import-file|--output}} {{檔案/完整/路徑}}` + +- 在提交 PR 到 winget-pkgs 存儲庫之前,請驗證 manifest 檔: + +`winget validate {{manifest檔案/完整/路徑}}` diff --git a/pages/android/am.md b/pages/android/am.md index 9698a4ad6d..760357c9cc 100644 --- a/pages/android/am.md +++ b/pages/android/am.md @@ -7,11 +7,11 @@ `am start -n {{com.android.settings/.Settings}}` -- Start an activity and pass data to it: +- Start an activity and pass [d]ata to it: `am start -a {{android.intent.action.VIEW}} -d {{tel:123}}` -- Start an activity matching a specific action and category: +- Start an activity matching a specific action and [c]ategory: `am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}` diff --git a/pages/android/bugreport.md b/pages/android/bugreport.md index b29c0570e5..60d22ba544 100644 --- a/pages/android/bugreport.md +++ b/pages/android/bugreport.md @@ -2,8 +2,8 @@ > Show an Android bug report. > This command can only be used through `adb shell`. -> More information: . +> More information: . -- Show a complete bug report of an Android device: +- Display a complete bug report of an Android device: `bugreport` diff --git a/pages/android/bugreportz.md b/pages/android/bugreportz.md index 903a5d4524..50d11bb2d6 100644 --- a/pages/android/bugreportz.md +++ b/pages/android/bugreportz.md @@ -2,7 +2,7 @@ > Generate a zipped Android bug report. > This command can only be used through `adb shell`. -> More information: . +> More information: . - Generate a complete zipped bug report of an Android device: diff --git a/pages/android/cmd.md b/pages/android/cmd.md index fc18cf7c35..b6775638c9 100644 --- a/pages/android/cmd.md +++ b/pages/android/cmd.md @@ -1,16 +1,16 @@ # cmd > Android service manager. -> More information: . +> More information: . -- List every running service: +- [l]ist all running services: `cmd -l` - Call a specific service: -`cmd {{alarm}}` +`cmd {{service}}` -- Call a service with arguments: +- Call a service with specific arguments: -`cmd {{vibrator}} {{vibrate 300}}` +`cmd {{service}} {{argument1 argument2 ...}}` diff --git a/pages/android/dalvikvm.md b/pages/android/dalvikvm.md index e1edf23ed4..fbb7ffd9cd 100644 --- a/pages/android/dalvikvm.md +++ b/pages/android/dalvikvm.md @@ -3,6 +3,6 @@ > Android Java virtual machine. > More information: . -- Start a Java program: +- Start a specific Java program: `dalvikvm -classpath {{path/to/file.jar}} {{classname}}` diff --git a/pages/android/dumpsys.md b/pages/android/dumpsys.md index 308e35df49..f28e27a0e5 100644 --- a/pages/android/dumpsys.md +++ b/pages/android/dumpsys.md @@ -26,4 +26,4 @@ - Specify a timeout period in seconds (defaults to 10s): -`dumpsys -t {{seconds}}` +`dumpsys -t {{8}}` diff --git a/pages/android/getprop.md b/pages/android/getprop.md index 81438d8fa7..5a87b7ec7f 100644 --- a/pages/android/getprop.md +++ b/pages/android/getprop.md @@ -9,7 +9,7 @@ - Display information about a specific property: -`getprop {{prop}}` +`getprop {{property}}` - Display the SDK API level: diff --git a/pages/android/input.md b/pages/android/input.md index 323e67da5d..74568ea7f0 100644 --- a/pages/android/input.md +++ b/pages/android/input.md @@ -14,7 +14,7 @@ - Send a single tap to an Android device: -`input tap {{x_pos}} {{y_pos}}` +`input tap {{x_position}} {{y_position}}` - Send a swipe gesture to an Android device: @@ -22,4 +22,4 @@ - Send a long press to an Android device using a swipe gesture: -`input swipe {{x_pos}} {{y_pos}} {{x_pos}} {{y_pos}} {{duration_in_ms}}` +`input swipe {{x_position}} {{y_position}} {{x_position}} {{y_position}} {{duration_in_ms}}` diff --git a/pages/android/logcat.md b/pages/android/logcat.md index 04890971e9..5dfb010df3 100644 --- a/pages/android/logcat.md +++ b/pages/android/logcat.md @@ -14,3 +14,11 @@ - Display lines that match a regular expression: `logcat --regex {{regular_expression}}` + +- Display logs for a specific PID: + +`logcat --pid={{pid}}` + +- Display logs for the process of a specific package: + +`logcat --pid=$(pidof -s {{package}})` diff --git a/pages/android/pm.md b/pages/android/pm.md index 4310dcba8a..3e0059b53c 100644 --- a/pages/android/pm.md +++ b/pages/android/pm.md @@ -1,24 +1,24 @@ # pm -> Show information about apps on an Android device. +> Display information about apps on an Android device. > More information: . -- Print a list of all installed apps: +- List all installed apps: `pm list packages` -- Print a list of all installed system apps: +- List all installed system apps: `pm list packages -s` -- Print a list of all installed 3rd-Party apps: +- List all installed 3rd-Party apps: `pm list packages -3` -- Print a list of apps matching specific keywords: +- List apps matching specific keywords: -`pm list packages {{keywords}}` +`pm list packages {{keyword1 keyword2 ...}}` -- Print the path of the APK of a specific app: +- Display a path of the APK of a specific app: `pm path {{app}}` diff --git a/pages/android/settings.md b/pages/android/settings.md index 747ae5b6a5..8b482c7177 100644 --- a/pages/android/settings.md +++ b/pages/android/settings.md @@ -7,11 +7,11 @@ `settings list {{global}}` -- Get the value of a specific setting: +- Get a value of a specific setting: `settings get {{global}} {{airplane_mode_on}}` -- Set the value of a setting: +- Set a specific value of a setting: `settings put {{system}} {{screen_brightness}} {{42}}` diff --git a/pages/common/!.md b/pages/common/!.md new file mode 100644 index 0000000000..1526572379 --- /dev/null +++ b/pages/common/!.md @@ -0,0 +1,24 @@ +# Exclamation mark + +> Bash builtin to substitute with a command found in history. +> More information: . + +- Substitute with the previous command and run it with sudo: + +`sudo !!` + +- Substitute with a command based on its line number found with `history`: + +`!{{number}}` + +- Substitute with a command that was used a specified number of lines back: + +`!-{{number}}` + +- Substitute with the most recent command that starts with `string`: + +`!{{string}}` + +- Substitute with the arguments of the latest command: + +`{{command}} !*` diff --git a/pages/common/7z.md b/pages/common/7z.md index 7bb6e2f6eb..d4f1283361 100644 --- a/pages/common/7z.md +++ b/pages/common/7z.md @@ -1,7 +1,7 @@ # 7z > File archiver with a high compression ratio. -> More information: . +> More information: . - [a]dd a file or directory to a new or existing archive: diff --git a/pages/common/7za.md b/pages/common/7za.md index a47867cf42..8aee32f918 100644 --- a/pages/common/7za.md +++ b/pages/common/7za.md @@ -2,7 +2,7 @@ > File archiver with a high compression ratio. > Similar to `7z` except that it supports fewer file types but is cross-platform. -> More information: . +> More information: . - [a]rchive a file or directory: @@ -10,7 +10,7 @@ - Encrypt an existing archive (including file names): -`7za a {{path/to/encrypted.7z}} -p{{password}} -mhe=on {{path/to/archive.7z}}` +`7za a {{path/to/encrypted.7z}} -p{{password}} -mhe={{on}} {{path/to/archive.7z}}` - E[x]tract an archive preserving the original directory structure: @@ -26,7 +26,7 @@ - [a]rchive using a specific archive type: -`7za a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{path/to/archive.7z}} {{path/to/file_or_directory}}` +`7za a -t{{7z|bzip2|gzip|lzip|tar|...}} {{path/to/archive.7z}} {{path/to/file_or_directory}}` - [l]ist the contents of an archive: diff --git a/pages/common/7zr.md b/pages/common/7zr.md index 0306b15fc4..dad3315cb4 100644 --- a/pages/common/7zr.md +++ b/pages/common/7zr.md @@ -2,7 +2,7 @@ > File archiver with a high compression ratio. > Similar to `7z` except that it only supports `.7z` files. -> More information: . +> More information: . - [a]rchive a file or directory: @@ -10,7 +10,7 @@ - Encrypt an existing archive (including file names): -`7zr a {{path/to/encrypted.7z}} -p{{password}} -mhe=on {{path/to/archive.7z}}` +`7zr a {{path/to/encrypted.7z}} -p{{password}} -mhe={{on}} {{path/to/archive.7z}}` - E[x]tract an archive preserving the original directory structure: diff --git a/pages/common/[.md b/pages/common/[.md index a6847e1665..6b50f5fe18 100644 --- a/pages/common/[.md +++ b/pages/common/[.md @@ -1,7 +1,7 @@ # [ > Check file types and compare values. -> Returns 0 if the condition evaluates to true, 1 if it evaluates to false. +> Returns a status of 0 if the condition evaluates to true, 1 if it evaluates to false. > More information: . - Test if a given variable is equal/not equal to the specified string: diff --git a/pages/common/[[.md b/pages/common/[[.md index 6fd9cad231..23ebe75722 100644 --- a/pages/common/[[.md +++ b/pages/common/[[.md @@ -1,7 +1,7 @@ # [[ > Check file types and compare values. -> Returns 0 if the condition evaluates to true, 1 if it evaluates to false. +> Returns a status of 0 if the condition evaluates to true, 1 if it evaluates to false. > More information: . - Test if a given variable is equal/not equal to the specified string: diff --git a/pages/common/a2ping.md b/pages/common/a2ping.md new file mode 100644 index 0000000000..f907ac3790 --- /dev/null +++ b/pages/common/a2ping.md @@ -0,0 +1,32 @@ +# a2ping + +> Convert images into EPS or PDF files. +> More information: . + +- Convert an image to PDF (Note: Specifying an output filename is optional): + +`a2ping {{path/to/image.ext}} {{path/to/output.pdf}}` + +- Compress the document using the specified method: + +`a2ping --nocompress {{none|zip|best|flate}} {{path/to/file}}` + +- Scan HiResBoundingBox if present (Note: It Defaults to yes): + +`a2ping --nohires {{path/to/file}}` + +- Allow page content below and left of the origin (Note: It defaults to no): + +`a2ping --below {{path/to/file}}` + +- Pass extra arguments to `gs``: + +`a2ping --gsextra {{arguments}} {{path/to/file}}` + +- Pass extra arguments to external program (i.e pdftops): + +`a2ping --extra {{arguments}} {{path/to/file}}` + +- Display help: + +`a2ping -h` diff --git a/pages/common/acme.sh-dns.md b/pages/common/acme.sh-dns.md index c0df64944c..db1efd3b26 100644 --- a/pages/common/acme.sh-dns.md +++ b/pages/common/acme.sh-dns.md @@ -15,7 +15,7 @@ `acme.sh --issue --dns {{dns_cf}} --domain {{example.com}} --challenge-alias {{alias-for-example-validation.com}}` -- Issue a certificate while disabling automatic Cloudflare / Google DNS polling after the DNS record is added by specifying a custom wait time in seconds: +- Issue a certificate while disabling automatic Cloudflare/Google DNS polling after the DNS record is added by specifying a custom wait time in seconds: `acme.sh --issue --dns {{dns_namecheap}} --domain {{example.com}} --dnssleep {{300}}` diff --git a/pages/common/act.md b/pages/common/act.md index 7abcfef230..1f4fb45bf3 100644 --- a/pages/common/act.md +++ b/pages/common/act.md @@ -26,3 +26,7 @@ - Show verbose logs: `act -v` + +- Run a specific workflow: + +`act push -W {{path/to/workflow}}` diff --git a/pages/common/adb-logcat.md b/pages/common/adb-logcat.md index 5b7591673c..1703e725b3 100644 --- a/pages/common/adb-logcat.md +++ b/pages/common/adb-logcat.md @@ -1,4 +1,4 @@ -# adb-logcat +# adb logcat > Dump a log of system messages. > More information: . @@ -23,6 +23,14 @@ `adb logcat *:W` +- Display logs for a specific PID: + +`adb logcat --pid={{pid}}` + +- Display logs for the process of a specific package: + +`adb logcat --pid=$(adb shell pidof -s {{package}})` + - Color the log (usually use with filters): `adb logcat -v color` diff --git a/pages/common/adb-shell.md b/pages/common/adb-shell.md index b109da600b..7e422d1cd7 100644 --- a/pages/common/adb-shell.md +++ b/pages/common/adb-shell.md @@ -3,7 +3,7 @@ > Android Debug Bridge Shell: Run remote shell commands on an Android emulator instance or connected Android devices. > More information: . -- Start a remote interactive shell on the emulator/device: +- Start a remote interactive shell on the emulator or device: `adb shell` @@ -27,7 +27,7 @@ `adb shell pm clear {{package}}` -- Start an activity on emulator/device: +- Start an activity on emulator or device: `adb shell am start -n {{package}}/{{activity}}` diff --git a/pages/common/afconvert.md b/pages/common/afconvert.md new file mode 100644 index 0000000000..d2b3ba8a9a --- /dev/null +++ b/pages/common/afconvert.md @@ -0,0 +1,12 @@ +# afconvert + +> Convert between AFF and raw file formats. +> More information: . + +- Use a specific extension (default: `aff`): + +`afconvert -a {{extension}} {{path/to/input_file}} {{path/to/output_file1 path/to/output_file2 ...}}` + +- Use a specific compression level (default: `7`): + +`afconvert -X{{0..7}} {{path/to/input_file}} {{path/to/output_file1 path/to/output_file2 ...}}` diff --git a/pages/common/age-keygen.md b/pages/common/age-keygen.md new file mode 100644 index 0000000000..c3cbabd9c7 --- /dev/null +++ b/pages/common/age-keygen.md @@ -0,0 +1,13 @@ +# age-keygen + +> Generate `age` key pairs. +> See `age` for how to encrypt/decrypt files. +> More information: . + +- Generate a key pair, save it to an unencrypted file and print the public key to `stdout`: + +`age-keygen --output {{path/to/file}}` + +- Convert an identity to a recipient and print the public key to `stdout`: + +`age-keygen -y {{path/to/file}}` diff --git a/pages/common/age.md b/pages/common/age.md index d1031461a0..a2b5f9609f 100644 --- a/pages/common/age.md +++ b/pages/common/age.md @@ -1,23 +1,20 @@ # age > A simple, modern and secure file encryption tool. -> More information: . +> See `age-keygen` for how to generate key pairs. +> More information: . - Generate an encrypted file that can be decrypted with a passphrase: `age --passphrase --output {{path/to/encrypted_file}} {{path/to/unencrypted_file}}` -- Generate a key pair, saving the private key to an unencrypted file and printing the public key to `stdout`: +- Encrypt a file with one or more public keys entered as literals (repeat the `--recipient` flag to specify multiple public keys): -`age-keygen --output {{path/to/file}}` +`age --recipient {{public_key}} --output {{path/to/encrypted_file}} {{path/to/unencrypted_file}}` -- Encrypt a file with one or more public keys that are entered as literals: +- Encrypt a file to one or more recipients with their public keys specified in a file (one per line): -`age --recipient {{public_key_1}} --recipient {{public_key_2}} {{path/to/unencrypted_file}} --output {{path/to/encrypted_file}}` - -- Encrypt a file with one or more public keys that are specified in a recipients file: - -`age --recipients-file {{path/to/recipients_file}} {{path/to/unencrypted_file}} --output {{path/to/encrypted_file}}` +`age --recipients-file {{path/to/recipients_file}} --output {{path/to/encrypted_file}} {{path/to/unencrypted_file}}` - Decrypt a file with a passphrase: diff --git a/pages/common/aircrack-ng.md b/pages/common/aircrack-ng.md new file mode 100644 index 0000000000..7cb82f22bc --- /dev/null +++ b/pages/common/aircrack-ng.md @@ -0,0 +1,17 @@ +# aircrack-ng + +> Crack WEP and WPA/WPA2 keys from handshake in captured packets. +> Part of Aircrack-ng network software suite. +> More information: . + +- Crack key from capture file using [w]ordlist: + +`aircrack-ng -w {{path/to/wordlist.txt}} {{path/to/capture.cap}}` + +- Crack key from capture file using [w]ordlist and the access point's [e]ssid: + +`aircrack-ng -w {{path/to/wordlist.txt}} -e {{essid}} {{path/to/capture.cap}}` + +- Crack key from capture file using [w]ordlist and the access point's MAC address: + +`aircrack-ng -w {{path/to/wordlist.txt}} --bssid {{mac}} {{path/to/capture.cap}}` diff --git a/pages/common/airdecap-ng.md b/pages/common/airdecap-ng.md new file mode 100644 index 0000000000..83c477aa5e --- /dev/null +++ b/pages/common/airdecap-ng.md @@ -0,0 +1,25 @@ +# airdecap-ng + +> Decrypt a WEP, WPA or WPA2 encrypted capture file. +> Part of Aircrack-ng network software suite. +> More information: . + +- Remove wireless headers from an open network capture file and use the access point's MAC address to filter: + +`airdecap-ng -b {{ap_mac}} {{path/to/capture.cap}}` + +- Decrypt a WEP encrypted capture file using the key in hex format: + +`airdecap-ng -w {{hex_key}} {{path/to/capture.cap}}` + +- Decrypt a WPA/WPA2 encrypted capture file using the access point's [e]ssid and [p]assword: + +`airdecap-ng -e {{essid}} -p {{password}} {{path/to/capture.cap}}` + +- Decrypt a WPA/WPA2 encrypted capture file preserving the headers using the access point's [e]ssid and [p]assword: + +`airdecap-ng -l -e {{essid}} -p {{password}} {{path/to/capture.cap}}` + +- Decrypt a WPA/WPA2 encrypted capture file using the access point's [e]ssid and [p]assword and use its MAC address to filter: + +`airdecap-ng -b {{ap_mac}} -e {{essid}} -p {{password}} {{path/to/capture.cap}}` diff --git a/pages/common/airshare.md b/pages/common/airshare.md new file mode 100644 index 0000000000..ea9ded9502 --- /dev/null +++ b/pages/common/airshare.md @@ -0,0 +1,28 @@ +# airshare + +> Transfer data between two machines in a local network. +> More information: . + +- Share files or directories: + +`airshare {{code}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` + +- Receive a file: + +`airshare {{code}}` + +- Host a receiving server (use this to be able to upload files using the web interface): + +`airshare --upload {{code}}` + +- Send files or directories to a receiving server: + +`airshare --upload {{code}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` + +- Send files whose paths have been copied to the clipboard: + +`airshare --file-path {{code}}` + +- Receive a file and copy it to the clipboard: + +`airshare --clip-receive {{code}}` diff --git a/pages/common/amass.md b/pages/common/amass.md index 91c59a9bfc..51dd792c2a 100644 --- a/pages/common/amass.md +++ b/pages/common/amass.md @@ -4,9 +4,9 @@ > Some subcommands such as `amass db` have their own usage documentation. > More information: . -- Check the Amass version: +- Execute an Amass subcommand: -`amass -version` +`amass {{subcommand}}` - Show general help: @@ -16,6 +16,6 @@ `amass -help {{subcommand}}` -- Execute an Amass subcommand: +- Display version: -`amass {{subcommand}}` +`amass -version` diff --git a/pages/common/anki.md b/pages/common/anki.md new file mode 100644 index 0000000000..f5ef777b3e --- /dev/null +++ b/pages/common/anki.md @@ -0,0 +1,20 @@ +# anki + +> Powerful, intelligent flashcard program. +> More information: . + +- Launch `anki`: + +`anki` + +- Launch `anki` with a specific profile: + +`anki -p {{profile_name}}` + +- Launch `anki` in a specific language: + +`anki -l {{language}}` + +- Launch `anki` from a specific directory instead of the default (`~/Anki`): + +`anki -b {{path/to/directory}}` diff --git a/pages/common/ansible-doc.md b/pages/common/ansible-doc.md index e7ff4cff64..babc8dc305 100644 --- a/pages/common/ansible-doc.md +++ b/pages/common/ansible-doc.md @@ -10,7 +10,7 @@ - List available plugins of a specific type: -`ansible-doc --type {{plugin_type}} --list` +`ansible-doc --type {{become|cache|callback|cliconf|connection|...}} --list` - Show information about a specific action plugin (module): @@ -18,7 +18,7 @@ - Show information about a plugin with a specific type: -`ansible-doc --type {{plugin_type}} {{plugin_name}}` +`ansible-doc --type {{become|cache|callback|cliconf|connection|...}} {{plugin_name}}` - Show the playbook snippet for action plugin (modules): diff --git a/pages/common/anytopnm.md b/pages/common/anytopnm.md new file mode 100644 index 0000000000..af7381906e --- /dev/null +++ b/pages/common/anytopnm.md @@ -0,0 +1,12 @@ +# anytopnm + +> Converts an arbitrary type of image file to common image formats. +> More information: . + +- Convert an input image to PBM, PGM, or PPM format irrespective of the input type: + +`anytopnm {{path/to/input}} > {{path/to/output.pnm}}` + +- Display version: + +`anytopnm -version` diff --git a/pages/common/apg.md b/pages/common/apg.md index e4b670bd28..8778068cac 100644 --- a/pages/common/apg.md +++ b/pages/common/apg.md @@ -21,4 +21,4 @@ - Create a password that doesn't appear in a dictionary (the dictionary file has to be provided): -`apg -r {{dictionary_file}}` +`apg -r {{path/to/dictionary_file}}` diff --git a/pages/common/apktool.md b/pages/common/apktool.md index 9eb1dd48dc..908d254058 100644 --- a/pages/common/apktool.md +++ b/pages/common/apktool.md @@ -5,7 +5,7 @@ - Decode an APK file: -`apktool d {{file.apk}}` +`apktool d {{path/to/file.apk}}` - Build an APK file from a directory: @@ -13,4 +13,4 @@ - Install and store a framework: -`apktool if {{framework.apk}}` +`apktool if {{path/to/framework.apk}}` diff --git a/pages/common/apm.md b/pages/common/apm.md index 0ffc95a9ca..793af24ed4 100644 --- a/pages/common/apm.md +++ b/pages/common/apm.md @@ -4,14 +4,14 @@ > See `atom`. > More information: . -- Install a package from http://atom.io/packages or a theme from http://atom.io/themes: +- Install a package from or a theme from : -`apm install {{package_name}}` +`apm install {{package}}` - Remove a package/theme: -`apm remove {{package_name}}` +`apm remove {{package}}` - Upgrade a package/theme: -`apm upgrade {{package_name}}` +`apm upgrade {{package}}` diff --git a/pages/common/ar.md b/pages/common/ar.md index f2264a63af..522eaf3d9c 100644 --- a/pages/common/ar.md +++ b/pages/common/ar.md @@ -1,24 +1,25 @@ # ar -> Create, modify, and extract from archives (`.a`, `.so`, `.o`). +> Create, modify, and extract from Unix archives. Typically used for static libraries (`.a`) and Debian packages (`.deb`). +> See also: `tar`. > More information: . -- Extract all members from an archive: +- E[x]tract all members from an archive: -`ar -x {{path/to/file.a}}` +`ar x {{path/to/file.a}}` -- List the members of an archive: +- Lis[t] contents in a specific archive: -`ar -t {{path/to/file.a}}` +`ar t {{path/to/file.ar}}` -- Replace or add files to an archive: +- [r]eplace or add specific files to an archive: -`ar -r {{path/to/file.a}} {{path/to/file1.o}} {{path/to/file2.o}}` +`ar r {{path/to/file.deb}} {{path/to/debian-binary path/to/control.tar.gz path/to/data.tar.xz ...}}` -- Insert an object file index (equivalent to using `ranlib`): +- In[s]ert an object file index (equivalent to using `ranlib`): -`ar -s {{path/to/file.a}}` +`ar s {{path/to/file.a}}` -- Create an archive with files and an accompanying object file index: +- Create an archive with specific files and an accompanying object file index: -`ar -rs {{path/to/file.a}} {{path/to/file1.o}} {{path/to/file2.o}}` +`ar rs {{path/to/file.a}} {{path/to/file1.o path/to/file2.o ...}}` diff --git a/pages/common/arduino-builder.md b/pages/common/arduino-builder.md index c1fd4ac50a..1dbe062630 100644 --- a/pages/common/arduino-builder.md +++ b/pages/common/arduino-builder.md @@ -1,6 +1,6 @@ # arduino-builder -> A command-line tool for compiling arduino sketches. +> Compile arduino sketches. > DEPRECATION WARNING: This tool is being phased out in favor of `arduino`. > More information: . diff --git a/pages/common/argocd-app.md b/pages/common/argocd-app.md new file mode 100644 index 0000000000..1a6a6ba6a4 --- /dev/null +++ b/pages/common/argocd-app.md @@ -0,0 +1,36 @@ +# argocd app + +> Command-line interface to manage applications by Argo CD. +> More information: . + +- List applications: + +`argocd app list --output {{json|yaml|wide}} ` + +- Get application details: + +`argocd app get {{app_name}} --output {{json|yaml|wide}}` + +- Deploy application internally (to the same cluster that Argo CD is running in): + +`argocd app create {{app_name}} --repo {{git_repo_url}} --path {{path/to/repo}} --dest-server https://kubernetes.default.svc --dest-namespace {{ns}}` + +- Delete an application: + +`argocd app delete {{app_name}}` + +- Enable application auto-sync: + +`argocd app set {{app_name}} --sync-policy auto --auto-prune --self-heal` + +- Preview app synchronization without affecting cluster: + +`argocd app sync {{app_name}} --dry-run --prune` + +- Show application deployment history: + +`argocd app history {{app_name}} --output {{wide|id}}` + +- Rollback application to a previous deployed version by history ID (deleting unexpected resources): + +`argocd app rollback {{app_name}} {{history_id}} --prune` diff --git a/pages/common/argocd.md b/pages/common/argocd.md new file mode 100644 index 0000000000..d36773beb5 --- /dev/null +++ b/pages/common/argocd.md @@ -0,0 +1,13 @@ +# argocd + +> Command-line interface to control a Argo CD server. +> Some subcommands such as `argocd app` have their own usage documentation. +> More information: . + +- Login to Argo CD server: + +`argocd login --insecure --username {{user}} --password {{password}} {{argocd_server:port}}` + +- List applications: + +`argocd app list` diff --git a/pages/common/arp.md b/pages/common/arp.md index 75acd74d30..e69e77988a 100644 --- a/pages/common/arp.md +++ b/pages/common/arp.md @@ -7,10 +7,6 @@ `arp -a` -- Clear the entire cache: - -`sudo arp -a -d` - - Delete a specific entry: `arp -d {{address}}` diff --git a/pages/common/asar.md b/pages/common/asar.md index 9b6d00dc51..3c332e9b64 100644 --- a/pages/common/asar.md +++ b/pages/common/asar.md @@ -5,16 +5,16 @@ - Archive a file or directory: -`asar pack {{path/to/file_or_directory}} {{archived.asar}}` +`asar pack {{path/to/input_file_or_directory}} {{path/to/output_archive.asar}}` - Extract an archive: -`asar extract {{archived.asar}}` +`asar extract {{path/to/archive.asar}}` - Extract a specific file from an archive: -`asar extract-file {{archived.asar}} {{file}}` +`asar extract-file {{path/to/archive.asar}} {{file}}` - List the contents of an archive file: -`asar list {{archived.asar}}` +`asar list {{path/to/archive.asar}}` diff --git a/pages/common/asciinema.md b/pages/common/asciinema.md index 7e3bc3cf3b..1a52f4722d 100644 --- a/pages/common/asciinema.md +++ b/pages/common/asciinema.md @@ -1,7 +1,7 @@ # asciinema > Record and replay terminal sessions, and optionally share them on asciinema.org. -> More information: . +> More information: . - Associate the local install of `asciinema` with an asciinema.org account: diff --git a/pages/common/asciitopgm.md b/pages/common/asciitopgm.md new file mode 100644 index 0000000000..245aa2deb7 --- /dev/null +++ b/pages/common/asciitopgm.md @@ -0,0 +1,12 @@ +# asciitopgm + +> Convert ASCII graphics into a PGM file. +> More information: . + +- Read ASCII data as input and produce a PGM image with pixel values that are an approximation of the "brightness" of the ASCII characters: + +`asciitopgm {{path/to/input_file}} > {{path/to/output_file.pgm}}` + +- Display version: + +`asciitopgm -version` diff --git a/pages/common/assimp.md b/pages/common/assimp.md index c0f92246f5..ecebb3992b 100644 --- a/pages/common/assimp.md +++ b/pages/common/assimp.md @@ -2,7 +2,7 @@ > Command-line client for the Open Asset Import Library. > Supports loading of 40+ 3D file formats, and exporting to several popular 3D formats. -> More information: . +> More information: . - List all supported import formats: diff --git a/pages/common/astyle.md b/pages/common/astyle.md index 04241a164e..7a31cfffb0 100644 --- a/pages/common/astyle.md +++ b/pages/common/astyle.md @@ -2,7 +2,7 @@ > 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: . +> More information: . - Apply the default style of 4 spaces per indent and no formatting changes: diff --git a/pages/common/at.md b/pages/common/at.md index e59375ef49..8255ba4430 100644 --- a/pages/common/at.md +++ b/pages/common/at.md @@ -4,11 +4,11 @@ > Service atd (or atrun) should be running for the actual executions. > More information: . -- Execute commands from standard input in 5 minutes (press `Ctrl + D` when done): +- Execute commands from `stdin` in 5 minutes (press `Ctrl + D` when done): `at now + 5 minutes` -- Execute a command from standard input at 10:00 AM today: +- Execute a command from `stdin` at 10:00 AM today: `echo "{{./make_db_backup.sh}}" | at 1000` diff --git a/pages/common/audacious.md b/pages/common/audacious.md new file mode 100755 index 0000000000..0aa8b1aa28 --- /dev/null +++ b/pages/common/audacious.md @@ -0,0 +1,32 @@ +# audacious + +> An open-source audio player. +> More information: . + +- Launch the program: + +`audacious` + +- Enqueue a specific directory of audio files: + +`audacious --enqueue {{path/to/directory}}` + +- Start or stop playback: + +`audacious --play-pause` + +- Skip forwards or backwards in the playlist: + +`audacious --{{fwd|rew}}` + +- Stop playback: + +`audacious --stop` + +- Start a headless version: + +`audacious --headless` + +- Exit as soon as playback stops or there is nothing to playback: + +`audacious --quit-after-play` diff --git a/pages/common/autoflake.md b/pages/common/autoflake.md index 29c72f44de..67fa136813 100644 --- a/pages/common/autoflake.md +++ b/pages/common/autoflake.md @@ -5,15 +5,15 @@ - Remove unused variables from a single file and display the diff: -`autoflake --remove-unused-variables {{file.py}}` +`autoflake --remove-unused-variables {{path/to/file.py}}` - Remove unused imports from multiple files and display the diffs: -`autoflake --remove-all-unused-imports {{file1.py}} {{file2.py}} {{file3.py}}` +`autoflake --remove-all-unused-imports {{path/to/file1.py path/to/file2.py ...}}` - Remove unused variables from a file, overwriting the file: -`autoflake --remove-unused-variables --in-place {{file.py}}` +`autoflake --remove-unused-variables --in-place {{path/to/file.py}}` - Remove unused variables recursively from all files in a directory, overwriting each file: diff --git a/pages/common/awk.md b/pages/common/awk.md index 93f55af6f1..79a89ecd81 100644 --- a/pages/common/awk.md +++ b/pages/common/awk.md @@ -5,27 +5,27 @@ - Print the fifth column (a.k.a. field) in a space-separated file: -`awk '{print $5}' {{filename}}` +`awk '{print $5}' {{path/to/file}}` - Print the second column of the lines containing "foo" in a space-separated file: -`awk '/{{foo}}/ {print $2}' {{filename}}` +`awk '/{{foo}}/ {print $2}' {{path/to/file}}` - Print the last column of each line in a file, using a comma (instead of space) as a field separator: -`awk -F ',' '{print $NF}' {{filename}}` +`awk -F ',' '{print $NF}' {{path/to/file}}` - Sum the values in the first column of a file and print the total: -`awk '{s+=$1} END {print s}' {{filename}}` +`awk '{s+=$1} END {print s}' {{path/to/file}}` - Print every third line starting from the first line: -`awk 'NR%3==1' {{filename}}` +`awk 'NR%3==1' {{path/to/file}}` - Print different values based on conditions: -`awk '{if ($1 == "foo") print "Exact match foo"; else if ($1 ~ "bar") print "Partial match bar"; else print "Baz"}' {{filename}}` +`awk '{if ($1 == "foo") print "Exact match foo"; else if ($1 ~ "bar") print "Partial match bar"; else print "Baz"}' {{path/to/file}}` - Print all lines where the 10th column value equals the specified value: diff --git a/pages/common/aws-backup.md b/pages/common/aws-backup.md new file mode 100644 index 0000000000..fce058982b --- /dev/null +++ b/pages/common/aws-backup.md @@ -0,0 +1,24 @@ +# aws backup + +> Unified backup service designed to protect Amazon Web Services services and their associated data. +> More information: . + +- Return BackupPlan details for a specific BackupPlanId: + +`aws backup get-backup-plan --backup-plan-id {{id}}` + +- Create a backup plan using a specific backup plan name and backup rules: + +`aws backup create-backup-plan --backup-plan {{plan}}` + +- Delete a specific backup plan: + +`aws backup delete-backup-plan --backup-plan-id {{id}}` + +- Return a list of all active backup plans for the current account: + +`aws backup list-backup-plans` + +- Display details about your report jobs: + +`aws backup list-report-jobs` diff --git a/pages/common/aws-batch.md b/pages/common/aws-batch.md new file mode 100644 index 0000000000..20043e4a19 --- /dev/null +++ b/pages/common/aws-batch.md @@ -0,0 +1,28 @@ +# aws batch + +> Run batch computing workloads through the AWS Batch service. +> More information: . + +- List running batch jobs: + +`aws batch list-jobs --job-queue {{queue_name}}` + +- Create compute environment: + +`aws batch create-compute-environment --compute-environment-name {{compute_environment_name}} --type {{type}}` + +- Create batch job queue: + +`aws batch create-job-queue --job-queue-name {{queue_name}} --priority {{priority}} --compute-environment-order {{compute_environment}}` + +- Submit job: + +`aws batch submit-job --job-name {{job_name}} --job-queue {{job_queue}} --job-definition {{job_definition}}` + +- Describe the list of batch jobs: + +`aws batch describe-jobs --jobs {{jobs}}` + +- Cancel job: + +`aws batch cancel-job --job-id {{job_id}} --reason {{reason}}` diff --git a/pages/common/aws-cloud9.md b/pages/common/aws-cloud9.md new file mode 100644 index 0000000000..1b139f1ab1 --- /dev/null +++ b/pages/common/aws-cloud9.md @@ -0,0 +1,32 @@ +# aws cloud9 + +> Manage Cloud9 - a collection of tools to code, build, run, test, debug, and release software in the cloud. +> More information: . + +- Get a list of Cloud9 development environment identifiers: + +`aws cloud9 list-environments` + +- Create a Cloud9 development environment: + +`aws cloud9 create-environment-ec2 --name {{name}} --instance-type {{instance_type}}` + +- Display information about Cloud9 development environments: + +`aws cloud9 describe-environments --environment-ids {{environment_ids}}` + +- Add an environment member to a Cloud9 development environment: + +`aws cloud9 create-environment-membership --environment-id {{environment_id}} --user-arn {{user_arn}} --permissions {{permissions}}` + +- Display status information for a Cloud9 development environment: + +`aws cloud9 describe-environment-status --environment-id {{environment_id}}` + +- Delete a Cloud9 environment: + +`aws cloud9 delete-environment --environment-id {{environment_id}}` + +- Delete an environment member from a development environment: + +`aws cloud9 delete-environment-membership --environment-id {{environment_id}} --user-arn {{user_arn}}` diff --git a/pages/common/aws-cloudformation.md b/pages/common/aws-cloudformation.md new file mode 100644 index 0000000000..38f5b9bc83 --- /dev/null +++ b/pages/common/aws-cloudformation.md @@ -0,0 +1,32 @@ +# aws cloudformation + +> Model, provision, and manage AWS and third-party resources by treating infrastructure as code. +> More information: . + +- Create a stack from a template file: + +`aws cloudformation create-stack --stack-name {{stack-name}} --region {{region}} --template-body {{file://path/to/file.yml}} --profile {{profile}}` + +- Delete a stack: + +`aws cloudformation delete-stack --stack-name {{stack-name}} --profile {{profile}}` + +- List all stacks: + +`aws cloudformation list-stacks --profile {{profile}}` + +- List all running stacks: + +`aws cloudformation list-stacks --stack-status-filter CREATE_COMPLETE --profile {{profile}}` + +- Check the status of a stack: + +`aws cloudformation describe-stacks --stack-name {{stack-id}} --profile {{profile}}` + +- Initiate drift detection for a stack: + +`aws cloudformation detect-stack-drift --stack-name {{stack-id}} --profile {{profile}}` + +- Check the drift status output of a stack using 'StackDriftDetectionId' from the previous command output: + +`aws cloudformation describe-stack-resource-drifts --stack-name {{stack-drift-detection-id}} --profile {{profile}}` diff --git a/pages/common/aws-cloudwatch.md b/pages/common/aws-cloudwatch.md new file mode 100644 index 0000000000..fc4681e361 --- /dev/null +++ b/pages/common/aws-cloudwatch.md @@ -0,0 +1,32 @@ +# aws cloudwatch + +> Monitor AWS resources to gain system-wide visibility into resource utilization, application performance, and operational health. +> More information: . + +- List dashboards for your account: + +`aws cloudwatch list-dashboards` + +- Display details for the specified dashboard: + +`aws cloudwatch get-dashboard --dashboard-name {{dashboard_name}}` + +- List metrics: + +`aws cloudwatch list-metrics` + +- List alarms: + +`aws cloudwatch describe-alarms` + +- Create or update an alarm and associate it with a metric: + +`aws cloudwatch put-metric-alarm --alarm-name {{alarm_name}} --evaluation-periods {{evaluation_periods}} --comparison-operator {{comparison_operator}}` + +- Delete the specified alarms: + +`aws cloudwatch delete-alarms --alarm_names {{alarm_names}}` + +- Delete the specified dashboards: + +`aws cloudwatch delete-dashboards --dashboard-names {{dashboard_names}}` diff --git a/pages/common/aws-ecr.md b/pages/common/aws-ecr.md index 0fe1f3913d..6d1c854bda 100644 --- a/pages/common/aws-ecr.md +++ b/pages/common/aws-ecr.md @@ -25,7 +25,7 @@ - Delete an image from a repository: -`aws ecr batch-delete-image --repository-name {{repository}} --image-ids imageTag={{latest}}` +`aws ecr batch-delete-image --repository-name {{repository}} --image-ids imageTag={{latest}}` - Delete a repository: diff --git a/pages/common/aws-lightsail.md b/pages/common/aws-lightsail.md index c079917400..37b33c4d53 100644 --- a/pages/common/aws-lightsail.md +++ b/pages/common/aws-lightsail.md @@ -1,6 +1,6 @@ # aws lightsail -> Manage Amazon Lightsail resources using the CLI. +> Manage Amazon Lightsail resources. > More information: . - List all virtual private servers, or instances: diff --git a/pages/common/aws-route53.md b/pages/common/aws-route53.md index 6f3927ea91..7e734d353a 100644 --- a/pages/common/aws-route53.md +++ b/pages/common/aws-route53.md @@ -21,4 +21,4 @@ - Test DNS resolving by Amazon servers of a given zone: -`aws route53 test-dns-answer --hosted-zone-id {{zone_id}} --record-name {{name}} --record-type {{type}}` +`aws route53 test-dns-answer --hosted-zone-id {{zone_id}} --record-name {{name}} --record-type {{type}}` diff --git a/pages/common/aws-s3-rb.md b/pages/common/aws-s3-rb.md new file mode 100644 index 0000000000..518258fc98 --- /dev/null +++ b/pages/common/aws-s3-rb.md @@ -0,0 +1,12 @@ +# aws s3 rb + +> Delete an empty S3 bucket. +> More information: . + +- Delete an empty S3 bucket: + +`aws s3 rb s3://{{bucket_name}}` + +- Force delete an S3 bucket and its non-versioned objects (will crash if versioned objects are present): + +`aws s3 rb s3://{{bucket_name}} --force` diff --git a/pages/common/aws-workmail.md b/pages/common/aws-workmail.md index 8039ca03b7..9a28ffe5c5 100644 --- a/pages/common/aws-workmail.md +++ b/pages/common/aws-workmail.md @@ -1,6 +1,6 @@ # aws workmail -> Manage Amazon WorkMail using the CLI. +> Manage Amazon WorkMail. > More information: . - List all WorkMail organizations: diff --git a/pages/common/axel.md b/pages/common/axel.md index e919fa2982..b494915683 100644 --- a/pages/common/axel.md +++ b/pages/common/axel.md @@ -10,7 +10,7 @@ - Download and specify filename: -`axel {{url}} -o {{filename}}` +`axel {{url}} -o {{path/to/file}}` - Download with multiple connections: diff --git a/pages/common/az-account.md b/pages/common/az-account.md index f0c9164594..bd70f446f4 100644 --- a/pages/common/az-account.md +++ b/pages/common/az-account.md @@ -1,7 +1,7 @@ # az account > Manage Azure subscription information. -> Part of `az`, the command-line client for Microsoft Azure. +> Part of `azure-cli` (also known as `az`). > More information: . - Print a list of subscriptions for the logged in account: diff --git a/pages/common/az-acr.md b/pages/common/az-acr.md new file mode 100644 index 0000000000..263a09bfd6 --- /dev/null +++ b/pages/common/az-acr.md @@ -0,0 +1,37 @@ +# az acr + +> Manage private registries with Azure Container Registries. +> Part of `azure-cli` (also known as `az`). +> More information: . + +- Create a managed container registry: + +`az acr create --name {{registry_name}} --resource-group {{resource_group}} --sku {{sku}}` + +- Login to a registry: + +`az acr login --name {{registry_name}}` + +- Tag a local image for ACR: + +`docker tag {{image_name}} {{registry_name}}.azurecr.io/{{image_name}}:{{tag}}` + +- Push an image to a registry: + +`docker push {{registry_name}}.azurecr.io/{{image_name}}:{{tag}}` + +- Pull an image from a registry: + +`docker pull {{registry_name}}.azurecr.io/{{image_name}}:{{tag}}` + +- Delete an image from a registry: + +`az acr repository delete --name {{registry_name}} --repository {{image_name}}:{{tag}}` + +- Delete a managed container registry: + +`az acr delete --name {{registry_name}} --resource-group {{resource_group}} --yes` + +- List images within a registry: + +`az acr repository list --name {{registry_name}} --output table` diff --git a/pages/common/az-advisor.md b/pages/common/az-advisor.md new file mode 100644 index 0000000000..9ed3d960db --- /dev/null +++ b/pages/common/az-advisor.md @@ -0,0 +1,25 @@ +# az advisor + +> Manage Azure subscription information. +> Part of `azure-cli` (also known as `az`). +> More information: . + +- List Azure Advisor configuration for the entire subscription: + +`az advisor configuration list` + +- Show Azure Advisor configuration for the given subscription or resource group: + +`az advisor configuration show --resource_group {{resource_group}}` + +- List Azure Advisor recommendations: + +`az advisor recommendation list` + +- Enable Azure Advisor recommendations: + +`az advisor recommendation enable --resource_group {{resource_group}}` + +- Disable Azure Advisor recommendations: + +`az advisor recommendation disable --resource_group {{resource_group}}` diff --git a/pages/common/az-aks.md b/pages/common/az-aks.md new file mode 100644 index 0000000000..8654855f12 --- /dev/null +++ b/pages/common/az-aks.md @@ -0,0 +1,25 @@ +# az aks + +> Manage Azure Kubernetes Service (AKS) clusters. +> Part of `azure-cli` (also known as `az`). +> More information: . + +- List AKS clusters: + +`az aks list --resource-group {{resource_group}}` + +- Create a new AKS cluster: + +`az aks create --resource-group {{resource_group}} --name {{name}} --node-count {{count}} --node-vm-size {{size}}` + +- Delete an AKS cluster: + +`az aks delete --resource-group {{resource_group}} --name {{name}}` + +- Get the access credentials for an AKS cluster: + +`az aks get-credentials --resource-group {{resource_group}} --name {{name}}` + +- Get the upgrade versions available for an AKS cluster: + +`az aks get-upgrades --resource-group {{resource_group}} --name {{name}}` diff --git a/pages/common/az-apim.md b/pages/common/az-apim.md new file mode 100644 index 0000000000..046b9dee08 --- /dev/null +++ b/pages/common/az-apim.md @@ -0,0 +1,25 @@ +# az apim + +> Manage Azure API Management services. +> Part of `azure-cli` (also known as `az`). +> More information: . + +- List API Management services within a resource group: + +`az apim list --resource-group {{resource_group}}` + +- Create an API Management service instance: + +`az apim create --name {{name}} --resource-group {{resource_group}} --publisher-email {{email}} --publisher-name {{name}}` + +- Delete an API Management service: + +`az apim delete --name {{name}} --resource-group {{resource_group}}` + +- Show details of an API Management service instance: + +`az apim show --name {{name}} --resource-group {{resource_group}}` + +- Update an API Management service instance: + +`az apim update --name {{name}} --resource-group {{resource_group}}` diff --git a/pages/common/az-appconfig.md b/pages/common/az-appconfig.md index 18b27de83e..5d099f8683 100644 --- a/pages/common/az-appconfig.md +++ b/pages/common/az-appconfig.md @@ -1,7 +1,7 @@ # az appconfig > Manage App configurations on Azure. -> Part of `az`, the command-line client for Microsoft Azure. +> Part of `azure-cli` (also known as `az`). > More information: . - Create an App Configuration: diff --git a/pages/common/az-bicep.md b/pages/common/az-bicep.md index ec5a226633..c7222be12e 100644 --- a/pages/common/az-bicep.md +++ b/pages/common/az-bicep.md @@ -1,7 +1,7 @@ # az bicep > Bicep CLI command group. -> Part of `azure-cli`. +> Part of `azure-cli` (also known as `az`). > More information: . - Install Bicep CLI: diff --git a/pages/common/az-config.md b/pages/common/az-config.md index 54bec7b5b2..5de090cba7 100644 --- a/pages/common/az-config.md +++ b/pages/common/az-config.md @@ -1,7 +1,7 @@ # az config > Manage Azure CLI configuration. -> Part of `azure-cli`. +> Part of `azure-cli` (also known as `az`). > More information: . - Print all configurations: diff --git a/pages/common/az-devops.md b/pages/common/az-devops.md new file mode 100644 index 0000000000..507baca4fc --- /dev/null +++ b/pages/common/az-devops.md @@ -0,0 +1,25 @@ +# az devops + +> Manage Azure DevOps organizations. +> Part of `azure-cli` (also known as `az`). +> More information: . + +- Set the Personal Access Token (PAT) to login to a particular organization: + +`az devops login --organization {{organization_url}}` + +- Open a project in the browser: + +`az devops project show --project {{project_name}} --open` + +- List members of a specific team working on a particular project: + +`az devops team list-member --project {{project_name}} --team {{team_name}}` + +- Check the Azure DevOps CLI current configuration: + +`az devops configure --list` + +- Configure the Azure DevOps CLI behavior by setting a default project and a default organization: + +`az devops configure --defaults project={{project_name}} organization={{organization_url}}` diff --git a/pages/common/az-feedback.md b/pages/common/az-feedback.md index 9c92ada7c7..a7288b759b 100644 --- a/pages/common/az-feedback.md +++ b/pages/common/az-feedback.md @@ -1,7 +1,7 @@ # az feedback > Send feedback to the Azure CLI Team. -> Part of `azure-cli`. +> Part of `azure-cli` (also known as `az`). > More information: . - Send feedback to the Azure CLI Team: diff --git a/pages/common/az-group.md b/pages/common/az-group.md index a262c83737..2a01359b05 100644 --- a/pages/common/az-group.md +++ b/pages/common/az-group.md @@ -1,8 +1,8 @@ # az group > Manage resource groups and template deployments. -> Part of `azure-cli`. -> More information: . +> Part of `azure-cli` (also known as `az`). +> More information: . - Create a new resource group: diff --git a/pages/common/az-lock.md b/pages/common/az-lock.md index caf574b40a..472560f1ce 100644 --- a/pages/common/az-lock.md +++ b/pages/common/az-lock.md @@ -1,7 +1,7 @@ # az lock > Manage Azure locks. -> Part of `azure-cli`. +> Part of `azure-cli` (also known as `az`). > More information: . - Create a read-only subscription level lock: diff --git a/pages/common/az-login.md b/pages/common/az-login.md index 44c61a4a12..c6e9016df9 100644 --- a/pages/common/az-login.md +++ b/pages/common/az-login.md @@ -1,7 +1,7 @@ # az login > Log in to Azure. -> Part of `az`, the command-line client for Microsoft Azure. +> Part of `azure-cli` (also known as `az`). > More information: . - Log in interactively: @@ -10,7 +10,7 @@ - Log in with a service principal using a client secret: -`az login --service-principal --username {{http://azure-cli-service-principal}} --passsword {{secret}} --tenant {{someone.onmicrosoft.com}}` +`az login --service-principal --username {{http://azure-cli-service-principal}} --password {{secret}} --tenant {{someone.onmicrosoft.com}}` - Log in with a service principal using a client certificate: diff --git a/pages/common/az-logout.md b/pages/common/az-logout.md index d69db3e485..6d02046eb4 100644 --- a/pages/common/az-logout.md +++ b/pages/common/az-logout.md @@ -1,7 +1,7 @@ # az logout > Log out from an Azure subscription. -> Part of `azure-cli`. +> Part of `azure-cli` (also known as `az`). > More information: . - Log out from the active account: diff --git a/pages/common/az-network.md b/pages/common/az-network.md index 34d255a588..8ad2d45bf1 100644 --- a/pages/common/az-network.md +++ b/pages/common/az-network.md @@ -1,7 +1,7 @@ # az network > Manage Azure Network resources. -> Part of `azure-cli`. +> Part of `azure-cli` (also known as `az`). > More information: . - List network resources in a region that are used against a subscription quota: diff --git a/pages/common/az-pipelines.md b/pages/common/az-pipelines.md index 2048d11a36..7da526d317 100644 --- a/pages/common/az-pipelines.md +++ b/pages/common/az-pipelines.md @@ -1,7 +1,7 @@ # az pipelines > Manage Azure Pipelines resources. -> Part of `azure-cli`. +> Part of `azure-cli` (also known as `az`). > More information: . - Create a new Azure Pipeline (YAML based): diff --git a/pages/common/az-provider.md b/pages/common/az-provider.md index 877d1eead6..b9b7c59af4 100644 --- a/pages/common/az-provider.md +++ b/pages/common/az-provider.md @@ -1,8 +1,8 @@ # az provider > Manage resource providers. -> Part of `azure-cli`. -> More information: . +> Part of `azure-cli` (also known as `az`). +> More information: . - Register a provider: diff --git a/pages/common/az-redis.md b/pages/common/az-redis.md index c590441b26..19338d7829 100644 --- a/pages/common/az-redis.md +++ b/pages/common/az-redis.md @@ -1,8 +1,8 @@ # az redis > Manage Redis caches. -> Part of `azure-cli`. -> More information: . +> Part of `azure-cli` (also known as `az`). +> More information: . - Create a new Redis cache instance: diff --git a/pages/common/az-repos.md b/pages/common/az-repos.md new file mode 100644 index 0000000000..790b7c6c30 --- /dev/null +++ b/pages/common/az-repos.md @@ -0,0 +1,21 @@ +# az repos + +> Manage Azure DevOps repos. +> Part of `azure-cli` (also known as `az`). +> More information: . + +- List all repos in a specific project: + +`az repos list --project {{project_name}}` + +- Add policy on a specific branch of a specific repository to restrict basic merge: + +`az repos policy merge-strategy create --repository-id {{repository_id_in_repos_list}} --branch {{branch_name}} --blocking --enabled --allow-no-fast-forward false --allow-rebase true --allow-rebase-merge true --allow-squash true` + +- Add build validation on a specific repository, using an existing build pipeline, to be triggered automatically on source update: + +`az repos policy build create --repository-id {{repository_id}} --build-definition-id {{build_pipeline_id}} --branch main --blocking --enabled --queue-on-source-update-only true --display-name {{name}} --valid-duration {{minutes}}` + +- List all active Pull Requests on a specific repository within a specific project: + +`az repos pr list --project {{project_name}} --repository {{repository_name}} --status active` diff --git a/pages/common/az-sshkey.md b/pages/common/az-sshkey.md index 25f2a6906e..4a83735f79 100644 --- a/pages/common/az-sshkey.md +++ b/pages/common/az-sshkey.md @@ -1,7 +1,7 @@ # az sshkey > Manage ssh public keys with virtual machines. -> Part of `azure-cli`. +> Part of `azure-cli` (also known as `az`). > More information: . - Create a new SSH key: diff --git a/pages/common/az-storage-account.md b/pages/common/az-storage-account.md index 8672e5b272..495fa36eed 100644 --- a/pages/common/az-storage-account.md +++ b/pages/common/az-storage-account.md @@ -1,7 +1,7 @@ # az storage account > Manage storage accounts in Azure. -> Part of `azure-cli`. +> Part of `azure-cli` (also known as `az`). > More information: . - Create an storage account: diff --git a/pages/common/az-storage-blob.md b/pages/common/az-storage-blob.md index 86f7ea4482..5b2ef2f906 100644 --- a/pages/common/az-storage-blob.md +++ b/pages/common/az-storage-blob.md @@ -1,7 +1,7 @@ # az storage blob > Manage blob storage containers and objects in Azure. -> Part of `azure-cli`. +> Part of `azure-cli` (also known as `az`). > More information: . - Download a blob to a file path: diff --git a/pages/common/az-storage-container.md b/pages/common/az-storage-container.md index e751451c78..4526e05c4f 100644 --- a/pages/common/az-storage-container.md +++ b/pages/common/az-storage-container.md @@ -1,7 +1,7 @@ # az storage container > Manage blob storage containers in Azure. -> Part of `azure-cli`. +> Part of `azure-cli` (also known as `az`). > More information: . - Create a container in a storage account: diff --git a/pages/common/az-storage-entity.md b/pages/common/az-storage-entity.md index 335fd76064..c9327d58be 100644 --- a/pages/common/az-storage-entity.md +++ b/pages/common/az-storage-entity.md @@ -1,7 +1,7 @@ # az storage entity > Manage Azure Table storage entities. -> Part of `azure-cli`. +> Part of `azure-cli` (also known as `az`). > More information: . - Insert an entity into a table: diff --git a/pages/common/az-storage-queue.md b/pages/common/az-storage-queue.md index e9fc6d4885..ca75291682 100644 --- a/pages/common/az-storage-queue.md +++ b/pages/common/az-storage-queue.md @@ -1,7 +1,7 @@ # az storage queue > Manage storage queues in Azure. -> Part of `azure-cli`. +> Part of `azure-cli` (also known as `az`). > More information: . - Create a queue: diff --git a/pages/common/az-storage-table.md b/pages/common/az-storage-table.md index 57b7ae141f..a93faeb9b4 100644 --- a/pages/common/az-storage-table.md +++ b/pages/common/az-storage-table.md @@ -1,7 +1,7 @@ # az storage table > Manage NoSQL key-value storage in Azure. -> Part of `azure-cli`. +> Part of `azure-cli` (also known as `az`). > More information: . - Create a new table in the storage account: diff --git a/pages/common/az-storage.md b/pages/common/az-storage.md index 3350501c7b..52ab8c613e 100644 --- a/pages/common/az-storage.md +++ b/pages/common/az-storage.md @@ -1,25 +1,25 @@ # az storage > Manage Azure Cloud Storage resources. -> Part of `azure-cli`. +> Part of `azure-cli` (also known as `az`). > More information: . - Create a storage account: -`az storage account create -g {{group_name}} -n {{account_name}} -l {{location}} --sku {{account_sku}}` +`az storage account create --resource-group {{group_name}} --name {{account_name}} -l {{location}} --sku {{account_sku}}` - List all storage accounts in a resource group: -`az storage account list -g {{group_name}}` +`az storage account list --resource-group {{group_name}}` - List the access keys for a storage account: -`az storage account keys list -g {{group_name}} -n {{account_name}}` +`az storage account keys list --resource-group {{group_name}} --name {{account_name}}` - Delete a storage account: -`az storage account delete -g {{group_name}} -n {{account_name}}` +`az storage account delete --resource-group {{group_name}} --name {{account_name}}` - Update the minimum tls version setting for a storage account: -`az storage account update --min-tls-version TLS1_2 -g {{group_name}} -n {{account_name}}` +`az storage account update --min-tls-version {{TLS1_0|TLS1_1|TLS1_2}} --resource-group {{group_name}} --name {{account_name}}` diff --git a/pages/common/az-tag.md b/pages/common/az-tag.md index 3e28d018cd..2a1d64dfad 100644 --- a/pages/common/az-tag.md +++ b/pages/common/az-tag.md @@ -1,7 +1,7 @@ # az tag > Manage tags on a resource. -> Part of `azure-cli`. +> Part of `azure-cli` (also known as `az`). > More information: . - Create a tag value: diff --git a/pages/common/az-term.md b/pages/common/az-term.md index 97010d4d92..30df8299b2 100644 --- a/pages/common/az-term.md +++ b/pages/common/az-term.md @@ -1,7 +1,7 @@ # az term > Manage marketplace agreement with marketplaceordering. -> Part of `azure-cli`. +> Part of `azure-cli` (also known as `az`). > More information: . - Print marketplace terms: diff --git a/pages/common/az-upgrade.md b/pages/common/az-upgrade.md index 02be2ca9c7..0bab1237a8 100644 --- a/pages/common/az-upgrade.md +++ b/pages/common/az-upgrade.md @@ -1,7 +1,7 @@ # az upgrade > Upgrade Azure CLI and Extensions. -> Part of `az`, the command-line client for Microsoft Azure. +> Part of `azure-cli` (also known as `az`). > More information: . - Upgrade Azure CLI: diff --git a/pages/common/az-version.md b/pages/common/az-version.md index c28c0ec397..366ceb94d5 100644 --- a/pages/common/az-version.md +++ b/pages/common/az-version.md @@ -1,7 +1,7 @@ # az version > Shows the current version of Azure CLI modules and extensions. -> Part of `az`, the command-line client for Microsoft Azure. +> Part of `azure-cli` (also known as `az`). > More information: . - Show the current version of Azure CLI modules and extensions in JSON format: diff --git a/pages/common/az-vm.md b/pages/common/az-vm.md index 97736fe440..686f66f026 100644 --- a/pages/common/az-vm.md +++ b/pages/common/az-vm.md @@ -1,7 +1,7 @@ # az vm > Manage virtual machines in Azure. -> Part of `azure-cli`. +> Part of `azure-cli` (also known as `az`). > More information: . - List details of available Virtual Machines: diff --git a/pages/common/az-webapp.md b/pages/common/az-webapp.md index 3f27c79ab4..00a4778db6 100644 --- a/pages/common/az-webapp.md +++ b/pages/common/az-webapp.md @@ -1,7 +1,7 @@ # az webapp > Manage Web Applications hosted in Azure Cloud Services. -> Part of `azure-cli`. +> Part of `azure-cli` (also known as `az`). > Mode information: . - List available runtimes for a web application: diff --git a/pages/common/azure-cli.md b/pages/common/azure-cli.md new file mode 100644 index 0000000000..164d345861 --- /dev/null +++ b/pages/common/azure-cli.md @@ -0,0 +1,8 @@ +# azure-cli + +> This command is an alias of `az`. +> More information: . + +- View documentation for the original command: + +`tldr az` diff --git a/pages/common/b2sum.md b/pages/common/b2sum.md index 118d3b60be..a98a853bff 100644 --- a/pages/common/b2sum.md +++ b/pages/common/b2sum.md @@ -3,17 +3,17 @@ > Calculate BLAKE2 cryptographic checksums. > More information: . -- Calculate the BLAKE2 checksum for a file: +- Calculate the BLAKE2 checksum for one or more files: -`b2sum {{path/to/file}}` +`b2sum {{path/to/file1 path/to/file2 ...}}` -- Calculate BLAKE2 checksums for multiple files: +- Calculate and save the list of BLAKE2 checksums to a file: -`b2sum {{path/to/file1}} {{path/to/file2}}` +`b2sum {{path/to/file1 path/to/file2 ...}} > {{path/to/file.b2}}` -- Calculate the BLAKE2 checksum from `stdin`: +- Calculate a BLAKE2 checksum from `stdin`: -`{{some_command}} | b2sum` +`{{command}} | b2sum` - Read a file of BLAKE2 sums and filenames and verify all files have matching checksums: @@ -23,6 +23,6 @@ `b2sum --check --quiet {{path/to/file.b2}}` -- Only show a message for files for which verification fails, ignoring missing files: +- Only show a message when verification fails, ignoring missing files: `b2sum --ignore-missing --check --quiet {{path/to/file.b2}}` diff --git a/pages/common/b3sum.md b/pages/common/b3sum.md new file mode 100644 index 0000000000..79cea4fb92 --- /dev/null +++ b/pages/common/b3sum.md @@ -0,0 +1,24 @@ +# b3sum + +> Calculate BLAKE3 cryptographic checksums. +> More information: . + +- Calculate the BLAKE3 checksum for one or more files: + +`b3sum {{path/to/file1 path/to/file2 ...}}` + +- Calculate and save the list of BLAKE3 checksums to a file: + +`b3sum {{path/to/file1 path/to/file2 ...}} > {{path/to/file.b3}}` + +- Calculate a BLAKE3 checksum from `stdin`: + +`{{command}} | b3sum` + +- Read a file of BLAKE3 sums and filenames and verify all files have matching checksums: + +`b3sum --check {{path/to/file.b3}}` + +- Only show a message for missing files or when verification fails: + +`b3sum --check --quiet {{path/to/file.b3}}` diff --git a/pages/common/babeld.md b/pages/common/babeld.md new file mode 100644 index 0000000000..a80e772acd --- /dev/null +++ b/pages/common/babeld.md @@ -0,0 +1,24 @@ +# babeld + +> Routing daemon for Babel which uses firewall-style filters. +> More information: . + +- Start `babeld` with a specific configuration file: + +`babeld -c {{path/to/babeld.conf}}` + +- Start `babeld` with multiple configuration files (read in order): + +`babeld -c {{path/to/ports.conf}} -c {{path/to/filters.conf}} -c {{path/to/interfaces.conf}}` + +- Start `babeld` and daemonise afterwards: + +`babeld -D` + +- Start `babeld` and pass a configuration command: + +`babeld -C {{'redistribute metric 256'}}` + +- Start `babeld` and specify on which interfaces to operate: + +`babeld {{eth0}} {{eth1}} {{wlan0}}` diff --git a/pages/common/balena.md b/pages/common/balena.md index 786888b7a0..b9b3a0a154 100644 --- a/pages/common/balena.md +++ b/pages/common/balena.md @@ -1,6 +1,6 @@ # balena -> Interact with the balenaCloud, openBalena and the balena API from the command-line. +> Interact with the balenaCloud, openBalena and the balena API. > More information: . - Log in to the balenaCloud account: diff --git a/pages/common/base32.md b/pages/common/base32.md index 03e1387c09..561f9a3cb5 100644 --- a/pages/common/base32.md +++ b/pages/common/base32.md @@ -1,15 +1,15 @@ # base32 -> Encode or decode file or standard input to/from Base32, to standard output. +> Encode or decode file or `stdin` to/from Base32, to `stdout`. > More information: . - Encode a file: -`base32 {{filename}}` +`base32 {{path/to/file}}` - Decode a file: -`base32 --decode {{filename}}` +`base32 --decode {{path/to/file}}` - Encode from `stdin`: diff --git a/pages/common/base64.md b/pages/common/base64.md index 819b5a11d5..db38de9260 100644 --- a/pages/common/base64.md +++ b/pages/common/base64.md @@ -1,15 +1,15 @@ # base64 -> Encode or decode file or standard input to/from Base64, to standard output. +> Encode or decode file or `stdin` to/from Base64, to `stdout`. > More information: . - Encode the contents of a file as base64 and write the result to `stdout`: -`base64 {{filename}}` +`base64 {{path/to/file}}` - Decode the base64 contents of a file and write the result to `stdout`: -`base64 --decode {{filename}}` +`base64 --decode {{path/to/file}}` - Encode from `stdin`: diff --git a/pages/common/basenc.md b/pages/common/basenc.md new file mode 100644 index 0000000000..7c1f522823 --- /dev/null +++ b/pages/common/basenc.md @@ -0,0 +1,20 @@ +# basenc + +> Encode or decode file or `stdin` using a specified encoding, to `stdout`. +> More information: . + +- Encode a file with base64 encoding: + +`basenc --base64 {{path/to/file}}` + +- Decode a file with base64 encoding: + +`basenc --decode --base64 {{path/to/file}}` + +- Encode from `stdin` with base32 encoding with 42 columns: + +`{{command}} | basenc --base32 -w42` + +- Encode from `stdin` with base32 encoding: + +`{{command}} | basenc --base32` diff --git a/pages/common/bash.md b/pages/common/bash.md index 2eb1dbdf93..71ea7e7dfe 100644 --- a/pages/common/bash.md +++ b/pages/common/bash.md @@ -31,3 +31,7 @@ - Execute specific commands from `stdin`: `{{echo "echo 'bash is executed'"}} | bash` + +- Start a [r]estricted shell session: + +`bash -r` diff --git a/pages/common/bat.md b/pages/common/bat.md index 7c7a483e54..a906c125c0 100644 --- a/pages/common/bat.md +++ b/pages/common/bat.md @@ -4,7 +4,7 @@ > A `cat` clone with syntax highlighting and Git integration. > More information: . -- Print the contents of a file to the standard output: +- Print the contents of a file to `stdout`: `bat {{path/to/file}}` diff --git a/pages/common/batch.md b/pages/common/batch.md index b3a81f310d..254225b380 100644 --- a/pages/common/batch.md +++ b/pages/common/batch.md @@ -4,11 +4,11 @@ > Service atd (or atrun) should be running for the actual executions. > More information: . -- Execute commands from standard input (press `Ctrl + D` when done): +- Execute commands from `stdin` (press `Ctrl + D` when done): `batch` -- Execute a command from standard input: +- Execute a command from `stdin`: `echo "{{./make_db_backup.sh}}" | batch` diff --git a/pages/common/bb.md b/pages/common/bb.md index 70503326ab..84f4f5262a 100644 --- a/pages/common/bb.md +++ b/pages/common/bb.md @@ -11,10 +11,10 @@ `bb -f {{path/to/script.clj}}` -- Bind input to a sequence of lines from stdin: +- Bind input to a sequence of lines from `stdin`: `printf "first\nsecond" | bb -i "(map clojure.string/capitalize *input*)"` -- Bind input to a sequence of EDN(Extensible Data Notation) values from stdin: +- Bind input to a sequence of EDN(Extensible Data Notation) values from `stdin`: `echo "{:key 'val}" | bb -I "(:key (first *input*))"` diff --git a/pages/common/beanstalkd.md b/pages/common/beanstalkd.md index c120987822..2a4da04af5 100644 --- a/pages/common/beanstalkd.md +++ b/pages/common/beanstalkd.md @@ -3,11 +3,11 @@ > A simple and generic work-queue server. > More information: . -- Start beanstalkd, listening on port 11300: +- Start Beanstalk, listening on port 11300: `beanstalkd` -- Start beanstalkd listening on a custom port and address: +- Start Beanstalk listening on a custom port and address: `beanstalkd -l {{ip_address}} -p {{port_number}}` diff --git a/pages/common/betty.md b/pages/common/betty.md index f217539950..9cb5f22d88 100644 --- a/pages/common/betty.md +++ b/pages/common/betty.md @@ -7,13 +7,9 @@ `betty {{what time is it}}` -- Ask Betty version: - -`betty version` - - Download a file: -`betty download {{https://example.com/file.png}} to {{file.png}}` +`betty download {{https://example.com/file.ext}} to {{path/to/output_file.ext}}` - Compress a file or directory to one of the support archive formats: @@ -23,7 +19,7 @@ `betty {{unzip}} {{archive.tar.gz}}` -- Extract an archive into a directory: +- Extract an archive into a specific directory: `betty unarchive {{archive.tar.gz}} to {{path/to/directory}}` @@ -34,3 +30,7 @@ - Drive Betty to madness: `betty go crazy` + +- Display version: + +`betty version` diff --git a/pages/common/bgpgrep.md b/pages/common/bgpgrep.md new file mode 100644 index 0000000000..d6271066a1 --- /dev/null +++ b/pages/common/bgpgrep.md @@ -0,0 +1,29 @@ +# bgpgrep + +> Filter and print BGP data within MRT dumps. +> Can read files compressed with gzip, bzip2 and xz. +> More information: . + +- Output all routes: + +`bgpgrep {{master6.mrt}}` + +- Output all routes received from a specific peer, determined by the peer's AS number: + +`bgpgrep {{master4.mrt}} -peer {{64498}}` + +- Output all routes received from a specific peer, determined by the peer's IP address: + +`bgpgrep {{master4.mrt.bz2}} -peer {{2001:db8:dead:cafe:acd::19e}}` + +- Output all routes which have certain ASNs in their AS path: + +`bgpgrep {{master6.mrt.bz2}} -aspath '{{64498 64510}}'` + +- Output all routes that lead to a specific address: + +`bgpgrep {{master6.mrt.bz2}} -supernet '{{2001:db8:dead:cafe:aef::5}}'` + +- Output all routes that have communities from a specific AS: + +`bgpgrep {{master4.mrt}} -communities \( '{{64497}}:*' \)` diff --git a/pages/linux/binwalk.md b/pages/common/binwalk.md similarity index 100% rename from pages/linux/binwalk.md rename to pages/common/binwalk.md diff --git a/pages/common/bioradtopgm.md b/pages/common/bioradtopgm.md new file mode 100644 index 0000000000..a29dd71fce --- /dev/null +++ b/pages/common/bioradtopgm.md @@ -0,0 +1,16 @@ +# bioradtopgm + +> Convert a Biorad confocal file into a PGM file. +> More information: . + +- Read a Biorad confocal file and store the n'th image contained in it to as a PGM file: + +`bioradtopgm -{{n}} {{path/to/file.pic}} > {{path/to/file.pgm}}` + +- Read a Biorad confocal file and print the number of images it contains: + +`bioradtopgm {{path/to/file.pic}}` + +- Display version: + +`bioradtopgm -version` diff --git a/pages/common/bird.md b/pages/common/bird.md new file mode 100644 index 0000000000..61d97ee58d --- /dev/null +++ b/pages/common/bird.md @@ -0,0 +1,13 @@ +# bird + +> BIRD Internet Routing Daemon. +> Routing daemon with support for BGP, OSPF, Babel and others. +> More information: . + +- Start Bird with a specific configuration file: + +`bird -c {{path/to/bird.conf}}` + +- Start Bird as a specific user and group: + +`bird -u {{username}} -g {{group}}` diff --git a/pages/common/birdc.md b/pages/common/birdc.md new file mode 100644 index 0000000000..121f2373f7 --- /dev/null +++ b/pages/common/birdc.md @@ -0,0 +1,37 @@ +# birdc + +> Bird remote control. +> Command tool to retrieve information like routes from bird and perform configurations during runtime. +> More information: . + +- Open the remote control console: + +`birdc` + +- Reload the configuration without restarting Bird: + +`birdc configure` + +- Show the current status of Bird: + +`birdc show status` + +- Show all configured protocols: + +`birdc show protocols` + +- Show all details about a protocol: + +`birdc show protocols {{upstream1}} all` + +- Show all routes that contain a specific AS number: + +`birdc "show route where bgp_path ~ [{{4242120045}}]"` + +- Show all best routes: + +`birdc show route primary` + +- Show all details of all routes from a given prefix: + +`birdc show route for {{fd00:/8}} all` diff --git a/pages/common/bison.md b/pages/common/bison.md index e0e8798f5b..0616c9a785 100644 --- a/pages/common/bison.md +++ b/pages/common/bison.md @@ -7,7 +7,7 @@ `bison {{path/to/file.y}}` -- Compile in debug mode, which causes the resulting parser to write additional information to the standard output: +- Compile in debug mode, which causes the resulting parser to write additional information to `stdout`: `bison --debug {{path/to/file.y}}` diff --git a/pages/common/blender.md b/pages/common/blender.md index 496c59997d..0e27437f91 100644 --- a/pages/common/blender.md +++ b/pages/common/blender.md @@ -2,31 +2,31 @@ > Command-line interface to the Blender 3D computer graphics application. > Arguments are executed in the order they are given. -> More information: . +> More information: . - Render all frames of an animation in the background, without loading the UI (output is saved to `/tmp`): -`blender --background {{filename}}.blend --render-anim` +`blender --background {{path/to/file}}.blend --render-anim` - Render an animation using a specific image naming pattern, in a path relative (`//`) to the .blend file: -`blender --background {{filename}}.blend --render-output //{{render/frame_###.png}} --render-anim` +`blender --background {{path/to/file}}.blend --render-output //{{render/frame_###.png}} --render-anim` - Render the 10th frame of an animation as a single image, saved to an existing directory (absolute path): -`blender --background {{filename}}.blend --render-output {{/path/to/output_directory}} --render-frame {{10}}` +`blender --background {{path/to/file}}.blend --render-output {{/path/to/output_directory}} --render-frame {{10}}` - Render the second last frame in an animation as a JPEG image, saved to an existing directory (relative path): -`blender --background {{filename}}.blend --render-output //{{output_directory}} --render-frame {{JPEG}} --render-frame {{-2}}` +`blender --background {{path/to/file}}.blend --render-output //{{output_directory}} --render-frame {{JPEG}} --render-frame {{-2}}` - Render the animation of a specific scene, starting at frame 10 and ending at frame 500: -`blender --background {{filename}}.blend --scene {{scene_name}} --frame-start {{10}} -e {{500}} --render-anim` +`blender --background {{path/to/file}}.blend --scene {{scene_name}} --frame-start {{10}} -e {{500}} --render-anim` - Render an animation at a specific resolution, by passing a Python expression: -`blender --background {{filename}}.blend --python-expr '{{import bpy; bpy.data.scenes[0].render.resolution_percentage = 25}}' --render-anim` +`blender --background {{path/to/file}}.blend --python-expr '{{import bpy; bpy.data.scenes[0].render.resolution_percentage = 25}}' --render-anim` - Start an interactive Blender session in the terminal with a python console (do `import bpy` after starting): diff --git a/pages/common/bmptopnm.md b/pages/common/bmptopnm.md new file mode 100644 index 0000000000..2224cee801 --- /dev/null +++ b/pages/common/bmptopnm.md @@ -0,0 +1,16 @@ +# bmptopnm + +> Convert a BMP file into a PBM, PGM, or PNM image. +> More information: . + +- Generate the PBM, PGM, or PNM image as output, for Windows or OS/2 BMP file as input: + +`bmptopnm {{path/to/file.bmp}}` + +- Report contents of the BMP header to `stderr`: + +`bmptopnm -verbose {{path/to/file.bmp}}` + +- Display version: + +`bmptopnm -version` diff --git a/pages/common/bob.md b/pages/common/bob.md new file mode 100644 index 0000000000..ec461bfa52 --- /dev/null +++ b/pages/common/bob.md @@ -0,0 +1,24 @@ +# bob + +> Manage and switch between Neovim versions. +> More information: . + +- Install and switch to the specified version of Neovim: + +`bob use {{nightly|stable|latest|version_string|commit_hash}}` + +- List installed and currently used versions of Neovim: + +`bob list` + +- Uninstall the specified version of Neovim: + +`bob uninstall {{nightly|stable|latest|version_string|commit_hash}}` + +- Uninstall Neovim and erase any changes `bob` has made: + +`bob erase` + +- Roll back to a previous nightly version: + +`bob rollback` diff --git a/pages/common/boxes.md b/pages/common/boxes.md new file mode 100644 index 0000000000..acf38878c5 --- /dev/null +++ b/pages/common/boxes.md @@ -0,0 +1,24 @@ +# boxes + +> Draw, remove, and repair ASCII art boxes. +> More information: . + +- Draw a box around a string: + +`echo "{{string}}" | boxes` + +- Remove a box from a string: + +`echo "{{string}}" | boxes -r` + +- Draw a box with a specific design around a string: + +`echo "{{string}}" | boxes -d {{parchment}}` + +- Draw a box with a width of 10 and a height of 5: + +`echo "{{string}}" | boxes -s {{10}}x{{5}}` + +- Draw a box with centered text: + +`echo "{{string}}" | boxes -a c` diff --git a/pages/linux/bpytop.md b/pages/common/bpytop.md similarity index 66% rename from pages/linux/bpytop.md rename to pages/common/bpytop.md index 977d97b69b..68c5f89fb2 100644 --- a/pages/linux/bpytop.md +++ b/pages/common/bpytop.md @@ -1,9 +1,10 @@ # bpytop -> Display dynamic real-time information about running processes with graphs. Similar to `gtop` and `htop`. +> A resource monitor that shows information about the CPU, memory, disks, network and processes. +> A Python version of `bashtop`. > More information: . -- Start bpytop: +- Start `bpytop`: `bpytop` diff --git a/pages/common/brotli.md b/pages/common/brotli.md index 5bf4848481..84b26e3686 100644 --- a/pages/common/brotli.md +++ b/pages/common/brotli.md @@ -5,20 +5,20 @@ - Compress a file, creating a compressed version next to the file: -`brotli {{file.ext}}` +`brotli {{path/to/file}}` - Decompress a file, creating an uncompressed version next to the file: -`brotli -d {{file.ext}}.br` +`brotli -d {{path/to/file.br}}` - Compress a file specifying the output filename: -`brotli {{file.ext}} -o {{compressed_file.ext.br}}` +`brotli {{path/to/file}} -o {{path/to/compressed_output_file.br}}` - Decompress a Brotli file specifying the output filename: -`brotli -d {{compressed_file.ext.br}} -o {{file.ext}}` +`brotli -d {{path/to/compressed_file.br}} -o {{path/to/output_file}}` -- Specify the compression level. 1=Fastest (Worst), 11=Slowest (Best): +- Specify the compression level [1=Fastest (Worst), 11=Slowest (Best)]: -`brotli -q {{11}} {{file.ext}} -o {{compressed_file.ext.br}}` +`brotli -q {{11}} {{path/to/file}} -o {{path/to/compressed_output_file.br}}` diff --git a/pages/common/browser-sync.md b/pages/common/browser-sync.md index 2b45d057aa..66dc792af1 100644 --- a/pages/common/browser-sync.md +++ b/pages/common/browser-sync.md @@ -15,6 +15,6 @@ `browser-sync init` -- Start browser-sync from config file: +- Start Browsersync from config file: `browser-sync start --config {{config_file}}` diff --git a/pages/common/btop.md b/pages/common/btop.md new file mode 100644 index 0000000000..40f19c37ba --- /dev/null +++ b/pages/common/btop.md @@ -0,0 +1,13 @@ +# btop + +> A resource monitor that shows information about the CPU, memory, disks, network and processes. +> A C++ version of `bpytop`. +> More information: . + +- Start `btop`: + +`btop` + +- Start `btop` with the specified settings preset: + +`btop --preset {{0..9}}` diff --git a/pages/common/bun.md b/pages/common/bun.md new file mode 100644 index 0000000000..c8fb45746a --- /dev/null +++ b/pages/common/bun.md @@ -0,0 +1,37 @@ +# bun + +> JavaScript runtime and toolkit. +> Includes a bundler, a test runner, and a package manager. +> More information: . + +- Run a JavaScript file or a `package.json` script: + +`bun run {{path/to/file|script_name}}` + +- Run unit tests: + +`bun test` + +- Download and install all the packages listed as dependencies in `package.json`: + +`bun install` + +- Add a dependency to `package.json`: + +`bun add {{module_name}}` + +- Remove a dependency from `package.json`: + +`bun remove {{module_name}}` + +- Create a new Bun project in the current directory: + +`bun init` + +- Start a REPL (interactive shell): + +`bun repl` + +- Upgrade Bun to the latest version: + +`bun upgrade` diff --git a/pages/common/bw.md b/pages/common/bw.md index cab376d30a..d4c1f0213b 100644 --- a/pages/common/bw.md +++ b/pages/common/bw.md @@ -1,6 +1,6 @@ # bw -> A CLI to access and manage a Bitwarden vault. +> Access and manage a Bitwarden vault. > More information: . - Log in to a Bitwarden user account: diff --git a/pages/common/bzip2.md b/pages/common/bzip2.md index cd07a3c72d..605a51436a 100644 --- a/pages/common/bzip2.md +++ b/pages/common/bzip2.md @@ -1,7 +1,7 @@ # bzip2 > A block-sorting file compressor. -> More information: . +> More information: . - Compress a file: @@ -11,6 +11,22 @@ `bzip2 -d {{path/to/compressed_file.bz2}}` -- Decompress a file to standard output: +- Decompress a file to `stdout`: `bzip2 -dc {{path/to/compressed_file.bz2}}` + +- Test the integrity of each file inside the archive file: + +`bzip2 --test {{path/to/compressed_file.bz2}}` + +- Show the compression ratio for each file processed with detailed information: + +`bzip2 --verbose {{path/to/compressed_files.bz2}}` + +- Decompress a file overwriting existing files: + +`bzip2 --force {{path/to/compressed_file.bz2}}` + +- Display help: + +`bzip2 -h` diff --git a/pages/common/bzip3.md b/pages/common/bzip3.md new file mode 100644 index 0000000000..3768ca5201 --- /dev/null +++ b/pages/common/bzip3.md @@ -0,0 +1,32 @@ +# bzip3 + +> An efficient statistical file compressor. +> More information: . + +- Compress a file: + +`bzip3 {{path/to/file_to_compress}}` + +- Decompress a file: + +`bzip3 -d {{path/to/compressed_file.bz3}}` + +- Decompress a file to `stdout`: + +`bzip3 -dc {{path/to/compressed_file.bz3}}` + +- Test the integrity of each file inside the archive file: + +`bzip3 --test {{path/to/compressed_file.bz3}}` + +- Show the compression ratio for each file processed with detailed information: + +`bzip3 --verbose {{path/to/compressed_files.bz3}}` + +- Decompress a file overwriting existing files: + +`bzip3 --force {{path/to/compressed_file.bz3}}` + +- Display help: + +`bzip3 -h` diff --git a/pages/common/cabal.md b/pages/common/cabal.md index 8c018aea84..927a5d39ac 100644 --- a/pages/common/cabal.md +++ b/pages/common/cabal.md @@ -10,11 +10,11 @@ - Show information about a package: -`cabal info {{package_name}}` +`cabal info {{package}}` - Download and install a package: -`cabal install {{package_name}}` +`cabal install {{package}}` - Create a new Haskell project in the current directory: diff --git a/pages/common/cadaver.md b/pages/common/cadaver.md new file mode 100644 index 0000000000..62da170f7e --- /dev/null +++ b/pages/common/cadaver.md @@ -0,0 +1,16 @@ +# cadaver + +> WebDAV client for Unix. +> More information: . + +- Connect to the server , open the root collection: + +`cadaver {{http://dav.example.com/}}` + +- Connect to a server using a specific port and open the collection `/foo/bar/`: + +`cadaver {{http://dav.example.com:8022/foo/bar/}}` + +- Connect to a server using SSL: + +`cadaver {{https://davs.example.com/}}` diff --git a/pages/common/calibre-server.md b/pages/common/calibre-server.md index f0f0b94159..ec59a6bb60 100644 --- a/pages/common/calibre-server.md +++ b/pages/common/calibre-server.md @@ -4,11 +4,11 @@ > Note: e-books must already be imported into the library using the GUI or the `calibredb` CLI. > More information: . -- Start a server to distribute e-books. Access at http://localhost:8080: +- Start a server to distribute e-books. Access at : `calibre-server` -- Start server on different port. Access at http://localhost:port: +- Start server on different port. Access at : `calibre-server --port {{port}}` diff --git a/pages/common/carbon-now.md b/pages/common/carbon-now.md index 68e9a398e0..10e501065a 100644 --- a/pages/common/carbon-now.md +++ b/pages/common/carbon-now.md @@ -11,7 +11,7 @@ `carbon-now --from-clipboard` -- Create an image from standard input using default settings: +- Create an image from `stdin` using default settings: `{{input}} | carbon-now` diff --git a/pages/common/cargo-bench.md b/pages/common/cargo-bench.md new file mode 100644 index 0000000000..1540bc6352 --- /dev/null +++ b/pages/common/cargo-bench.md @@ -0,0 +1,36 @@ +# cargo bench + +> Compile and execute benchmarks. +> More information: . + +- Execute all benchmarks of a package: + +`cargo bench` + +- Compile, but don’t run benchmarks: + +`cargo bench --no-run` + +- Benchmark only the specified packages: + +`cargo bench --package {{package}}` + +- Benchmark the specified benchmark: + +`cargo bench --bench {{benchmark}}` + +- Benchmark with the given profile (default: `bench`): + +`cargo bench --profile {{profile}}` + +- Benchmark all example targets: + +`cargo bench --examples` + +- Benchmark all binary targets: + +`cargo bench --bins` + +- Benchmark the package’s library: + +`cargo bench --lib` diff --git a/pages/common/cargo-check.md b/pages/common/cargo-check.md new file mode 100644 index 0000000000..09d62b8932 --- /dev/null +++ b/pages/common/cargo-check.md @@ -0,0 +1,24 @@ +# cargo check + +> Check a local package and all of its dependencies for errors. +> More information: . + +- Check the current package: + +`cargo check` + +- Check all tests: + +`cargo check --tests` + +- Check the integration tests in `tests/integration_test1.rs`: + +`cargo check --test {{integration_test1}}` + +- Check the current package with the features `feature1` and `feature2`: + +`cargo check --features {{feature1,feature2}}` + +- Check the current package with default features disabled: + +`cargo check --no-default-features` diff --git a/pages/common/cargo-clean.md b/pages/common/cargo-clean.md new file mode 100644 index 0000000000..1500c39f16 --- /dev/null +++ b/pages/common/cargo-clean.md @@ -0,0 +1,20 @@ +# cargo clean + +> Remove generated artifacts in the `target` directory. +> More information: . + +- Remove the entire `target` directory: + +`cargo clean` + +- Remove documentation artifacts (the `target/doc` directory): + +`cargo clean --doc` + +- Remove release artifacts (the `target/release` directory): + +`cargo clean --release` + +- Remove artifacts in the directory of the given profile (in this case, `target/debug`): + +`cargo clean --profile {{dev}}` diff --git a/pages/common/cargo-fetch.md b/pages/common/cargo-fetch.md new file mode 100644 index 0000000000..c64a6065f1 --- /dev/null +++ b/pages/common/cargo-fetch.md @@ -0,0 +1,32 @@ +# cargo fetch + +> Fetch dependencies of a package from the network. +> More information: . + +- Fetch dependencies from the `Cargo.lock` file: + +`cargo fetch {{options}}` + +- Display verbose output: + +`cargo fetch --verbose` + +- Do not print Cargo log messages: + +`cargo fetch --quiet` + +- Control colored output: + +`cargo fetch --color {{auto|always|never}}` + +- Path to `Cargo.toml`: + +`cargo fetch --manifest-path {{path}}` + +- Prevent Cargo from accessing the network: + +`cargo fetch --offline` + +- Display help: + +`cargo fetch --help` diff --git a/pages/common/cargo-fix.md b/pages/common/cargo-fix.md new file mode 100644 index 0000000000..c1bf38f561 --- /dev/null +++ b/pages/common/cargo-fix.md @@ -0,0 +1,36 @@ +# cargo fix + +> Automatically fix lint warnings reported by `rustc`. +> More information: . + +- Fix code even if it already has compiler errors: + +`cargo fix --broken-code` + +- Fix code even if the working directory has changes: + +`cargo fix --allow-dirty` + +- Fix the package’s library: + +`cargo fix --lib` + +- Fix the specified integration test: + +`cargo fix --test {{name}}` + +- Fix all members in the workspace: + +`cargo fix --workspace` + +- Set the directory for all generated artifacts and intermediate files: + +`cargo fix --target-dir {{path/to/directory}}` + +- Restrict Cargo from access to network for any reason: + +`cargo fix --offline` + +- Run `n` jobs in parallel (default: number of logical CPUs): + +`cargo fix --jobs {{n}}` diff --git a/pages/common/cargo-fmt.md b/pages/common/cargo-fmt.md new file mode 100644 index 0000000000..478eb12689 --- /dev/null +++ b/pages/common/cargo-fmt.md @@ -0,0 +1,16 @@ +# cargo fmt + +> Run `rustfmt` on all source files in a Rust project. +> More information: . + +- Format all source files: + +`cargo fmt` + +- Check for formatting errors without writing to the files: + +`cargo fmt --check` + +- Pass arguments to each `rustfmt` call: + +`cargo fmt -- {{rustfmt_args}}` diff --git a/pages/common/cargo-generate-lockfile.md b/pages/common/cargo-generate-lockfile.md new file mode 100644 index 0000000000..7258a060fc --- /dev/null +++ b/pages/common/cargo-generate-lockfile.md @@ -0,0 +1,25 @@ +# cargo generate-lockfile + +> Generates the `Cargo.lock` file for the current package. +> If the lockfile already exists it will be rebuilt with latest version of every package. +> More information: . + +- Generate a `Cargo.lock` file with the latest version of every package: + +`cargo generate-lockfile` + +- Specify a custom path for the `Cargo.toml` file (Note: By default the file is present in the current directory): + +`cargo generate-lockfile --manifest-path {{path/to/file.toml}}` + +- Assert that the `Cargo.lock` file is up-to-date: + +`cargo generate-lockfile --locked` + +- Prevent Cargo from attempting to access the network to determine if it out-of-date: + +`cargo generate-lockfile --frozen` + +- Prevent Cargo from accessing the network. (Note: If Cargo requires internet to proceed and network is not available, it will stop with an error): + +`cargo generate-lockfile --offline` diff --git a/pages/common/cargo-help.md b/pages/common/cargo-help.md new file mode 100644 index 0000000000..43bb7872b1 --- /dev/null +++ b/pages/common/cargo-help.md @@ -0,0 +1,12 @@ +# cargo help + +> Display help on `cargo` and its subcommands. +> More information: . + +- Display general help: + +`cargo help` + +- Display help for a subcommand: + +`cargo help {{subcommand}}` diff --git a/pages/common/cargo-init.md b/pages/common/cargo-init.md new file mode 100644 index 0000000000..f5af6bb53f --- /dev/null +++ b/pages/common/cargo-init.md @@ -0,0 +1,25 @@ +# cargo init + +> Create a new Cargo package. +> Equivalent of `cargo new`, but specifiying a directory is optional. +> More information: . + +- Initialize a Rust project with a binary target in the current directory: + +`cargo init` + +- Initialize a Rust project with a binary target in the specified directory: + +`cargo init {{path/to/directory}}` + +- Initialize a Rust project with a library target in the current directory: + +`cargo init --lib` + +- Initialize a version control system repository in the project directory (default: `git`): + +`cargo init --vcs {{git|hg|pijul|fossil|none}}` + +- Set the package name (default: directory name): + +`cargo init --name {{name}}` diff --git a/pages/common/cargo-locate-project.md b/pages/common/cargo-locate-project.md new file mode 100644 index 0000000000..928a2aa319 --- /dev/null +++ b/pages/common/cargo-locate-project.md @@ -0,0 +1,21 @@ +# cargo locate-project + +> Print the full path to the `Cargo.toml` manifest of the current project. +> If the project is part of a workspace, the manifest of the project is shown, rather than that of the workspace. +> More information: . + +- Print the JSON object to `stdout` with full path to the `Cargo.toml` manifest: + +`cargo locate-project` + +- Print the project path in the specified format: + +`cargo locate-project --message-format {{plain|json}}` + +- Print the `Cargo.toml` manifest located at the given path: + +`cargo locate-project --manifest-path {{path/to/Cargo.toml}}` + +- Print the `Cargo.toml` manifest located at the root of the workspace as opposed to the current workspace member: + +`cargo locate-project --workspace` diff --git a/pages/common/cargo-logout.md b/pages/common/cargo-logout.md new file mode 100644 index 0000000000..f8c2ffd87b --- /dev/null +++ b/pages/common/cargo-logout.md @@ -0,0 +1,36 @@ +# cargo logout + +> Remove an API token from the registry locally. +> More information: . + +- Remove the API token from the local credential storage: + +`cargo logout` + +- Add the name of the registry to use: + +`cargo logout --registry {{registry}}` + +- Display verbose output: + +`cargo logout --verbose` + +- Do not print Cargo log message: + +`cargo logout --quiet` + +- Control when colored output is used: + +`cargo logout --color {{auto|always|never}}` + +- Override a Cargo configuration value: + +`cargo logout --config {{KEY=VALUE|PATH}}` + +- Change the current directory before executing any specified operation: + +`cargo logout -c {{PATH}}` + +- Display help: + +`cargo logout --help` diff --git a/pages/common/cargo-metadata.md b/pages/common/cargo-metadata.md new file mode 100644 index 0000000000..9899c7a238 --- /dev/null +++ b/pages/common/cargo-metadata.md @@ -0,0 +1,21 @@ +# cargo metadata + +> Outputs the workspace members and resolved dependencies of current package. +> Note: The output format is subject to change in future versions of Cargo. +> More information: . + +- Print the workspace members and resolved dependencies of the current package: + +`cargo metadata` + +- Print only the workspace members and do not fetch dependencies: + +`cargo metadata --no-deps` + +- Print metadata in a specific format based on the specified version: + +`cargo metadata --format-version {{version}}` + +- Print metadata with the `resolve` field including dependencies only for the given target triple (Note: the `packages` array will still include the dependencies for all targets): + +`cargo metadata --filter-platform {{target_triple}}` diff --git a/pages/common/cargo-new.md b/pages/common/cargo-new.md new file mode 100644 index 0000000000..e46ad0a04d --- /dev/null +++ b/pages/common/cargo-new.md @@ -0,0 +1,9 @@ +# cargo new + +> Create a new Cargo package. +> Equivalent of `cargo init`, but specifiying a directory is required. +> More information: . + +- Create a new Rust project with a binary target: + +`cargo new {{path/to/directory}}` diff --git a/pages/common/cargo-remove.md b/pages/common/cargo-remove.md new file mode 100644 index 0000000000..4a708a8206 --- /dev/null +++ b/pages/common/cargo-remove.md @@ -0,0 +1,36 @@ +# cargo remove + +> Remove dependencies from a `Cargo.toml` manifest file. +> More information: . + +- Remove one or more dependencies from the `Cargo.toml` manifest: + +`cargo remove {{dependency_name}}` + +- Remove a build dependency: + +`cargo remove --build {{dependency_name}}` + +- Remove a dependency to the given target platform: + +`cargo remove --target {{target}} {dependency_name}}` + +- Don't actually write to the manifest: + +`cargo remove --dry-run {{dependency_name}}` + +- Display verbose output: + +`cargo remove --verbose {{dependency_name}}` + +- Do not print Cargo log message: + +`cargo remove --quiet {{dependency_name}}` + +- Specify package to remove from: + +`cargo remove --package {{specification}} {dependency_name}}` + +- Display help: + +`cargo remove --help` diff --git a/pages/common/cargo-report.md b/pages/common/cargo-report.md new file mode 100644 index 0000000000..80f8dea2fe --- /dev/null +++ b/pages/common/cargo-report.md @@ -0,0 +1,16 @@ +# cargo report + +> Display various kinds of reports. +> More information: . + +- Display a report: + +`cargo report {{future-incompatibilities|...}}` + +- Display a report with the specified Cargo-generated id: + +`cargo report {{future-incompatibilities|...}} --id {{id}}` + +- Display a report for the specified package: + +`cargo report {{future-incompatibilities|...}} --package {{package}}` diff --git a/pages/common/cargo-run.md b/pages/common/cargo-run.md new file mode 100644 index 0000000000..e73f1c2e71 --- /dev/null +++ b/pages/common/cargo-run.md @@ -0,0 +1,33 @@ +# cargo run + +> Run the current Cargo package. +> Note: Set the working directory of the binary executed to the current working directory. +> More information: . + +- Run the default binary target: + +`cargo run` + +- Run the specified binary: + +`cargo run --bin {{name}}` + +- Run the specified example: + +`cargo run --example {{name}}` + +- Activate a space or comma separated list of features: + +`cargo run --features {{feature1 feature2 ...}}` + +- Disable the default feature: + +`cargo run --no-default-features` + +- Activate all available features: + +`cargo run --all-features` + +- Run with the given profile: + +`cargo run --profile {{name}}` diff --git a/pages/common/cargo-rustdoc.md b/pages/common/cargo-rustdoc.md new file mode 100644 index 0000000000..214e755eb2 --- /dev/null +++ b/pages/common/cargo-rustdoc.md @@ -0,0 +1,32 @@ +# cargo rustdoc + +> Generate documentation for the Rust package. +> More information: . + +- Open the documentation in the browser: + +`cargo rustdoc --open` + +- Specify the package to document: + +`cargo rustdoc --package {{spec}}` + +- Document the package's library: + +`cargo rustdoc --lib` + +- Document the specified binary: + +`cargo rustdoc --bin {{name}}` + +- Document the specified example: + +`cargo rustdoc --example {{name}}` + +- Document the specified integration test: + +`cargo rustdoc --test {{name}}` + +- Display help: + +`cargo rustdoc --help` diff --git a/pages/common/cargo-update.md b/pages/common/cargo-update.md new file mode 100644 index 0000000000..bac92afcae --- /dev/null +++ b/pages/common/cargo-update.md @@ -0,0 +1,20 @@ +# cargo update + +> Update dependencies as recorded in `Cargo.lock`. +> More information: . + +- Update dependencies in `Cargo.lock` to the latest possible version: + +`cargo update` + +- Display what would be updated, but don't actually write the lockfile: + +`cargo update --dry-run` + +- Update only the specified dependencies: + +`cargo update --package {{dependency1}} --package {{dependency2}} --package {{dependency3}}` + +- Set a specific dependency to a specific version: + +`cargo update --package {{dependency}} --precise {{1.2.3}}` diff --git a/pages/common/cargo-version.md b/pages/common/cargo-version.md new file mode 100644 index 0000000000..92afc9ce19 --- /dev/null +++ b/pages/common/cargo-version.md @@ -0,0 +1,12 @@ +# cargo version + +> Display `cargo` version information. +> More information: . + +- Display the version of `cargo`: + +`cargo version` + +- Display additional build information: + +`cargo version --verbose` diff --git a/pages/common/cargo.md b/pages/common/cargo.md index a997c1baf7..7038517542 100644 --- a/pages/common/cargo.md +++ b/pages/common/cargo.md @@ -1,37 +1,37 @@ # cargo > Manage Rust projects and their module dependencies (crates). -> Some subcommands such as `cargo build` have their own usage documentation. -> More information: . +> Some subcommands such as `build` have their own usage documentation. +> More information: . - Search for crates: `cargo search {{search_string}}` -- Install a crate: +- Install a binary crate: `cargo install {{crate_name}}` -- List installed crates: +- List installed binary crates: `cargo install --list` -- Create a new binary or library Rust project in the current directory: +- Create a new binary or library Rust project in the specified directory (or the current working directory by default): -`cargo init --{{bin|lib}}` +`cargo init --{{bin|lib}} {{path/to/directory}}` -- Create a new binary or library Rust project in the specified directory: +- Add a dependency to `Cargo.toml` in the current directory: -`cargo new {{path/to/directory}} --{{bin|lib}}` +`cargo add {{dependency}}` -- Build the Rust project in the current directory: +- Build the Rust project in the current directory using the release profile: -`cargo build` +`cargo build --release` -- Build the rust project in the current directory using the nightly compiler: +- Build the Rust project in the current directory using the nightly compiler (requires `rustup`): `cargo +nightly build` -- Build using a specific number of threads (default is the number of CPU cores): +- Build using a specific number of threads (default is the number of logical CPUs): `cargo build --jobs {{number_of_threads}}` diff --git a/pages/common/case.md b/pages/common/case.md index 7bf4fd64de..7a27af1caa 100644 --- a/pages/common/case.md +++ b/pages/common/case.md @@ -1,7 +1,7 @@ # case -> Branch based on the value of an expression. -> More information: . +> Bash builtin construct for creating multi-choice conditional statements. +> More information: . - Match a variable against string literals to decide which command to run: diff --git a/pages/common/cat.md b/pages/common/cat.md index 569684a3a5..e02f97d0c9 100644 --- a/pages/common/cat.md +++ b/pages/common/cat.md @@ -3,22 +3,22 @@ > Print and concatenate files. > More information: . -- Print the contents of a file to the standard output: +- Print the contents of a file to `stdout`: `cat {{path/to/file}}` - Concatenate several files into an output file: -`cat {{path/to/file1}} {{path/to/file2}} > {{path/to/output_file}}` +`cat {{path/to/file1 path/to/file2 ...}} > {{path/to/output_file}}` -- Append several files into an output file: +- Append several files to an output file: -`cat {{path/to/file1}} {{path/to/file2}} >> {{path/to/output_file}}` +`cat {{path/to/file1 path/to/file2 ...}} >> {{path/to/output_file}}` -- Number all output lines: +- Copy the contents of a file into an output file without buffering: -`cat -n {{path/to/file}}` +`cat -u {{/dev/tty12}} > {{/dev/tty13}}` -- Display non-printable and whitespace characters (with `M-` prefix if non-ASCII): +- Write `stdin` to a file: -`cat -v -t -e {{path/to/file}}` +`cat - > {{path/to/file}}` diff --git a/pages/common/cavif.md b/pages/common/cavif.md new file mode 100644 index 0000000000..d16b36c7f2 --- /dev/null +++ b/pages/common/cavif.md @@ -0,0 +1,20 @@ +# cavif + +> PNG/JPEG to AVIF converter. +> More information: . + +- Convert a JPEG file to AVIF: + +`cavif {{path/to/file.jpg}}` + +- Adjust the image quality (1-100) and convert a PNG file to AVIF: + +`cavif --quality {{60}} {{path/to/file.png}}` + +- Set the output location explicitly: + +`cavif {{path/to/file.jpg}} --output {{path/to/file.avif}}` + +- Overwrite the destination file if it already exists: + +`cavif --overwrite {{path/to/file.jpg}}` diff --git a/pages/common/cb.md b/pages/common/cb.md new file mode 100644 index 0000000000..f8b48e88e9 --- /dev/null +++ b/pages/common/cb.md @@ -0,0 +1,36 @@ +# cb + +> Cut, copy, and paste anything in the terminal. +> More information: . + +- Show all clipboards: + +`cb` + +- Copy a file to the clipboard: + +`cb copy {{path/to/file}}` + +- Copy some text to the clipboard: + +`cb copy "{{Some example text}}"` + +- Copy piped data to the clipboard: + +`echo "{{Some example text}}" | cb` + +- Paste clipboard content: + +`cb paste` + +- Pipe out clipboard content: + +`cb | cat` + +- Show clipboard history: + +`cb history` + +- Show clipboard information: + +`cb info` diff --git a/pages/common/charm.md b/pages/common/charm.md new file mode 100644 index 0000000000..9cc074fd00 --- /dev/null +++ b/pages/common/charm.md @@ -0,0 +1,32 @@ +# charm + +> Set of tools that makes adding a backend to your terminal-based applications, without worrying about user accounts, data storage and encryption. +> More information: . + +- Backup your Charm account keys: + +`charm backup-keys` + +- Backup Charm account keys to a specific location: + +`charm backup-keys -o {{path/to/output_file.tar}}` + +- Import previously backed up Charm account keys: + +`charm import-keys "{{charm-keys-backup.tar}}"` + +- Find where your `cloud.charm.sh` folder resides on your machine: + +`charm where` + +- Start your Charm server: + +`charm serve` + +- Print linked SSH keys: + +`charm keys` + +- Print your Charm ID: + +`charm id` diff --git a/pages/common/cheat.md b/pages/common/cheat.md index 20945022df..0c1320b90d 100644 --- a/pages/common/cheat.md +++ b/pages/common/cheat.md @@ -1,6 +1,6 @@ # cheat -> Create and view interactive cheat sheets on the command-line. +> Create and view interactive cheat sheets. > More information: . - Show example usage of a command: diff --git a/pages/common/checksec.md b/pages/common/checksec.md new file mode 100644 index 0000000000..c4ec98235b --- /dev/null +++ b/pages/common/checksec.md @@ -0,0 +1,20 @@ +# checksec + +> Check security properties of executables. +> More information: . + +- List security properties of an executable binary file: + +`checksec --file={{path/to/binary}}` + +- List security properties recursively of all executable files in a directory: + +`checksec --dir={{path/to/directory}}` + +- List security properties of a process: + +`checksec --proc={{pid}}` + +- List security properties of the running kernel: + +`checksec --kernel` diff --git a/pages/common/chroma.md b/pages/common/chroma.md index 30fab87adb..0d22f1ae66 100644 --- a/pages/common/chroma.md +++ b/pages/common/chroma.md @@ -1,16 +1,21 @@ # chroma -> Chroma is a general-purpose syntax highlighting library and corresponding command, for Go. +> A general-purpose syntax highlighter. +> The `--lexer` option is usually unnecessary, as it will be automatically determined based on the file extension. > More information: . -- Highlight a source file with python lexer and output to terminal: +- Highlight source code from a file with the Python lexer and output to `stdout`: -`chroma --lexer="{{python}}" {{source_file}}` +`chroma --lexer {{python}} {{path/to/source_file.py}}` -- Highlight a source file with the Go lexer and output to an HTML file: +- Highlight source code from a file with the Go lexer and output to an HTML file: -`chroma --lexer="{{go}}" --formatter="{{html}}" {{source_file}} > {{html_file}}` +`chroma --lexer {{go}} --formatter {{html}} {{path/to/source_file.go}} > {{path/to/target_file.html}}` -- Highlight a source file with the C++ lexer and output to an SVG, using the Monokai style: +- Highlight source code from `stdin` with the C++ lexer and output to an SVG file, using the Monokai style: -`chroma --lexer="{{c++}}" --formatter="{{svg}}" --syle="{{monokai}}" {{source_file}} > {{svg_file}}` +`{{command}} | chroma --lexer {{c++}} --formatter {{svg}} --style {{monokai}} > {{path/to/target_file.svg}}` + +- List available lexers, styles and formatters: + +`chroma --list` diff --git a/pages/common/chsh.md b/pages/common/chsh.md index d6fb26d141..36a6bc9a41 100644 --- a/pages/common/chsh.md +++ b/pages/common/chsh.md @@ -1,20 +1,20 @@ # chsh -> Change the user's login shell. +> Change user's login shell. > More information: . -- Change the current user's login shell interactively: +- Set a specific login shell for the current user interactively: `chsh` -- Change the login shell of the current user: +- Set a specific login [s]hell for the current user: `chsh -s {{path/to/shell}}` -- Change the login shell for a given user: +- Set a login [s]hell for a specific user: `chsh -s {{path/to/shell}} {{username}}` -- List available shells: +- [l]ist available shells: -`chsh --list-shells` +`chsh -l` diff --git a/pages/common/clamdscan.md b/pages/common/clamdscan.md index 74e8221dd0..c175b64b87 100644 --- a/pages/common/clamdscan.md +++ b/pages/common/clamdscan.md @@ -1,7 +1,7 @@ # clamdscan > A command-line virus scanner using the ClamAV Daemon. -> More information: . +> More information: . - Scan a file or directory for vulnerabilities: diff --git a/pages/common/clamscan.md b/pages/common/clamscan.md index d4e8f3fac4..469c966bb3 100644 --- a/pages/common/clamscan.md +++ b/pages/common/clamscan.md @@ -1,7 +1,7 @@ # clamscan > A command-line virus scanner. -> More information: . +> More information: . - Scan a file for vulnerabilities: diff --git a/pages/common/clash.md b/pages/common/clash.md new file mode 100644 index 0000000000..922c19c235 --- /dev/null +++ b/pages/common/clash.md @@ -0,0 +1,12 @@ +# clash + +> A rule-based tunnel in Go. +> More information: . + +- Specify a configuration [d]irectory: + +`clash -d {{path/to/directory}}` + +- Specify a configuration [f]ile: + +`clash -f {{path/to/configuration_file}}` diff --git a/pages/common/clido.md b/pages/common/clido.md new file mode 100644 index 0000000000..80451717d4 --- /dev/null +++ b/pages/common/clido.md @@ -0,0 +1,36 @@ +# clido + +> Save-state TODO app for the terminal. +> More information: . + +- Create a list: + +`clido --new {{name}}` + +- Load a list: + +`clido --load {{name}}` + +- Delete a list: + +`clido --remove {{name}}` + +- List all lists: + +`clido --lists` + +- Toggle autowrite: + +`clido toggle-autowrite` + +- Open a list in a text editor: + +`clido edit {{text_editor}}` + +- Display version: + +`clido -v` + +- Display help: + +`clido -h` diff --git a/pages/common/clifm.md b/pages/common/clifm.md index a8b779fa42..6ac8cc096c 100644 --- a/pages/common/clifm.md +++ b/pages/common/clifm.md @@ -1,6 +1,6 @@ # clifm -> The command line file manager. +> The command-line file manager. > More information: . - Start CliFM: diff --git a/pages/common/clip-view.md b/pages/common/clip-view.md new file mode 100644 index 0000000000..941c410877 --- /dev/null +++ b/pages/common/clip-view.md @@ -0,0 +1,33 @@ +# clip-view + +> Command Line Interface Pages render. +> Render for a TlDr-like project with much a more extensive syntax and several render modes. +> More information: . + +- Render specific local pages: + +`clip-view {{path/to/page1.clip path/to/page2.clip ...}}` + +- Render specific remote pages: + +`clip-view {{page_name1 page_name2 ...}}` + +- Render pages by a specific render: + +`clip-view --render {{tldr|tldr-colorful|docopt|docopt-colorful}} {{page_name1 page_name2 ...}}` + +- Render pages with a specific color theme: + +`clip-view --theme {{path/to/local_theme.yaml|remote_theme_name}} {{page_name1 page_name2 ...}}` + +- Clear a page or theme cache: + +`clip-view --clear-{{page|theme}}-cache` + +- Display help: + +`clip-view --help` + +- Display version: + +`clip-view --version` diff --git a/pages/common/clj.md b/pages/common/clj.md index 52103a192f..c6ac277a6f 100644 --- a/pages/common/clj.md +++ b/pages/common/clj.md @@ -16,7 +16,7 @@ `clj -M -m {{namespace}} {{args}}` -- Prepare a project by resolving dependencies, downloading libraries, and making / caching classpaths: +- Prepare a project by resolving dependencies, downloading libraries, and making/caching classpaths: `clj -P` diff --git a/pages/common/cmake.md b/pages/common/cmake.md index cd809d7967..2ca22f9e9b 100644 --- a/pages/common/cmake.md +++ b/pages/common/cmake.md @@ -11,6 +11,10 @@ `cmake {{path/to/project_directory}} -D {{CMAKE_BUILD_TYPE=Release}}` +- Generate a build recipe using `generator_name` as the underlying build system: + +`cmake -G {{generator_name}} {{path/to/project_directory}}` + - Use a generated recipe in a given directory to build artifacts: `cmake --build {{path/to/build_directory}}` @@ -26,3 +30,7 @@ - Run a custom build target: `cmake --build {{path/to/build_directory}} --target {{target_name}}` + +- Display help, obtain a list of generators: + +`cmake --help` diff --git a/pages/common/cmark.md b/pages/common/cmark.md index 239445c1b4..2fb2a1ca12 100644 --- a/pages/common/cmark.md +++ b/pages/common/cmark.md @@ -7,7 +7,7 @@ `cmark --to html {{filename.md}}` -- Convert data from standard input to LaTeX: +- Convert data from `stdin` to LaTeX: `cmark --to latex` diff --git a/pages/common/cmctl.md b/pages/common/cmctl.md index b65fc894d7..02ae387ef8 100644 --- a/pages/common/cmctl.md +++ b/pages/common/cmctl.md @@ -1,6 +1,6 @@ # cmctl -> A CLI tool that can help you to manage cert-manager resources inside your cluster. +> Manage cert-manager resources inside your cluster. > Check cert signing status, approve/deny requests, and issue new certificate requests. > More information: . diff --git a/pages/common/column.md b/pages/common/column.md index 220940e91b..110c6d9e45 100644 --- a/pages/common/column.md +++ b/pages/common/column.md @@ -1,6 +1,6 @@ # column -> Format standard input or a file into multiple columns. +> Format `stdin` or a file into multiple columns. > Columns are filled before rows; the default separator is a whitespace. > More information: . diff --git a/pages/common/compare.md b/pages/common/compare.md index c9367b0665..fad9b0580c 100644 --- a/pages/common/compare.md +++ b/pages/common/compare.md @@ -1,12 +1,13 @@ # compare -> View the difference between 2 images. +> Create a comparison image to visually annotate the difference between two images. +> Part of ImageMagick. > More information: . -- Compare 2 images: +- Compare two images: -`compare {{image1.png}} {{image2.png}} {{diff.png}}` +`compare {{path/to/image1.png}} {{path/to/image2.png}} {{path/to/diff.png}}` -- Compare 2 images using a custom metric: +- Compare two images using the specified metric: -`compare -verbose -metric {{PSNR}} {{image1.png}} {{image2.png}} {{diff.png}}` +`compare -verbose -metric {{PSNR}} {{path/to/image1.png}} {{path/to/image2.png}} {{path/to/diff.png}}` diff --git a/pages/common/composer-require-checker.md b/pages/common/composer-require-checker.md index 0a74701336..d0c5eeb6bc 100644 --- a/pages/common/composer-require-checker.md +++ b/pages/common/composer-require-checker.md @@ -1,6 +1,6 @@ # composer-require-checker -> A CLI tool to analyze Composer dependencies for soft dependencies. +> Analyze Composer dependencies for soft dependencies. > More information: . - Analyze a Composer JSON file: diff --git a/pages/common/composer.md b/pages/common/composer.md index 40850ffa12..dcb5578bbe 100644 --- a/pages/common/composer.md +++ b/pages/common/composer.md @@ -7,29 +7,29 @@ `composer init` -- Add a package as a dependency for this project, adding it to `composer.json`: +- Add a package as a dependency for this project, adding an entry to `composer.json`: -`composer require {{user/package_name}}` +`composer require {{user/package}}` - Install all the dependencies in this project's `composer.json` and create `composer.lock`: `composer install` -- Uninstall a package from this project, removing it as a dependency from `composer.json`: +- Uninstall a package from this project, removing it as a dependency from `composer.json` and `composer.lock`: -`composer remove {{user/package_name}}` +`composer remove {{user/package}}` -- Update all the dependencies in this project's `composer.json` and note versions in `composer.lock` file: +- Update all the dependencies in this project's `composer.json` and note new versions in `composer.lock` file: `composer update` -- Update composer lock only after updating `composer.json` manually: +- Update only `composer.lock` after updating `composer.json` manually: `composer update --lock` - Learn more about why a dependency can't be installed: -`composer why-not {{user/package_name}}` +`composer why-not {{user/package}}` - Update composer to its latest version: diff --git a/pages/common/conda-create.md b/pages/common/conda-create.md index 133531b3cb..229f1f5479 100644 --- a/pages/common/conda-create.md +++ b/pages/common/conda-create.md @@ -13,4 +13,4 @@ - Create a new environment with a specified name and install a given package: -`conda create --name {{env_name}} {{package_name}}` +`conda create --name {{env_name}} {{package}}` diff --git a/pages/common/conda-install.md b/pages/common/conda-install.md new file mode 100644 index 0000000000..ee30a037cc --- /dev/null +++ b/pages/common/conda-install.md @@ -0,0 +1,36 @@ +# conda install + +> Install packages into an existing conda environment. +> More information: . + +- Install a single package into the currently active conda environment: + +`conda install {{package}}` + +- Install a single package into the currently active conda environment using channel conda-forge: + +`conda install -c conda-forge {{package}}` + +- Install a single package into the currently active conda environment using channel conda-forge and ignoring other channels: + +`conda install -c conda-forge --override-channels {{package}}` + +- Install multiple packages: + +`conda install {{package1 package2 ...}}` + +- Install a specific version of a package: + +`conda install {{package}}={{version}}` + +- Install a package into a specific environment: + +`conda install --name {{environment}} {{package}}` + +- Update a package in the current environment: + +`conda install --upgrade {{package}}` + +- Install a package and agree to the transactions without prompting: + +`conda install --yes {{package}}` diff --git a/pages/common/conda.md b/pages/common/conda.md index 76afd8587c..59d0caae82 100644 --- a/pages/common/conda.md +++ b/pages/common/conda.md @@ -14,11 +14,11 @@ - Load an environment: -`conda {{activate environment_name}}` +`conda activate {{environment_name}}` - Unload an environment: -`conda {{deactivate}}` +`conda deactivate` - Delete an environment (remove all packages): diff --git a/pages/common/convert.md b/pages/common/convert.md index a1785d0a8d..6f36954fdb 100644 --- a/pages/common/convert.md +++ b/pages/common/convert.md @@ -1,36 +1,37 @@ # convert -> ImageMagick image conversion tool. +> Image conversion tool. +> Part of ImageMagick. > More information: . - Convert an image from JPG to PNG: -`convert {{image.jpg}} {{image.png}}` +`convert {{path/to/input_image.jpg}} {{path/to/output_image.png}}` -- Scale an image 50% its original size: +- Scale an image to 50% of its original size: -`convert {{image.png}} -resize 50% {{image2.png}}` +`convert {{path/to/input_image.png}} -resize 50% {{path/to/output_image.png}}` - Scale an image keeping the original aspect ratio to a maximum dimension of 640x480: -`convert {{image.png}} -resize 640x480 {{image2.png}}` +`convert {{path/to/input_image.png}} -resize 640x480 {{path/to/output_image.png}}` - Horizontally append images: -`convert {{image1.png}} {{image2.png}} {{image3.png}} +append {{image123.png}}` +`convert {{path/to/image1.png path/to/image2.png ...}} +append {{path/to/output_image.png}}` - Vertically append images: -`convert {{image1.png}} {{image2.png}} {{image3.png}} -append {{image123.png}}` +`convert {{path/to/image1.png path/to/image2.png ...}} -append {{path/to/output_image.png}}` - Create a GIF from a series of images with 100ms delay between them: -`convert {{image1.png}} {{image2.png}} {{image3.png}} -delay {{10}} {{animation.gif}}` +`convert {{path/to/image1.png path/to/image2.png ...}} -delay {{10}} {{path/to/animation.gif}}` -- Create an image with nothing but a solid background: +- Create an image with nothing but a solid red background: -`convert -size {{800x600}} "xc:{{#ff0000}}" {{image.png}}` +`convert -size {{800x600}} "xc:{{#ff0000}}" {{path/to/image.png}}` - Create a favicon from several images of different sizes: -`convert {{image1.png}} {{image2.png}} {{image3.png}} {{image.ico}}` +`convert {{path/to/image1.png path/to/image2.png ...}} {{path/to/favicon.ico}}` diff --git a/pages/common/coproc.md b/pages/common/coproc.md new file mode 100644 index 0000000000..5a0d8910aa --- /dev/null +++ b/pages/common/coproc.md @@ -0,0 +1,28 @@ +# coproc + +> Bash builtin for creating interactive asynchronous subshells. +> More information: . + +- Run a subshell asynchronously: + +`coproc { {{command1; command2; ...}}; }` + +- Create a coprocess with a specific name: + +`coproc {{name}} { {{command1; command2; ...}}; }` + +- Write to a specific coprocess `stdin`: + +`echo "{{input}}" >&"${{{name}}[1]}"` + +- Read from a specific coprocess `stdout`: + +`read {{variable}} <&"${{{name}}[0]}"` + +- Create a coprocess which repeatedly reads `stdin` and runs some commands on the input: + +`coproc {{name}} { while read line; do {{command1; command2; ...}}; done }` + +- Create and use a coprocess running `bc`: + +`coproc BC { bc --mathlib; }; echo "1/3" >&"${BC[1]}"; read output <&"${BC[0]}"; echo "$output"` diff --git a/pages/common/copyq.md b/pages/common/copyq.md index 8c81dbb589..c4f71229d3 100644 --- a/pages/common/copyq.md +++ b/pages/common/copyq.md @@ -1,7 +1,7 @@ # copyq > Clipboard manager with advanced features. -> More information: . +> More information: . - Launch CopyQ to store clipboard history: diff --git a/pages/common/cordova.md b/pages/common/cordova.md index d3267d7722..f83b0d63f2 100644 --- a/pages/common/cordova.md +++ b/pages/common/cordova.md @@ -5,7 +5,7 @@ - Create a Cordova project: -`cordova create {{path}} {{package_name}} {{project_name}}` +`cordova create {{path/to/directory}} {{package}} {{project_name}}` - Display the current workspace status: diff --git a/pages/common/cp.md b/pages/common/cp.md index 2fb17d1881..3698f2355f 100644 --- a/pages/common/cp.md +++ b/pages/common/cp.md @@ -19,6 +19,10 @@ `cp -vR {{path/to/source_directory}} {{path/to/target_directory}}` +- Copy multiple files at once to a directory: + +`cp -t {{path/to/destination_directory}} {{path/to/file1 path/to/file2 ...}}` + - Copy text files to another location, in interactive mode (prompts user before overwriting): `cp -i {{*.txt}} {{path/to/target_directory}}` @@ -26,3 +30,7 @@ - Follow symbolic links before copying: `cp -L {{link}} {{path/to/target_directory}}` + +- Use the first argument as the destination directory (useful for `xargs ... | cp -t `): + +`cp -t {{path/to/target_directory}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` diff --git a/pages/common/cpdf.md b/pages/common/cpdf.md index 5b94a7e957..5cc8b8ae10 100644 --- a/pages/common/cpdf.md +++ b/pages/common/cpdf.md @@ -1,6 +1,6 @@ # cpdf -> CLI to manipulate existing PDF files in a variety of ways. +> Manipulate PDF files. > More information: . - Select pages 1, 2, 3 and 6 from a source document and write those to a destination document: diff --git a/pages/common/cpio.md b/pages/common/cpio.md index 910cfdad5e..5e1967c5c1 100644 --- a/pages/common/cpio.md +++ b/pages/common/cpio.md @@ -4,7 +4,7 @@ > Supports the following archive formats: cpio's custom binary, old ASCII, new ASCII, crc, HPUX binary, HPUX old ASCII, old tar, and POSIX.1 tar. > More information: . -- Take a list of file names from standard input and add them [o]nto an archive in cpio's binary format: +- Take a list of file names from `stdin` and add them [o]nto an archive in cpio's binary format: `echo "{{file1}} {{file2}} {{file3}}" | cpio -o > {{archive.cpio}}` diff --git a/pages/common/cradle-elastic.md b/pages/common/cradle-elastic.md index a7b40141ea..4c9b7e980f 100644 --- a/pages/common/cradle-elastic.md +++ b/pages/common/cradle-elastic.md @@ -9,7 +9,7 @@ - Truncate the Elasticsearch index for a specific package: -`cradle elastic flush {{package_name}}` +`cradle elastic flush {{package}}` - Submit the Elasticsearch schema: @@ -17,7 +17,7 @@ - Submit the Elasticsearch schema for a specific package: -`cradle elastic map {{package_name}}` +`cradle elastic map {{package}}` - Populate the Elasticsearch indices for all packages: @@ -25,4 +25,4 @@ - Populate the Elasticsearch indices for a specific package: -`cradle elastic populate {{package_name}}` +`cradle elastic populate {{package}}` diff --git a/pages/common/cradle-sql.md b/pages/common/cradle-sql.md index d534d33193..726abbd98e 100644 --- a/pages/common/cradle-sql.md +++ b/pages/common/cradle-sql.md @@ -9,7 +9,7 @@ - Rebuild the database schema for a specific package: -`cradle sql build {{package_name}}` +`cradle sql build {{package}}` - Empty the entire database: @@ -17,7 +17,7 @@ - Empty the database tables for a specific package: -`cradle sql flush {{package_name}}` +`cradle sql flush {{package}}` - Populate the tables for all packages: @@ -25,4 +25,4 @@ - Populate the tables for a specific package: -`cradle sql populate {{package_name}}` +`cradle sql populate {{package}}` diff --git a/pages/common/crystal.md b/pages/common/crystal.md index 637a20a160..05446d02fd 100644 --- a/pages/common/crystal.md +++ b/pages/common/crystal.md @@ -11,6 +11,18 @@ `crystal build {{path/to/file.cr}}` +- Read Crystal source code from the command line or `stdin`, and execute it: + +`crystal eval '{{code}}'` + +- Generate API documentation from inline docstrings in Crystal files: + +`crystal docs` + +- Compile and run a Crystal specification suite: + +`crystal spec` + - Start a local interactive server for testing the language: `crystal play` diff --git a/pages/common/cs-complete-dep.md b/pages/common/cs-complete-dep.md new file mode 100644 index 0000000000..27a6235865 --- /dev/null +++ b/pages/common/cs-complete-dep.md @@ -0,0 +1,20 @@ +# cs complete dep + +> Search for libraries without doing it directly on the web. +> More information: . + +- Print which artifacts are published under a specific Maven group identifier: + +`cs complete-dep {{group_id}}` + +- List published library versions under a specific Maven group identifier and an artifact one: + +`cs complete-dep {{group_id}}:{{artifact_id}}` + +- Print which artifacts are pubblished under a given Maven groupId searching in the ivy2local: + +`cs complete-dep {{group_id}} --repository ivy2local` + +- List published artifacts under a Maven group identifier searching in a specific repository and credentials: + +`cs complete-dep {{group_id}}:{{artifact_id}} --repository {{repository_url}} --credentials {{user}}:{{password}}` diff --git a/pages/common/cs-fetch.md b/pages/common/cs-fetch.md new file mode 100644 index 0000000000..046b336aea --- /dev/null +++ b/pages/common/cs-fetch.md @@ -0,0 +1,28 @@ +# cs fetch + +> Fetch fetches the JARs of one or more dependencies. +> More information: . + +- Fetch a specific version of a jar: + +`cs fetch {{group_id}}:{{artifact_id}}:{{artifact_version}}` + +- Fetch a package and evaluate the classpath corresponding to the selected package in an env var: + +`CP="$(cs fetch --classpath org.scalameta::scalafmt-cli:latest.release)"` + +- Fetch a source of a specific jar: + +`cs fetch --sources {{group_id}}:{{artifact_id}}:{{artifact_version}}` + +- Fetch the javadoc jars: + +`cs fetch --javadoc {{group_id}}:{{artifact_id}}:{{artifact_version}}` + +- Fetch dependency with javadoc jars and source jars: + +`cs fetch --default={{true}} --sources --javadoc {{group_id}}:{{artifact_id}}:{{artifact_version}}` + +- Fetch jars coming from dependency files: + +`cs fetch {{--dependency-file path/to/file1 --dependency-file path/to/file2 ...}}` diff --git a/pages/common/cs-install.md b/pages/common/cs-install.md new file mode 100644 index 0000000000..cb696a13a6 --- /dev/null +++ b/pages/common/cs-install.md @@ -0,0 +1,36 @@ +# cs install + +> Install an application in the installation directory onfigured when installing `cs` (to enable the binary to be loaded add to your `.bash_profile` the `$ eval "$(cs install --env)"` command). +> More information: . + +- Install a specific application: + +`cs install {{application_name}}` + +- Install a specific version of an application: + +`cs install {{application_name}}:{{application_version}}` + +- Search an application by a specific name: + +`cs search {{application_partial_name}}` + +- Update a specific application if available: + +`cs update {{application_name}}` + +- Update all the installed applications: + +`cs update` + +- Uninstall a specific application: + +`cs uninstall {{application_name}}` + +- List all installed applications: + +`cs list` + +- Pass specific java options to an installed application: + +`{{application_name}} {{-Jjava_option_name1=value1 -Jjava_option_name2=value2 ...}}` diff --git a/pages/common/cs-java.md b/pages/common/cs-java.md new file mode 100644 index 0000000000..2baf08d0d8 --- /dev/null +++ b/pages/common/cs-java.md @@ -0,0 +1,32 @@ +# cs java + +> The java and java-home commands fetch and install JVMs. The java command runs them too. +> More information: . + +- Call the java version by using coursier: + +`cs java -version` + +- Call a specific java version with custom properties using coursier: + +`cs java --jvm {{jvm_name}}:{{jvm_version}} -Xmx32m -X{{another_jvm_opt}} -jar {{path/to/jar_name.jar}}` + +- List all the available JVM in the coursier default index: + +`cs java --available` + +- List all the installed JVM in the system with his own location: + +`cs java --installed` + +- Set the a specific JVM as one-off "default" for the shell instance: + +`cs java --jvm {{jvm_name}}:{{jvm_version}} --env` + +- Revert the changes for the default JVM settings: + +`eval "$(cs java --disable)"` + +- Set a specific JVM as default for the whole system: + +`cs java --jvm {{jvm_name}}:{{jvm_version}} --setup` diff --git a/pages/common/cs-launch.md b/pages/common/cs-launch.md new file mode 100644 index 0000000000..43f98315ca --- /dev/null +++ b/pages/common/cs-launch.md @@ -0,0 +1,20 @@ +# cs launch + +> Launch an application from the name directly from one or more Maven dependencies without the need of installing it. +> More information: . + +- Launch a specific application with arguments: + +`cs launch {{application_name}} -- {{argument1 argument2 ...}}` + +- Launch a specific application version with arguments: + +`cs launch {{application_name}}:{{application_version}} -- {{argument1 argument2 ...}}` + +- Launch a specific version of an application specifying which is the main file: + +`cs launch {{group_id}}:{{artifact_id}}:{{artifact_version}} --main-class {{path/to/main_class_file}}` + +- Launch an application with specific java options and a jvm memory ones: + +`cs launch --java-opt {{-Doption_name1:option_value1 -Doption_name2:option_value2 ...}} --java-opt {{-Xjvm_option1 -Xjvm_option2 ...}} {{application_name}}` diff --git a/pages/common/cs-resolve.md b/pages/common/cs-resolve.md new file mode 100644 index 0000000000..ecf85af3db --- /dev/null +++ b/pages/common/cs-resolve.md @@ -0,0 +1,28 @@ +# cs resolve + +> Resolve lists the transitive dependencies of one or more other dependencies. +> More information: . + +- Resolve lists of transitive dependencies of two dependencies: + +`cs resolve {{group_id1}}:{{artifact_id1}}:{{artifact_version1}} {{group_id2}}:{{artifact_id2}}:{{artifact_version2}}` + +- Resolve lists of transitive dependencies of a package by the dependency tree: + +`cs resolve --tree {{group_id}}:{{artifact_id}}:{{artifact_version}}` + +- Resolve dependency tree in a reverse order (from a dependency to its dependencies): + +`cs resolve --reverse-tree {{group_id}}:{{artifact_id}}:{{artifact_version}` + +- Print all the libraries that depends on a specific library: + +`cs resolve {{group_id}}:{{artifact_id}}:{{artifact_version}} --what-depends-on {{searched_group_id}}:{{searched_artifact_id}}` + +- Print all the libraries that depends on a specific library version: + +`cs resolve {{group_id}}:{{artifact_id}}:{{artifact_version}} --what-depends-on {{searched_group_id}}:{{searched_artifact_id}}{{searched_artifact_version}}` + +- Print eventual conflicts between a set of packages: + +`cs resolve --conflicts {{group_id1:artifact_id1:artifact_version1 group_id2:artifact_id2:artifact_version2 ...}}` diff --git a/pages/common/cs.md b/pages/common/cs.md new file mode 100644 index 0000000000..4ed89f27d0 --- /dev/null +++ b/pages/common/cs.md @@ -0,0 +1,29 @@ +# coursier + +> Application and artifact manager for the Scala language, it can install Scala applications and setup your Scala development environment. +> Some subcommands such as `install`, `launch`, `java`, `fetch`, `resolve`, `complete-dep`, etc. have their own usage documentation. +> More information: . + +- Display version: + +`cs version` + +- Show a list of the installed applications: + +`cs list` + +- Install a specific application: + +`cs install {{application_name}}` + +- Uninstall a specific application: + +`cs uninstall {{application_name}}` + +- Setup machine for the Scala development: + +`cs setup` + +- Update all the installed applications: + +`cs update` diff --git a/pages/common/csvkit.md b/pages/common/csvkit.md index 7217715c01..97c0ec31c7 100644 --- a/pages/common/csvkit.md +++ b/pages/common/csvkit.md @@ -1,21 +1,21 @@ # csvkit > Manipulation toolkit for CSV files. -> See the individual commands: `csvclean`, `csvcut`, `csvformat`, `csvgrep`, `csvlook`, `csvpy`, `csvsort`, `csvstat`. +> See also: `csvclean`, `csvcut`, `csvformat`, `csvgrep`, `csvlook`, `csvpy`, `csvsort`, `csvstat`. > More information: . - Run a command on a CSV file with a custom delimiter: -`{{cmd}} -d {{delimiter}} {{filename.csv}}` +`{{command}} -d {{delimiter}} {{path/to/file.csv}}` - Run a command on a CSV file with a tab as a delimiter (overrides -d): -`{{cmd}} -t {{filename.csv}}` +`{{command}} -t {{path/to/file.csv}}` - Run a command on a CSV file with a custom quote character: -`{{cmd}} -q {{quote_char}} {{filename.csv}}` +`{{command}} -q {{quote_char}} {{path/to/file.csv}}` - Run a command on a CSV file with no header row: -`{{cmd}} -H {{filename.csv}}` +`{{command}} -H {{path/to/file.csv}}` diff --git a/pages/common/ctags.md b/pages/common/ctags.md index 1174112aa7..425816f1bc 100644 --- a/pages/common/ctags.md +++ b/pages/common/ctags.md @@ -9,7 +9,7 @@ - Generate tags for all files in the current directory, and output them to a specific file, overwriting the file if it exists: -`ctags -f {{filename}} *` +`ctags -f {{path/to/file}} *` - Generate tags for all files in the current directory and all subdirectories: diff --git a/pages/common/curl.md b/pages/common/curl.md index 4a54a4c65d..d8587aa560 100644 --- a/pages/common/curl.md +++ b/pages/common/curl.md @@ -2,11 +2,11 @@ > Transfers data from or to a server. > Supports most protocols, including HTTP, FTP, and POP3. -> More information: . +> More information: . - Download the contents of a URL to a file: -`curl {{http://example.com}} --output {{filename}}` +`curl {{http://example.com}} --output {{path/to/file}}` - Download a file, saving the output under the filename indicated by the URL: diff --git a/pages/common/czkawka-cli.md b/pages/common/czkawka-cli.md new file mode 100644 index 0000000000..57d337e964 --- /dev/null +++ b/pages/common/czkawka-cli.md @@ -0,0 +1,12 @@ +# czkawka-cli + +> Command-line version of `czkawka` a multi-functional app to find duplicates, empty folders, similar images and much more. +> More information: . + +- List duplicate or similar files in specific directories: + +`czkawka-cli {{dup|image}} --directories {{path/to/directory1 path/to/directory2 ...}}` + +- Find duplicate files in specific directories and delete them (default: `NONE`): + +`czkawka-cli dup --directories {{path/to/directory1 path/to/directory2 ...}} --delete-method {{AEN|AEO|ON|OO|HARD|NONE}}` diff --git a/pages/common/datashader_cli.md b/pages/common/datashader_cli.md new file mode 100644 index 0000000000..aaa204638b --- /dev/null +++ b/pages/common/datashader_cli.md @@ -0,0 +1,16 @@ +# datashader_cli + +> Quick visualization of large datasets using CLI based on datashader. +> More information: . + +- Create a shaded scatter plot of points and save it to a png file and set the background color: + +`datashader_cli points {{path/to/input.parquet}} --x {{pickup_x}} --y {{pickup_y}} {{path/to/output.png}} --background {{black|white|#rrggbb}}` + +- Visualize the geospatial data (supports Geoparquet, shapefile, geojson, geopackage, etc.): + +`datashader_cli points {{path/to/input_data.geo.parquet}} {{path/to/output_data.png}} --geo true` + +- Use matplotlib to render the image: + +`datashader_cli points {{path/to/input_data.geo.parquet}} {{path/to/output_data.png}} --geo {{true}} --matplotlib true` diff --git a/pages/common/dd.md b/pages/common/dd.md index 99e084efc7..1bad418088 100644 --- a/pages/common/dd.md +++ b/pages/common/dd.md @@ -3,30 +3,26 @@ > Convert and copy a file. > More information: . -- Make a bootable USB drive from an isohybrid file (such like `archlinux-xxx.iso`) and show the progress: +- Make a bootable USB drive from an isohybrid file (such like `archlinux-xxx.iso`): -`dd if={{file.iso}} of=/dev/{{usb_drive}} status=progress` +`dd if={{path/to/file.iso}} of=/dev/{{usb_drive}}` -- Clone a drive to another drive with 4 MiB block, ignore error and show progress: +- Clone a drive to another drive with 4 MiB block and ignore error: -`dd if=/dev/{{source_drive}} of=/dev/{{dest_drive}} bs=4M conv=noerror status=progress` +`dd if=/dev/{{source_drive}} of=/dev/{{dest_drive}} bs={{4194304}} conv={{noerror}}` - Generate a file of 100 random bytes by using kernel random driver: -`dd if=/dev/urandom of={{random_file}} bs=100 count=1` +`dd if=/dev/urandom of={{path/to/random_file}} bs={{100}} count={{1}}` - Benchmark the write performance of a disk: -`dd if=/dev/zero of={{file_1GB}} bs=1024 count=1000000` +`dd if=/dev/zero of={{path/to/file_1GB}} bs={{1024}} count={{1000000}}` -- Generate a system backup into an IMG file and show the progress: +- Generate a system backup into an IMG file: -`dd if=/dev/{{drive_device}} of={{path/to/file.img}} status=progress` +`dd if={{/dev/drive_device}} of={{path/to/file.img}}` -- Restore a drive from an IMG file and show the progress: +- Restore a drive from an IMG file: -`dd if={{path/to/file.img}} of=/dev/{{drive_device}} status=progress` - -- Check progress of an ongoing dd operation (Run this command from another shell): - -`kill -USR1 $(pgrep ^dd)` +`dd if={{path/to/file.img}} of={{/dev/drive_device}}` diff --git a/pages/common/ddgr.md b/pages/common/ddgr.md new file mode 100644 index 0000000000..f3fcdb7cc2 --- /dev/null +++ b/pages/common/ddgr.md @@ -0,0 +1,36 @@ +# ddgr + +> Search DuckDuckGo (HTML version) from the terminal. +> More information: . + +- Start in interactive mode: + +`ddgr` + +- Search DuckDuckGo for a keyword: + +`ddgr {{keyword}}` + +- Limit the number of search results to `N`: + +`ddgr -n {{N}} {{keyword}}` + +- Display the complete URL in search results: + +`ddgr -x {{keyword}}` + +- Search DuckDuckGo for a keyword and open the first result in the browser: + +`ddgr !w {{keyword}}` + +- Perform a website-specific search: + +`ddgr -w {{site}} {{keyword}}` + +- Search for a specific file type: + +`ddgr {{keyword}} filetype:{{filetype}}` + +- Display help in interactive mode: + +`?` diff --git a/pages/common/deemix.md b/pages/common/deemix.md index 3153c5bb09..7943db1ff7 100644 --- a/pages/common/deemix.md +++ b/pages/common/deemix.md @@ -8,7 +8,7 @@ `deemix {{https://www.deezer.com/us/track/00000000}}` -- Download track / playlist at a specific bitrate: +- Download track/playlist at a specific bitrate: `deemix --bitrate {{FLAC|MP3}} {{url}}` diff --git a/pages/common/dep.md b/pages/common/dep.md index e272f1364a..389efca4a8 100644 --- a/pages/common/dep.md +++ b/pages/common/dep.md @@ -1,6 +1,6 @@ # dep -> A CLI tool for deployment of PHP applications. +> Deploy PHP applications. > Note: The Go command `dep` with the same name is deprecated and archived. > More information: . diff --git a/pages/common/devcontainer.md b/pages/common/devcontainer.md new file mode 100644 index 0000000000..9ae5ad1253 --- /dev/null +++ b/pages/common/devcontainer.md @@ -0,0 +1,28 @@ +# devcontainer + +> Use a Docker container as a development environment. +> More information: . + +- Create and run a Dev Container: + +`devcontainer up` + +- Apply a Dev Container Template to a workspace: + +`devcontainer templates apply --template-id {{template_id}} --template-args {{template_args}} --workspace-folder {{path/to/workspace}}` + +- Execute a command on a running Dev Container in the current workspace: + +`devcontainer exec {{command}}` + +- Build a Dev Container image from `devcontainer.json`: + +`devcontainer build {{path/to/workspace}}` + +- Open a Dev Container in VS Code (the path is optional): + +`devcontainer open {{path/to/workspace}}` + +- Read and print the configuration of a Dev Container from `devcontainer.json`: + +`devcontainer read-configuration` diff --git a/pages/common/dhcpig.md b/pages/common/dhcpig.md new file mode 100644 index 0000000000..e35726361a --- /dev/null +++ b/pages/common/dhcpig.md @@ -0,0 +1,33 @@ +# dhcpig + +> Initiates an advanced DHCP exhaustion attack and stress test. +> DHCPig needs to be run with root privileges. +> More information: . + +- Exhaust all of the available DHCP addresses using the specified interface: + +`sudo ./pig.py {{eth0}}` + +- Exhaust IPv6 addresses using eth1 interface: + +`sudo ./pig.py -6 {{eth1}}` + +- Send fuzzed/malformed data packets using the interface: + +`sudo ./pig.py --fuzz {{eth1}}` + +- Enable color output: + +`sudo ./pig.py -c {{eth1}}` + +- Enable minimal verbosity and color output: + +`sudo ./pig.py -c --verbosity=1 {{eth1}}` + +- Set debug verbosity and scan network of neighboring devices using ARP packets: + +`sudo ./pig.py -c --verbosity=100 --neighbors-scan-arp {{eth1}}` + +- Enable printing lease information, attempt to scan and release all neighbor IP addresses: + +`sudo ./pig.py --neighbors-scan-arp -r --show-options {{eth1}}` diff --git a/pages/common/diskonaut.md b/pages/common/diskonaut.md index 26827bd953..abb6524f70 100644 --- a/pages/common/diskonaut.md +++ b/pages/common/diskonaut.md @@ -3,11 +3,11 @@ > Terminal disk space navigator, written in Rust. > More information: . -- Start diskonaut in the current directory: +- Start `diskonaut` in the current directory: `diskonaut` -- Start diskonaut in a specific directory: +- Start `diskonaut` in a specific directory: `diskonaut {{path/to/directory}}` diff --git a/pages/common/docker-compose.md b/pages/common/docker-compose.md index e45c738b45..b82f73def7 100644 --- a/pages/common/docker-compose.md +++ b/pages/common/docker-compose.md @@ -9,15 +9,15 @@ - Create and start all containers in the background using a `docker-compose.yml` file from the current directory: -`docker compose up -d` +`docker compose up --detach` - Start all containers, rebuild if necessary: `docker compose up --build` -- Start all containers using an alternate compose file: +- Start all containers by specifying a project name and using an alternate compose file: -`docker compose --file {{path/to/file}} up` +`docker compose -p {{project_name}} --file {{path/to/file}} up` - Stop all running containers: diff --git a/pages/common/docker-container-diff.md b/pages/common/docker-container-diff.md new file mode 100644 index 0000000000..2a642cfa71 --- /dev/null +++ b/pages/common/docker-container-diff.md @@ -0,0 +1,8 @@ +# docker container diff + +> This command is an alias of `docker diff`. +> More information: . + +- View documentation for the original command: + +`tldr docker diff` diff --git a/pages/common/docker-container-remove.md b/pages/common/docker-container-remove.md new file mode 100644 index 0000000000..c7b78345ba --- /dev/null +++ b/pages/common/docker-container-remove.md @@ -0,0 +1,8 @@ +# docker container remove + +> This command is an alias of `docker rm`. +> More information: . + +- View documentation for the original command: + +`tldr docker rm` diff --git a/pages/common/docker-container-rename.md b/pages/common/docker-container-rename.md new file mode 100644 index 0000000000..2b886a59e5 --- /dev/null +++ b/pages/common/docker-container-rename.md @@ -0,0 +1,8 @@ +# docker container rename + +> This command is an alias of `docker rename`. +> More information: . + +- View documentation for the original command: + +`tldr docker rename` diff --git a/pages/common/docker-container-rm.md b/pages/common/docker-container-rm.md new file mode 100644 index 0000000000..586c7c8c8f --- /dev/null +++ b/pages/common/docker-container-rm.md @@ -0,0 +1,8 @@ +# docker container rm + +> This command is an alias of `docker rm`. +> More information: . + +- View documentation for the original command: + +`tldr docker rm` diff --git a/pages/common/docker-container-top.md b/pages/common/docker-container-top.md new file mode 100644 index 0000000000..089461d006 --- /dev/null +++ b/pages/common/docker-container-top.md @@ -0,0 +1,8 @@ +# docker container top + +> This command is an alias of `docker top`. +> More information: . + +- View documentation for the original command: + +`tldr docker top` diff --git a/pages/common/docker-diff.md b/pages/common/docker-diff.md new file mode 100644 index 0000000000..bf6c2d4450 --- /dev/null +++ b/pages/common/docker-diff.md @@ -0,0 +1,12 @@ +# docker diff + +> Inspect changes to files or directories on a container's filesystem. +> More information: . + +- Inspect the changes to a container since it was created: + +`docker diff {{container}}` + +- Display help: + +`docker diff --help` diff --git a/pages/common/docker-images.md b/pages/common/docker-images.md index 1d9046ccc9..5f43abc6df 100644 --- a/pages/common/docker-images.md +++ b/pages/common/docker-images.md @@ -22,3 +22,7 @@ - List images that contain a substring in their name: `docker images "{{*name*}}"` + +- Sort images by size: + +`docker images --format "{{.ID}}\t{{.Size}}\t{{.Repository}}:{{.Tag}}" | sort -k 2 -h` diff --git a/pages/common/docker-pull.md b/pages/common/docker-pull.md new file mode 100644 index 0000000000..b848912c2d --- /dev/null +++ b/pages/common/docker-pull.md @@ -0,0 +1,24 @@ +# docker pull + +> Download Docker images from a registry. +> More information: . + +- Download a specific Docker image: + +`docker pull {{image}}:{{tag}}` + +- Download a specific Docker image in quiet mode: + +`docker pull --quiet {{image}}:{{tag}}` + +- Download all tags of a specific Docker image: + +`docker pull --all-tags {{image}}` + +- Download a Docker images for a specific platform, e.g. linux/amd64: + +`docker pull --platform {{linux/amd64}} {{image}}:{{tag}}` + +- Display help: + +`docker pull --help` diff --git a/pages/common/docker-rename.md b/pages/common/docker-rename.md new file mode 100644 index 0000000000..b7332f894e --- /dev/null +++ b/pages/common/docker-rename.md @@ -0,0 +1,12 @@ +# docker rename + +> Rename a container. +> More information: . + +- Rename a container: + +`docker rename {{container}} {{new_name}}` + +- Display help: + +`docker rename --help` diff --git a/pages/common/docker-rm.md b/pages/common/docker-rm.md new file mode 100644 index 0000000000..cbbbb0dccb --- /dev/null +++ b/pages/common/docker-rm.md @@ -0,0 +1,20 @@ +# docker rm + +> Remove one or more containers. +> More information: . + +- Remove containers: + +`docker rm {{container1 container2 ...}}` + +- Force remove a container: + +`docker rm --force {{container1 container2 ...}}` + +- Remove a container and its volumes: + +`docker rm --volumes {{container}}` + +- Display help: + +`docker rm` diff --git a/pages/common/docker-start.md b/pages/common/docker-start.md index 73e177299d..d0f2026e0e 100644 --- a/pages/common/docker-start.md +++ b/pages/common/docker-start.md @@ -17,4 +17,4 @@ - Start one or more space-separated containers: -`docker start {{container(s)}}` +`docker start {{container1 container2 ...}}` diff --git a/pages/common/docker-tag.md b/pages/common/docker-tag.md new file mode 100644 index 0000000000..7ffe68d737 --- /dev/null +++ b/pages/common/docker-tag.md @@ -0,0 +1,16 @@ +# docker tag + +> Assign tags to existing Docker images. +> More information: . + +- Assign a name and tag to a specific image ID: + +`docker tag {{id}} {{name}}:{{tag}}` + +- Assign a tag to a specific image: + +`docker tag {{image}}:{{current_tag}} {{image}}:{{new_tag}}` + +- Display help: + +`docker tag` diff --git a/pages/common/docker-top.md b/pages/common/docker-top.md new file mode 100644 index 0000000000..8207c858f8 --- /dev/null +++ b/pages/common/docker-top.md @@ -0,0 +1,12 @@ +# docker top + +> Display the running processes of a container. +> More information: . + +- Display the running processes of a container: + +`docker top {{container}}` + +- Display help: + +`docker top --help` diff --git a/pages/common/docker-update.md b/pages/common/docker-update.md new file mode 100644 index 0000000000..a7170525bc --- /dev/null +++ b/pages/common/docker-update.md @@ -0,0 +1,29 @@ +# docker update + +> Update configuration of Docker containers. +> This command is not supported for Windows containers. +> More information: . + +- Update restart policy to apply when a specific container exits: + +`docker update --restart={{always|no|on-failure|unless-stopped}} {{container_name}}` + +- Update the policy to restart up to three times a specific container when it exits with non-zero exit status: + +`docker update --restart=on-failure:3 {{container_name}}` + +- Update the number of CPUs available to a specific container: + +`docker update --cpus {{count}} {{container_name}}` + +- Update the memory limit in [M]egabytes for a specific container: + +`docker update --memory {{limit}}M {{container_name}}` + +- Update the maximum number of process IDs allowed inside a specific container (use `-1` for unlimited): + +`docker update --pids-limit {{count}} {{container_name}}` + +- Update the amount of memory in [M]egabytes a specific container can swap to disk (use `-1` for unlimited): + +`docker update --memory-swap {{limit}}M {{container_name}}` diff --git a/pages/common/doctl-databases-db.md b/pages/common/doctl-databases-db.md new file mode 100644 index 0000000000..c0332654e4 --- /dev/null +++ b/pages/common/doctl-databases-db.md @@ -0,0 +1,24 @@ +# doctl databases db + +> Manage specific databases that are served by a database cluster. +> More information: . + +- Run a `doctl databases db` command with an access token: + +`doctl databases db {{command}} --access-token {{access_token}}` + +- Retrieve the name of the given database hosted in the given database cluster: + +`doctl databases db get {{database_id}} {{database_name}}` + +- List existing databases hosted within a given database cluster: + +`doctl databases db list {{database_id}}` + +- Create a database with the given name in the given database cluster: + +`doctl databases db create {{database_id}} {{database_name}}` + +- Delete the database with the given name in the given database cluster: + +`doctl databases db delete {{database_id}} {{database_name}}` diff --git a/pages/common/doctl-databases-firewalls.md b/pages/common/doctl-databases-firewalls.md new file mode 100644 index 0000000000..f13aef7830 --- /dev/null +++ b/pages/common/doctl-databases-firewalls.md @@ -0,0 +1,20 @@ +# doctl databases firewalls + +> Manage firewalls for database clusters. +> More information: . + +- Run a `doctl databases firewalls` command with an access token: + +`doctl databases firewalls {{command}} --access-token {{access_token}}` + +- Retrieve a list of firewall rules for a given database: + +`doctl databases firewalls list` + +- Add a database firewall rule to a given database: + +`doctl databases firewalls append {{database_id}} --rule {{droplet|k8s|ip_addr|tag|app}}:{{value}}` + +- Remove a firewall rule for a given database: + +`doctl databases firewalls remove {{database_id}} {{rule_uuid}}` diff --git a/pages/common/doctl-databases-maintenance-window.md b/pages/common/doctl-databases-maintenance-window.md new file mode 100644 index 0000000000..1fd1d9829e --- /dev/null +++ b/pages/common/doctl-databases-maintenance-window.md @@ -0,0 +1,16 @@ +# doctl databases maintenance-window + +> Schedule, and check the schedule of, maintenance windows for your databases. +> More information: . + +- Run a `doctl databases maintenance-window` command with an access token: + +`doctl databases maintenance-window {{command}} --access-token {{access_token}}` + +- Retrieve details about a database cluster's maintenance windows: + +`doctl databases maintenance-window get {{database_id}}` + +- Update the maintenance window for a database cluster: + +`doctl databases maintenance-window update {{database_id}} --day {{day_of_the_week}} --hour {{hour_in_24_hours_format}}` diff --git a/pages/common/doctl-databases-options.md b/pages/common/doctl-databases-options.md new file mode 100644 index 0000000000..4873f4f99b --- /dev/null +++ b/pages/common/doctl-databases-options.md @@ -0,0 +1,24 @@ +# doctl databases options + +> Enable the navigation of available options under each database engine. +> More information: . + +- Run a `doctl databases options` command with an access token: + +`doctl databases options {{command}} --access-token {{access_token}}` + +- Retrieve a list of the available database engines: + +`doctl databases options engines` + +- Retrieve a list of the available regions for a given database engine: + +`doctl databases options regions --engine {{pg|mysql|redis|mongodb}}` + +- Retrieve a list of the available slugs for a given database engine: + +`doctl databases options slugs --engine {{pg|mysql|redis|mongodb}}` + +- Retrieve a list of the available versions for a given database engine: + +`doctl databases options versions --engine {{pg|mysql|redis|mongodb}}` diff --git a/pages/common/doctl-databases-pool.md b/pages/common/doctl-databases-pool.md new file mode 100644 index 0000000000..232b8eb9d3 --- /dev/null +++ b/pages/common/doctl-databases-pool.md @@ -0,0 +1,24 @@ +# doctl databases pool + +> Manage connection pools for your database cluster. +> More information: . + +- Run a `doctl databases pool` command with an access token: + +`doctl databases pool {{command}} --access-token {{access_token}}` + +- Retrieve information about a database connection pool: + +`doctl databases pool get {{database_id}} {{pool_name}}` + +- List connection pools for a database cluster: + +`doctl databases pool list {{database_id}}` + +- Create a connection pool for a database: + +`doctl databases pool create {{database_id}} {{pool_name}} --db {{new_pool_name}} --size {{pool_size}}` + +- Delete a connection pool for a database: + +`doctl databases pool create {{database_id}} {{pool_name}}` diff --git a/pages/common/doctl-databases-replica.md b/pages/common/doctl-databases-replica.md new file mode 100644 index 0000000000..b5e927f6e2 --- /dev/null +++ b/pages/common/doctl-databases-replica.md @@ -0,0 +1,24 @@ +# doctl databases replica + +> Manage read-only replicas associated with a database cluster. +> More information: . + +- Run a `doctl databases replica` command with an access token: + +`doctl databases pool {{command}} --access-token {{access_token}}` + +- Retrieve information about a read-only database replica: + +`doctl databases replica get {{database_id}} {{replica_name}}` + +- Retrieve list of read-only database replicas: + +`doctl databases replica list {{database_id}}` + +- Create a read-only database replica: + +`doctl databases replica create {{database_id}} {{replica_name}}` + +- Delete a read-only database replica: + +`doctl databases replica delete {{database_id}} {{replica_name}}` diff --git a/pages/common/doctl-databases-sql-mode.md b/pages/common/doctl-databases-sql-mode.md new file mode 100644 index 0000000000..1a81ecedf3 --- /dev/null +++ b/pages/common/doctl-databases-sql-mode.md @@ -0,0 +1,16 @@ +# doctl databases sql-mode + +> View and configure a MySQL database cluster’s global SQL modes. +> More information: . + +- Run a `doctl databases sql-mode` command with an access token: + +`doctl databases sql-mode {{command}} --access-token {{access_token}}` + +- Get a MySQL database cluster's SQL modes: + +`doctl databases sql-mode get {{database_id}}` + +- Overwrite a MySQL database cluster's SQL modes to the specified modes: + +`doctl databases sql-mode set {{database_id}} {{sql_mode_1 sql_mode_2 ...}}` diff --git a/pages/common/doctl-databases-user.md b/pages/common/doctl-databases-user.md new file mode 100644 index 0000000000..ce6531ab0f --- /dev/null +++ b/pages/common/doctl-databases-user.md @@ -0,0 +1,32 @@ +# doctl databases user + +> View details for, and create, database users. +> More information: . + +- Run a `doctl databases user` command with an access token: + +`doctl databases user {{command}} --access-token {{access_token}}` + +- Retrieve details about a database user: + +`doctl databases user get {{database_id}} {{user_name}}` + +- Retrieve a list of database users for a given database: + +`doctl databases user list {{database_id}}` + +- Reset the auth password for a given user: + +`doctl databases user reset {{database id}} {{user_name}}` + +- Reset the MySQL auth plugn for a given user: + +`doctl databases user reset {{database_id}} {{user_name}} {{caching_sha2_password|mysql_native_password}}` + +- Create a user in the given database with a given username: + +`doctl databases user create {{database_id}} {{user_name}}` + +- Delete a user from the given database with the given username: + +`doctl databases user delete {{database_id}} {{user_name}}` diff --git a/pages/common/doctl-databases.md b/pages/common/doctl-databases.md new file mode 100644 index 0000000000..5f7d5ef6a4 --- /dev/null +++ b/pages/common/doctl-databases.md @@ -0,0 +1,24 @@ +# doctl databases + +> Manage your MySQL, Redis, PostgreSQL, and MongoDB database services. +> More information: . + +- Run a `doctl databases` command with an access token: + +`doctl databases {{command}} --access-token {{access_token}}` + +- Get details for a database cluster: + +`doctl databases get` + +- List your database clusters: + +`doctl databases list` + +- Create a database cluster: + +`doctl databases create {{database_name}}` + +- Delete a cluster: + +`doctl databases delete {{database_id}}` diff --git a/pages/common/dotnet-add-package.md b/pages/common/dotnet-add-package.md new file mode 100644 index 0000000000..bd6a18a316 --- /dev/null +++ b/pages/common/dotnet-add-package.md @@ -0,0 +1,28 @@ +# dotnet add package + +> Add or update a .NET package reference in a project file. +> More information: . + +- Add a package to the project in the current directory: + +`dotnet add package {{package}}` + +- Add a package to a specific project: + +`dotnet add {{path/to/file.csproj}} package {{package}}` + +- Add a specific version of a package to the project: + +`dotnet add package {{package}} --version {{1.0.0}}` + +- Add a package using a specific NuGet source: + +`dotnet add package {{package}} --source {{https://api.nuget.org/v3/index.json}}` + +- Add a package only when targeting a specific framework: + +`dotnet add package {{package}} --framework {{net7.0}}` + +- Add and specify the directory where to restore packages (`~/.nuget/packages` by default): + +`dotnet add package {{package}} --package-directory {{path/to/directory}}` diff --git a/pages/common/dotnet-add-reference.md b/pages/common/dotnet-add-reference.md new file mode 100644 index 0000000000..d4c231218c --- /dev/null +++ b/pages/common/dotnet-add-reference.md @@ -0,0 +1,12 @@ +# dotnet add reference + +> Add .NET project-to-project references. +> More information: . + +- Add a reference to the project in the current directory: + +`dotnet add reference {{path/to/reference.csproj}}` + +- Add a reference to the specific project: + +`dotnet add {{path/to/project.csproj}} reference {{path/to/reference.csproj}}` diff --git a/pages/common/dotnet-run.md b/pages/common/dotnet-run.md new file mode 100644 index 0000000000..a2e32018d9 --- /dev/null +++ b/pages/common/dotnet-run.md @@ -0,0 +1,24 @@ +# dotnet run + +> Run a .NET application without explicit compile or launch commands. +> More information: . + +- Run the project in the current directory: + +`dotnet run` + +- Run a specific project: + +`dotnet run --project {{path/to/file.csproj}}` + +- Run the project with specific arguments: + +`dotnet run -- {{arg1=foo arg2=bar ...}}` + +- Run the project using a target framework moniker: + +`dotnet run --framework {{net7.0}}` + +- Specify architecture and OS, available since .NET 6 (Don't use `--runtime` with these options): + +`dotnet run --arch {{x86|x64|arm|arm64}} --os {{win|win7|osx|linux|ios|android}}` diff --git a/pages/common/duckdb.md b/pages/common/duckdb.md new file mode 100644 index 0000000000..4da3a97276 --- /dev/null +++ b/pages/common/duckdb.md @@ -0,0 +1,36 @@ +# duckdb + +> Command-line client for DuckDB, an in-process analytical SQL engine. +> More information: . + +- Start an interactive shell with a transient in-memory database: + +`duckdb` + +- Start an interactive shell on a database file. If the file does not exist, a new database is created: + +`duckdb {{path/to/dbfile}}` + +- Directly query a CSV, JSON, or Parquet file: + +`duckdb -c "{{SELECT * FROM 'data_source.[csv|csv.gz|json|json.gz|parquet]'}}"` + +- Run a SQL script: + +`duckdb -c ".read {{path/to/script.sql}}"` + +- Run query on database file and keep the interactive shell open: + +`duckdb {{path/to/dbfile}} -cmd "{{SELECT DISTINCT * FROM tbl}}"` + +- Run SQL queries in file on database and keep the interactive shell open: + +`duckdb {{path/to/dbfile}} -init {{path/to/script.sql}}` + +- Read CSV from stdin and write CSV to stdout: + +`cat {{path/to/source.csv}} | duckdb -c "{{COPY (FROM read_csv_auto('/dev/stdin')) TO '/dev/stdout' WITH (FORMAT CSV, HEADER)}}"` + +- Display help: + +`duckdb -help` diff --git a/pages/common/echo.md b/pages/common/echo.md index b07a1fb1b8..e44beffd54 100644 --- a/pages/common/echo.md +++ b/pages/common/echo.md @@ -22,3 +22,7 @@ - Enable interpretation of backslash escapes (special characters): `echo -e "{{Column 1\tColumn 2}}"` + +- Print the exit status of the last executed command (Note: In Windows Command Prompt and PowerShell the equivalent commands are `echo %errorlevel%` and `$lastexitcode` respectively): + +`echo $?` diff --git a/pages/common/eksctl.md b/pages/common/eksctl.md new file mode 100644 index 0000000000..1cfb31383c --- /dev/null +++ b/pages/common/eksctl.md @@ -0,0 +1,36 @@ +# eksctl + +> The official CLI for Amazon EKS. +> More information: . + +- Create a basic cluster: + +`eksctl create cluster` + +- List the details about a cluster or all of the clusters: + +`eksctl get cluster --name={{name}} --region={{region}}` + +- Create a cluster passing all configuration information in a file: + +`eksctl create cluster --config-file={{path/to/file}}` + +- Create a cluster using a configuration file and skip creating nodegroups until later: + +`eksctl create cluster --config-file= --without-nodegroup` + +- Delete a cluster: + +`eksctl delete cluster --name={{name}} --region={{region}}` + +- Create cluster and write cluster credentials to a file other than the default: + +`eksctl create cluster --name={{name}} --nodes={{4}} --kubeconfig={{path/to/config.yaml}}` + +- Create a cluster and prevent storing cluster credentials locally: + +`eksctl create cluster --name={{name}} --nodes={{4}} --write-kubeconfig=false` + +- Create a cluster and let `eksctl` manage cluster credentials under the `~/.kube/eksctl/clusters` directory: + +`eksctl create cluster --name={{name}} --nodes={{4}} --auto-kubeconfig` diff --git a/pages/common/elinks.md b/pages/common/elinks.md index aaefc281e1..944f9bd672 100644 --- a/pages/common/elinks.md +++ b/pages/common/elinks.md @@ -1,9 +1,9 @@ # elinks -> A text based browser similar to lynx. +> A text based browser similar to `lynx`. > More information: . -- Start elinks: +- Start ELinks: `elinks` diff --git a/pages/common/elm.md b/pages/common/elm.md index aee99740a6..ab0f9d21fe 100644 --- a/pages/common/elm.md +++ b/pages/common/elm.md @@ -23,6 +23,6 @@ `elm reactor` -- Install Elm package from https://package.elm-lang.org: +- Install Elm package from : `elm install {{author}}/{{package}}` diff --git a/pages/common/emulator.md b/pages/common/emulator.md index c06a730f18..0d00e24880 100644 --- a/pages/common/emulator.md +++ b/pages/common/emulator.md @@ -1,12 +1,8 @@ # emulator -> Manager Android emulators from the command-line. +> Manage Android emulators. > More information: . -- Display the help: - -`emulator -help` - - Start an Android emulator device: `emulator -avd {{name}}` @@ -34,3 +30,7 @@ - Start an emulator with a given SD card partition image file: `emulator -avd {{name}} -sdcard {{path/to/sdcard.img}}` + +- Display help: + +`emulator -help` diff --git a/pages/common/enca.md b/pages/common/enca.md index 84d764c571..0a9d3f2d7f 100644 --- a/pages/common/enca.md +++ b/pages/common/enca.md @@ -5,15 +5,15 @@ - Detect file(s) encoding according to the system's locale: -`enca {{file1 file2 ...}}` +`enca {{path/to/file1 path/to/file2 ...}}` - Detect file(s) encoding specifying a language in the POSIX/C locale format (e.g. zh_CN, en_US): -`enca -L {{language}} {{file1 file2 ...}}` +`enca -L {{language}} {{path/to/file1 path/to/file2 ...}}` - Convert file(s) to a specific encoding: -`enca -L {{language}} -x {{to_encoding}} {{file1 file2 ...}}` +`enca -L {{language}} -x {{to_encoding}} {{path/to/file1 path/to/file2 ...}}` - Create a copy of an existing file using a different encoding: diff --git a/pages/common/eol.md b/pages/common/eol.md new file mode 100644 index 0000000000..cc8840cfc7 --- /dev/null +++ b/pages/common/eol.md @@ -0,0 +1,28 @@ +# eol + +> Show end-of-life dates (EoLs) for a number of products. +> More information: . + +- List all available products: + +`eol` + +- Get EoLs of one or more products: + +`eol {{product1 product2 ...}}` + +- Open the product webpage: + +`eol {{product}} --web` + +- Get EoLs of a one or more products in a specific format: + +`eol {{product1 product2 ...}} --format {{html|json|md|markdown|pretty|rst|csv|tsv|yaml}}` + +- Get EoLs of one or more products as a single markdown file: + +`eol {{product1 product2 ...}} --format {{markdown}} > {{eol_report.md}}` + +- Display help: + +`eol --help` diff --git a/pages/common/ern.md b/pages/common/ern.md index 4a6e2243ff..76dd54786d 100644 --- a/pages/common/ern.md +++ b/pages/common/ern.md @@ -1,13 +1,13 @@ # ern -> Electrode Native platform command line client. +> Electrode Native platform command-line client. > More information: . - Create a new `ern` application (`MiniApp`): `ern create-miniapp {{application_name}}` -- Run one or more `MiniApps` in the iOS / Android Runner application: +- Run one or more `MiniApps` in the iOS/Android Runner application: `ern run-{{ios|android}}` diff --git a/pages/common/eslint.md b/pages/common/eslint.md index 7957b3a403..49d92b29a8 100644 --- a/pages/common/eslint.md +++ b/pages/common/eslint.md @@ -3,18 +3,18 @@ > A pluggable linting utility for JavaScript and JSX. > More information: . -- Create ESLint config: +- Create the ESLint config file: `eslint --init` -- Lint on a given set of files: +- Lint one or more files: -`eslint {{filename}}.js {{filename1}}.js` +`eslint {{path/to/file1.js path/to/file2.js ...}}` - Fix lint issues: `eslint --fix` -- Lint with config: +- Lint using the specified config: -`eslint -c {{path/to/config_file}} {{app/src}}` +`eslint -c {{path/to/config_file}} {{path/to/file1.js path/to/file2.js}}` diff --git a/pages/common/espanso.md b/pages/common/espanso.md index 5e6fbb1c8c..a2e59899cc 100644 --- a/pages/common/espanso.md +++ b/pages/common/espanso.md @@ -13,7 +13,7 @@ - Install a package from the hub store (): -`espanso install {{package_name}}` +`espanso install {{package}}` - Restart (required after installing a package, useful in case of failure): diff --git a/pages/common/espeak.md b/pages/common/espeak.md index d67c6519bc..8575339a2a 100644 --- a/pages/common/espeak.md +++ b/pages/common/espeak.md @@ -9,7 +9,7 @@ - Speak a file aloud: -`espeak -f {{filename}}` +`espeak -f {{path/to/file}}` - Save output to a WAV audio file, rather than speaking it directly: diff --git a/pages/common/etcd.md b/pages/common/etcd.md index de374af3b8..03385ca3d9 100644 --- a/pages/common/etcd.md +++ b/pages/common/etcd.md @@ -15,6 +15,6 @@ `etcd --name {{my_etcd_cluster}}` -- Start a single-node etcd cluster with extensive metrics available at http://localhost:2379/debug/pprof/: +- Start a single-node etcd cluster with extensive metrics available at : `etcd --enable-pprof --metrics extensive` diff --git a/pages/common/etcdctl.md b/pages/common/etcdctl.md index ef8997b6bf..dcc7f42d4b 100644 --- a/pages/common/etcdctl.md +++ b/pages/common/etcdctl.md @@ -1,6 +1,6 @@ # etcdctl -> CLI interface for interacting with etcd, a highly-available key-value pair store. +> Interact with `etcd`, a highly-available key-value pair store. > More information: . - Display the value associated with a specified key: diff --git a/pages/common/exercism.md b/pages/common/exercism.md index 67f7ff4ee5..edebb071ad 100644 --- a/pages/common/exercism.md +++ b/pages/common/exercism.md @@ -1,6 +1,6 @@ # exercism -> Download and solve problems from the command-line. +> Download and solve problems. > More information: . - Configure the application token and the preferred workspace for Exercism: diff --git a/pages/common/exfatlabel.md b/pages/common/exfatlabel.md new file mode 100644 index 0000000000..38f84bc173 --- /dev/null +++ b/pages/common/exfatlabel.md @@ -0,0 +1,12 @@ +# exfatlabel + +> Get or set an exFAT filesystem label. +> More information: . + +- Display the current filesystem label: + +`exfatlabel {{/dev/sda}}` + +- Set the filesystem label: + +`exfatlabel {{/dev/sda}} {{new_label}}` diff --git a/pages/common/exiftool.md b/pages/common/exiftool.md index 47e272aab4..d86fef7767 100644 --- a/pages/common/exiftool.md +++ b/pages/common/exiftool.md @@ -9,7 +9,7 @@ - Remove all EXIF metadata from the given files: -`exiftool -All= {{file1 file2 ...}}` +`exiftool -All= {{path/to/file1 path/to/file2 ...}}` - Remove GPS EXIF metadata from given image files: @@ -17,7 +17,7 @@ - Remove all EXIF metadata from the given image files, then re-add metadata for color and orientation: -`exiftool -All= -tagsfromfile @ -colorspacetags -orientation {{image1 image2 ...}}` +`exiftool -All= -tagsfromfile @ -colorspacetags -orientation {{path/to/image1 path/to/image2 ...}}` - Move the date at which all photos in a directory were taken 1 hour forward: diff --git a/pages/common/expand.md b/pages/common/expand.md index cebab4186e..7fe100a399 100644 --- a/pages/common/expand.md +++ b/pages/common/expand.md @@ -3,11 +3,11 @@ > Convert tabs to spaces. > More information: . -- Convert tabs in each file to spaces, writing to standard output: +- Convert tabs in each file to spaces, writing to `stdout`: `expand {{path/to/file}}` -- Convert tabs to spaces, reading from standard input: +- Convert tabs to spaces, reading from `stdin`: `expand` diff --git a/pages/common/expr.md b/pages/common/expr.md index 51131fd702..75bdfd3e4f 100644 --- a/pages/common/expr.md +++ b/pages/common/expr.md @@ -3,22 +3,30 @@ > Evaluate expressions and manipulate strings. > More information: . -- Get string length: +- Get the length of a specific string: -`expr length {{string}}` +`expr length "{{string}}"` -- Evaluate logical or math expression with an operator ('+', '-', '*', '&', '|', etc.). Special symbols should be escaped: +- Get the substring of a string with a specific length: -`expr {{first_argument}} {{operator}} {{second_argument}}` +`expr substr "{{string}}" {{from}} {{length}}` -- Get position of the first character in 'string' that matches 'substring': +- Match a specific substring against an anchored pattern: -`echo $(expr index {{string}} {{substring}})` +`expr match "{{string}}" '{{pattern}}'` -- Extract part of the string: +- Get the first char position from a specific set in a string: -`echo $(expr substr {{string}} {{position_to_start}} {{number_of_characters}}` +`expr index "{{string}}" "{{chars}}"` -- Extract part of the string which matches a regular expression: +- Calculate a specific mathematic expression: -`echo $(expr {{string}} : '\({{regular_expression}}\)')` +`expr {{expression1}} {{+|-|*|/|%}} {{expression2}}` + +- Get the first expression if its value is non-zero and not null otherwise get the second one: + +`expr {{expression1}} \| {{expression2}}` + +- Get the first expression if both expressions are non-zero and not null otherwise get zero: + +`expr {{expression1}} \& {{expression2}}` diff --git a/pages/common/eza.md b/pages/common/eza.md new file mode 100644 index 0000000000..0db1f395bb --- /dev/null +++ b/pages/common/eza.md @@ -0,0 +1,36 @@ +# eza + +> Modern, maintained replacement for `ls`, built on `exa`. +> More information: . + +- List files one per line: + +`eza --oneline` + +- List all files, including hidden files: + +`eza --all` + +- Long format list (permissions, ownership, size and modification date) of all files: + +`eza --long --all` + +- List files with the largest at the top: + +`eza --reverse --sort={{size}}` + +- Display a tree of files, three levels deep: + +`eza --long --tree --level={{3}}` + +- List files sorted by modification date (oldest first): + +`eza --long --sort={{modified}}` + +- List files with their headers, icons, and Git statuses: + +`eza --long --header --icons --git` + +- Don't list files mentioned in `.gitignore`: + +`eza --git-ignore` diff --git a/pages/common/false.md b/pages/common/false.md index 4423e7cece..16f2921c20 100644 --- a/pages/common/false.md +++ b/pages/common/false.md @@ -1,8 +1,8 @@ # false -> Returns an exit code of 1. +> Returns a non-zero exit code. > More information: . -- Return an exit code of 1: +- Return a non-zero exit code: `false` diff --git a/pages/common/fastboot.md b/pages/common/fastboot.md index 5625c22ba2..da9d0f3204 100644 --- a/pages/common/fastboot.md +++ b/pages/common/fastboot.md @@ -1,7 +1,7 @@ # fastboot > Communicate with connected Android devices when in bootloader mode (the one place `adb` doesn't work). -> More information: . +> More information: . - Unlock the bootloader: diff --git a/pages/common/fastd.md b/pages/common/fastd.md new file mode 100644 index 0000000000..bbf9915ac2 --- /dev/null +++ b/pages/common/fastd.md @@ -0,0 +1,29 @@ +# fastd + +> VPN daemon. +> Works on Layer 2 or Layer 3, supports different encryption methods, used by Freifunk. +> More information: . + +- Start `fastd` with a specific configuration file: + +`fastd --config {{path/to/fastd.conf}}` + +- Start a Layer 3 VPN with an MTU of 1400, loading the rest of the configuration parameters from a file: + +`fastd --mode {{tap}} --mtu {{1400}} --config {{path/to/fastd.conf}}` + +- Validate a configuration file: + +`fastd --verify-config --config {{path/to/fastd.conf}}` + +- Generate a new key: + +`fastd --generate-key` + +- Show the public key to a private key in a configuration file: + +`fastd --show-key --config {{path/to/fastd.conf}}` + +- Show the current version: + +`fastd -v` diff --git a/pages/common/fastfetch.md b/pages/common/fastfetch.md index f159cc46c0..942c0bba35 100644 --- a/pages/common/fastfetch.md +++ b/pages/common/fastfetch.md @@ -1,6 +1,6 @@ # fastfetch -> A CLI tool to display information about your operating system, software and hardware. +> Display information about your operating system, software and hardware. > More information: . - Display system information: diff --git a/pages/common/fastlane.md b/pages/common/fastlane.md index 4eda3f4f2e..41bded9932 100644 --- a/pages/common/fastlane.md +++ b/pages/common/fastlane.md @@ -1,6 +1,6 @@ # fastlane -> Build and release mobile applications from the command-line. +> Build and release mobile applications. > More information: . - Build and sign the iOS application in the current directory: diff --git a/pages/common/fc.md b/pages/common/fc.md index 902f3487ac..b00d71906a 100644 --- a/pages/common/fc.md +++ b/pages/common/fc.md @@ -17,7 +17,7 @@ - List recent commands in reverse order: -`fc -r` +`fc -l -r` - List commands in a given interval: diff --git a/pages/common/fd.md b/pages/common/fd.md index 35b4757047..d441942dbe 100644 --- a/pages/common/fd.md +++ b/pages/common/fd.md @@ -4,13 +4,13 @@ > Aims to be faster and easier to use than `find`. > More information: . -- Recursively find files matching the given pattern in the current directory: +- Recursively find files matching a specific pattern in the current directory: -`fd {{pattern}}` +`fd "{{string|regex}}"` - Find files that begin with `foo`: -`fd '^foo'` +`fd "^foo"` - Find files with a specific extension: @@ -18,12 +18,12 @@ - Find files in a specific directory: -`fd '{{pattern}}' {{path/to/directory}}` +`fd "{{string|regex}}" {{path/to/directory}}` - Include ignored and hidden files in the search: -`fd --hidden --no-ignore '{{pattern}}'` +`fd --hidden --no-ignore "{{string|regex}}"` - Execute a command on each search result returned: -`fd '{{pattern}}' --exec {{command}}` +`fd "{{string|regex}}" --exec {{command}}` diff --git a/pages/common/ffmpeg.md b/pages/common/ffmpeg.md index 0b92ac1684..f11339aea6 100644 --- a/pages/common/ffmpeg.md +++ b/pages/common/ffmpeg.md @@ -25,12 +25,12 @@ - Convert AVI video to MP4. AAC Audio @ 128kbit, h264 Video @ CRF 23: -`ffmpeg -i {{input_video}}.avi -codec:audio aac -b:audio 128k -codec:video libx264 -crf 23 {{output_video}}.mp4` +`ffmpeg -i {{input_video}}.avi -codec:a aac -b:a 128k -codec:v libx264 -crf 23 {{output_video}}.mp4` - Remux MKV video to MP4 without re-encoding audio or video streams: `ffmpeg -i {{input_video}}.mkv -codec copy {{output_video}}.mp4` -- Convert MP4 video to VP9 codec. For the best quality, use a CRF value (recommended range 15-35) and -b:video MUST be 0: +- Convert MP4 video to VP9 codec. For the best quality, use a CRF value (recommended range 15-35) and -b:v MUST be 0: -`ffmpeg -i {{input_video}}.mp4 -codec:video libvpx-vp9 -crf {{30}} -b:video 0 -codec:audio libopus -vbr on -threads {{number_of_threads}} {{output_video}}.webm` +`ffmpeg -i {{input_video}}.mp4 -codec:v libvpx-vp9 -crf {{30}} -b:v 0 -codec:a libopus -vbr on -threads {{number_of_threads}} {{output_video}}.webm` diff --git a/pages/common/ffplay.md b/pages/common/ffplay.md index 5021d8b6f3..8e42ba169d 100644 --- a/pages/common/ffplay.md +++ b/pages/common/ffplay.md @@ -7,6 +7,14 @@ `ffplay {{path/to/file}}` +- Play audio from a media file without a GUI: + +`ffplay -nodisp {{path/to/file}}` + +- Play media passed by `ffmpeg` through `stdin`: + +`ffmpeg -i {{path/to/file}} -c {{copy}} -f {{media_format}} - | ffplay -` + - Play a video and show motion vectors in real time: `ffplay -flags2 +export_mvs -vf codecview=mv=pf+bf+bb {{path/to/file}}` diff --git a/pages/common/ffprobe.md b/pages/common/ffprobe.md index 8c9c17a1b3..6841023251 100644 --- a/pages/common/ffprobe.md +++ b/pages/common/ffprobe.md @@ -5,7 +5,7 @@ - Display all available stream info for a media file: -`ffprobe -v error -show_entries {{input.mp4}}` +`ffprobe -v error -show_streams {{input.mp4}}` - Display media duration: diff --git a/pages/common/ffsend.md b/pages/common/ffsend.md index 07f01f55bd..8ca148a60e 100644 --- a/pages/common/ffsend.md +++ b/pages/common/ffsend.md @@ -1,6 +1,6 @@ # ffsend -> Easily and securely share files from command-line. +> Easily and securely share files. > More information: . - Upload a file: diff --git a/pages/common/file.md b/pages/common/file.md index 50afe14c57..f2de979abf 100644 --- a/pages/common/file.md +++ b/pages/common/file.md @@ -5,7 +5,7 @@ - Give a description of the type of the specified file. Works fine for files with no file extension: -`file {{filename}}` +`file {{path/to/file}}` - Look inside a zipped file and determine the file type(s) inside: @@ -13,12 +13,12 @@ - Allow file to work with special or device files: -`file -s {{filename}}` +`file -s {{path/to/file}}` - Don't stop at first file type match; keep going until the end of the file: -`file -k {{filename}}` +`file -k {{path/to/file}}` - Determine the MIME encoding type of a file: -`file -i {{filename}}` +`file -i {{path/to/file}}` diff --git a/pages/common/find.md b/pages/common/find.md index 0918f3aa39..e64a1b596d 100644 --- a/pages/common/find.md +++ b/pages/common/find.md @@ -19,7 +19,7 @@ `find {{root_path}} -name '{{*.py}}' -not -path '{{*/site-packages/*}}'` -- Find files matching a given size range, limiting the recursive depth to "1":: +- Find files matching a given size range, limiting the recursive depth to "1": `find {{root_path}} -maxdepth 1 -size {{+500k}} -size {{-10M}}` diff --git a/pages/common/fio.md b/pages/common/fio.md index 95ce9cf1aa..2be5dd9235 100644 --- a/pages/common/fio.md +++ b/pages/common/fio.md @@ -6,19 +6,19 @@ - Test random reads: -`sudo fio --filename={{path/to/file}} --direct=1 --rw=randread --bs=4k --ioengine=libaio --iodepth=256 --runtime=120 --numjobs=4 --time_based --group_reporting --name={{job_name}} --eta-newline=1 --readonly` +`fio --filename={{path/to/file}} --direct=1 --rw=randread --bs=4k --ioengine=libaio --iodepth=256 --runtime=120 --numjobs=4 --time_based --group_reporting --name={{job_name}} --eta-newline=1 --readonly` - Test sequential reads: -`sudo fio --filename={{path/to/file}} --direct=1 --rw=read --bs=4k --ioengine=libaio --iodepth=256 --runtime=120 --numjobs=4 --time_based --group_reporting --name={{job_name}} --eta-newline=1 --readonly` +`fio --filename={{path/to/file}} --direct=1 --rw=read --bs=4k --ioengine=libaio --iodepth=256 --runtime=120 --numjobs=4 --time_based --group_reporting --name={{job_name}} --eta-newline=1 --readonly` - Test random read/write: -`sudo fio --filename={{path/to/file}} --size=500GB --direct=1 --rw=randrw --bs=4k --ioengine=libaio --iodepth=256 --runtime=120 --numjobs=4 --time_based --group_reporting --name={{job_name}} --eta-newline=1` +`fio --filename={{path/to/file}} --direct=1 --rw=randrw --bs=4k --ioengine=libaio --iodepth=256 --runtime=120 --numjobs=4 --time_based --group_reporting --name={{job_name}} --eta-newline=1` - Test with parameters from a job file: -`sudo fio {{path/to/job_file}}` +`fio {{path/to/job_file}}` - Convert a specific job file to command-line options: diff --git a/pages/common/firebase.md b/pages/common/firebase.md index 9b2a43def0..86c61b05cb 100644 --- a/pages/common/firebase.md +++ b/pages/common/firebase.md @@ -1,6 +1,6 @@ # firebase -> Test, manage, and deploy Firebase projects from the command-line. +> Test, manage, and deploy Firebase projects. > More information: . - Log in to : diff --git a/pages/common/flutter-pub.md b/pages/common/flutter-pub.md new file mode 100644 index 0000000000..2917acec8f --- /dev/null +++ b/pages/common/flutter-pub.md @@ -0,0 +1,21 @@ +# flutter pub + +> Flutter's package manager. +> Note: Packages are available on . See also: `flutter`. +> More information: . + +- Download/Update all packages specified in `pubspec.yaml`: + +`flutter pub get` + +- Add a package dependency to an app: + +`flutter pub add {{package1 package2 ...}}` + +- Remove a package dependency from an app: + +`flutter pub remove {{package1 package2 ...}}` + +- Upgrade to the highest version of a package that is allowed by `pubspec.yaml`: + +`flutter pub upgrade {{package}}` diff --git a/pages/common/flutter.md b/pages/common/flutter.md index ec4d229104..5eacb8929e 100644 --- a/pages/common/flutter.md +++ b/pages/common/flutter.md @@ -1,6 +1,7 @@ # flutter > Google's free, open source, and cross-platform mobile app SDK. +> Some subcommands such as `flutter pub` have their own usage documentation. > More information: . - Initialize a new Flutter project in a directory of the same name: @@ -19,10 +20,6 @@ `flutter run -d all` -- Download all packages specified in `pubspec.yaml`: - -`flutter pub get` - - Run tests in a terminal from the root of the project: `flutter test {{test/example_test.dart}}` diff --git a/pages/common/fold.md b/pages/common/fold.md index 0fde28ba1e..402f6aaa6d 100644 --- a/pages/common/fold.md +++ b/pages/common/fold.md @@ -1,7 +1,7 @@ # fold -> Wraps each line in an input file to fit a specified width and prints it to the standard output. -> More information: . +> Wrap each line in an input file to fit a specified width and print it to `stdout`. +> More information: . - Wrap each line to default width (80 characters): diff --git a/pages/common/fortune.md b/pages/common/fortune.md index e25963b993..bb97e3f005 100644 --- a/pages/common/fortune.md +++ b/pages/common/fortune.md @@ -25,4 +25,4 @@ - Print a quotation from one of the database files listed by `fortune -f`: -`fortune {{filename}}` +`fortune {{path/to/file}}` diff --git a/pages/common/fzf.md b/pages/common/fzf.md index e60fcadbbf..85360a591f 100644 --- a/pages/common/fzf.md +++ b/pages/common/fzf.md @@ -4,26 +4,26 @@ > Similar to `sk`. > More information: . -- Start fzf on all files in the specified directory: +- Start `fzf` on all files in the specified directory: `find {{path/to/directory}} -type f | fzf` -- Start fzf for running processes: +- Start `fzf` for running processes: `ps aux | fzf` - Select multiple files with `Shift + Tab` and write to a file: -`find {{path/to/directory}} -type f | fzf --multi > {{filename}}` +`find {{path/to/directory}} -type f | fzf --multi > {{path/to/file}}` -- Start fzf with a specified query: +- Start `fzf` with a specified query: `fzf --query "{{query}}"` -- Start fzf on entries that start with core and end with either go, rb, or py: +- Start `fzf` on entries that start with core and end with either go, rb, or py: `fzf --query "^core go$ | rb$ | py$"` -- Start fzf on entries that not match pyc and match exactly travis: +- Start `fzf` on entries that not match pyc and match exactly travis: `fzf --query "!pyc 'travis"` diff --git a/pages/common/gallery-dl.md b/pages/common/gallery-dl.md new file mode 100644 index 0000000000..b3e19bb49b --- /dev/null +++ b/pages/common/gallery-dl.md @@ -0,0 +1,20 @@ +# gallery-dl + +> Download image galleries and collections from several image hosting sites. +> More information: . + +- Download images from the specified URL: + +`gallery-dl "{{url}}"` + +- Retrieve pre-existing cookies from your web browser (useful for sites that require login): + +`gallery-dl --cookies-from-browser {{browser}} "{{url}}"` + +- Get the direct URL of an image from a site supporting authentication with username and password: + +`gallery-dl --get-urls --username {{username}} --password {{password}} "{{url}}"` + +- Filter manga chapters by chapter number and language: + +`gallery-dl --chapter-filter "{{10 <= chapter < 20}}" --option "lang={{language_code}}" "{{url}}"` diff --git a/pages/common/gcc.md b/pages/common/gcc.md index e2b0c9ebb4..ef3ef73b5b 100644 --- a/pages/common/gcc.md +++ b/pages/common/gcc.md @@ -3,7 +3,7 @@ > Preprocess and compile C and C++ source files, then assemble and link them together. > More information: . -- Compile multiple source files into executable: +- Compile multiple source files into an executable: `gcc {{path/to/source1.c path/to/source2.c ...}} -o {{path/to/output_executable}}` diff --git a/pages/common/gcpdiag.md b/pages/common/gcpdiag.md new file mode 100644 index 0000000000..e81c23b0ae --- /dev/null +++ b/pages/common/gcpdiag.md @@ -0,0 +1,25 @@ +# gcpdiag + +> Google Cloud Platform troubleshooting and diagnostics tool. +> Run in a docker container or in GCP Cloudshell. +> More information: . + +- Run `gcpdiag` on your project, returning all rules: + +`gcpdiag lint --project={{gcp_project_id}}` + +- Hide rules that are ok: + +`gcpdiag lint --project={{gcp_project_id}} --hide-ok` + +- Authenticate using a service account private key file: + +`gcpdiag lint --project={{gcp_project_id}} --auth-key {{path/to/private_key}}` + +- Search logs and metrics from a number of days back (default: 3 days): + +`gcpdiag lint --project={{gcp_project_id}} --within-days {{number}}` + +- Display help: + +`gcpdiag lint --help` diff --git a/pages/common/gdb.md b/pages/common/gdb.md index eb3f966561..903877f6fa 100644 --- a/pages/common/gdb.md +++ b/pages/common/gdb.md @@ -19,6 +19,6 @@ `gdb -ex "{{commands}}" {{executable}}` -- Start gdb and pass arguments to the executable: +- Start `gdb` and pass arguments to the executable: `gdb --args {{executable}} {{argument1}} {{argument2}}` diff --git a/pages/common/gem.md b/pages/common/gem.md index 44238d40ab..500029c8de 100644 --- a/pages/common/gem.md +++ b/pages/common/gem.md @@ -1,7 +1,7 @@ # gem -> Interact with the package manager for the Ruby programming language. -> More information: . +> A package manager for the Ruby programming language. +> More information: . - Search for remote gem(s) and show all available versions: @@ -9,19 +9,19 @@ - Install the latest version of a gem: -`gem install {{gemname}}` +`gem install {{gem_name}}` -- Install specific version of a gem: +- Install a specific version of a gem: -`gem install {{gemname}} --version {{1.0.0}}` +`gem install {{gem_name}} --version {{1.0.0}}` - Install the latest matching (SemVer) version of a gem: -`gem install {{gemname}} --version '~> {{1.0}}'` +`gem install {{gem_name}} --version '~> {{1.0}}'` - Update a gem: -`gem update {{gemname}}` +`gem update {{gem_name}}` - List all local gems: @@ -29,8 +29,8 @@ - Uninstall a gem: -`gem uninstall {{gemname}}` +`gem uninstall {{gem_name}}` -- Uninstall specific version of a gem: +- Uninstall a specific version of a gem: -`gem uninstall {{gemname}} --version {{1.0.0}}` +`gem uninstall {{gem_name}} --version {{1.0.0}}` diff --git a/pages/common/gfortran.md b/pages/common/gfortran.md new file mode 100644 index 0000000000..465149c528 --- /dev/null +++ b/pages/common/gfortran.md @@ -0,0 +1,24 @@ +# gfortran + +> Preprocess and compile Fortran source files, then assemble and link them together. +> More information: . + +- Compile multiple source files into an executable: + +`gfortran {{path/to/source1.f90 path/to/source2.f90 ...}} -o {{path/to/output_executable}}` + +- Show common warnings, debug symbols in output, and optimize without affecting debugging: + +`gfortran {{path/to/source.f90}} -Wall -g -Og -o {{path/to/output_executable}}` + +- Include libraries from a different path: + +`gfortran {{path/to/source.f90}} -o {{path/to/output_executable}} -I{{path/to/mod_and_include}} -L{{path/to/library}} -l{{library_name}}` + +- Compile source code into Assembler instructions: + +`gfortran -S {{path/to/source.f90}}` + +- Compile source code into an object file without linking: + +`gfortran -c {{path/to/source.f90}}` diff --git a/pages/common/gh-alias.md b/pages/common/gh-alias.md index 98e6d7f234..e6c81bdba4 100644 --- a/pages/common/gh-alias.md +++ b/pages/common/gh-alias.md @@ -1,6 +1,6 @@ # gh alias -> Manage GitHub CLI command aliases from the command-line. +> Manage GitHub CLI command aliases. > More information: . - Display the subcommand help: diff --git a/pages/common/gh-auth.md b/pages/common/gh-auth.md index aadb28c31d..529e394034 100644 --- a/pages/common/gh-auth.md +++ b/pages/common/gh-auth.md @@ -1,13 +1,13 @@ # gh auth -> Authenticate with a GitHub host from the command-line. +> Authenticate with a GitHub host. > More information: . - Log in with interactive prompt: `gh auth login` -- Log in with a token from standard input (created in https://github.com/settings/tokens): +- Log in with a token from `stdin` (created in ): `echo {{your_token}} | gh auth login --with-token` @@ -29,4 +29,4 @@ - Expand the permission scopes: -`gh auth refresh --scopes {{write:org,read:public_key}}` +`gh auth refresh --scopes {{repo,admin:repo_hook,admin:org,admin:public_key,admin:org_hook,...}}` diff --git a/pages/common/gh-browse.md b/pages/common/gh-browse.md index e614f3dc1f..97c41c1f20 100644 --- a/pages/common/gh-browse.md +++ b/pages/common/gh-browse.md @@ -21,7 +21,7 @@ - Open a specific issue or pull request in the web browser: -`gh browse {{issue_or_pull_request_number}}` +`gh browse {{issue_number|pull_request_number}}` - Open a specific branch in the web browser: @@ -29,7 +29,7 @@ - Open a specific file or directory of the current repository in the web browser: -`gh browse {{path_from_root_of_repository}}` +`gh browse {{path/to/file_or_directory}}` - Print the destination URL without open the web browser: diff --git a/pages/common/gh-codespace.md b/pages/common/gh-codespace.md index 4dc8c7b0b5..c91f808166 100644 --- a/pages/common/gh-codespace.md +++ b/pages/common/gh-codespace.md @@ -15,7 +15,7 @@ `gh codespace ssh` -- Transfer a file to a codespace interactively: +- Transfer a specific file to a codespace interactively: `gh codespace cp {{path/to/source_file}} remote:{{path/to/remote_file}}` @@ -23,7 +23,7 @@ `gh codespace ports` -- Print the logs from a codespace interactively: +- Display the logs from a codespace interactively: `gh codespace logs` @@ -33,4 +33,4 @@ - Display help for a subcommand: -`gh codespace {{subcommand}} --help` +`gh codespace {{code|cp|create|delete|edit|...}} --help` diff --git a/pages/common/gh-gist.md b/pages/common/gh-gist.md index f284b10d9d..88250a0ff0 100644 --- a/pages/common/gh-gist.md +++ b/pages/common/gh-gist.md @@ -1,24 +1,24 @@ # gh gist -> Work with GitHub Gists on the command-line. +> Work with GitHub Gists. > More information: . - Create a new Gist from a space-separated list of files: -`gh gist create {{path/to/files}}` +`gh gist create {{path/to/file1 path/to/file2 ...}}` -- Create a new Gist with a description: +- Create a new Gist with a specific [desc]ription: -`gh gist create {{filename}} --desc "{{description}}"` +`gh gist create {{path/to/file1 path/to/file2 ...}} --desc "{{description}}"` - Edit a Gist: -`gh gist edit {{id_or_url}}` +`gh gist edit {{id|url}}` -- List Gists owned by the currently logged in user: +- List up to 42 Gists owned by the currently logged in user: -`gh gist list --limit {{int}}` +`gh gist list --limit {{42}}` - View a Gist in the default browser without rendering Markdown: -`gh gist view {{id_or_url}} --web --raw` +`gh gist view {{id|url}} --web --raw` diff --git a/pages/common/gh-issue-create.md b/pages/common/gh-issue-create.md index cd55b84599..d7c282f449 100644 --- a/pages/common/gh-issue-create.md +++ b/pages/common/gh-issue-create.md @@ -1,6 +1,6 @@ # gh issue create -> Create GitHub issues on a repository from the command-line. +> Create GitHub issues on a repository. > More information: . - Create a new issue against the current repository interactively: diff --git a/pages/common/gh-issue.md b/pages/common/gh-issue.md index 061d8288ab..c8c066b3d4 100644 --- a/pages/common/gh-issue.md +++ b/pages/common/gh-issue.md @@ -1,6 +1,6 @@ # gh issue -> Manage GitHub issues from the command-line. +> Manage GitHub issues. > More information: . - Display a specific issue: diff --git a/pages/common/gh-label.md b/pages/common/gh-label.md index 6219ef9bbb..7a536473b7 100644 --- a/pages/common/gh-label.md +++ b/pages/common/gh-label.md @@ -1,6 +1,6 @@ # gh label -> Work with GitHub labels on the command-line. +> Work with GitHub labels. > More information: . - List labels for the repository in the current directory: diff --git a/pages/common/gh-pr-create.md b/pages/common/gh-pr-create.md index d166d50ffc..2162f3244f 100644 --- a/pages/common/gh-pr-create.md +++ b/pages/common/gh-pr-create.md @@ -1,6 +1,6 @@ # gh pr create -> Manage GitHub pull requests from the command-line. +> Manage GitHub pull requests. > More information: . - Interactively create a pull request: diff --git a/pages/common/gh-pr.md b/pages/common/gh-pr.md index ea2715c602..f17fade83b 100644 --- a/pages/common/gh-pr.md +++ b/pages/common/gh-pr.md @@ -1,6 +1,6 @@ # gh pr -> Manage GitHub pull requests from the command-line. +> Manage GitHub pull requests. > Some subcommands such as `gh pr create` have their own usage documentation. > More information: . diff --git a/pages/common/gh-release.md b/pages/common/gh-release.md index 67de599b83..ba5323f4fe 100644 --- a/pages/common/gh-release.md +++ b/pages/common/gh-release.md @@ -1,6 +1,6 @@ # gh release -> Manage GitHub releases from the command-line. +> Manage GitHub releases. > More information: . - List releases in a GitHub repository, limited to 30 items: @@ -25,4 +25,4 @@ - Upload assets to a specific release: -`gh release upload {{tag}} {{path/to/file1}} {{path/to/file2}}` +`gh release upload {{tag}} {{path/to/file1 path/to/file2 ...}}` diff --git a/pages/common/gh-repo.md b/pages/common/gh-repo.md index 7092683b18..90b23fccae 100644 --- a/pages/common/gh-repo.md +++ b/pages/common/gh-repo.md @@ -1,6 +1,6 @@ # gh repo -> Work with GitHub repositories on the command-line. +> Work with GitHub repositories. > More information: . - Create a new repository (if the repository name is not set, the default name will be the name of the current directory): @@ -23,9 +23,9 @@ `gh repo list {{owner}}` -- List only non-forks repositories: +- List only non-forks repositories and limit the number of repositories to list (default: 30): -`gh repo list {{owner}} --non-forks` +`gh repo list {{owner}} --source -L {{limit}}` - List repositories with a specific primary coding language: diff --git a/pages/common/gh-secret-set.md b/pages/common/gh-secret-set.md index 30db785f86..f26b9816db 100644 --- a/pages/common/gh-secret-set.md +++ b/pages/common/gh-secret-set.md @@ -1,6 +1,6 @@ # gh secret set -> Create or update GitHub secrets from the command line. +> Create or update GitHub secrets. > More information: . - Set a secret for the current repository (user will be prompted for the value): diff --git a/pages/common/gh-secret.md b/pages/common/gh-secret.md index 6ab25044ed..0b733e3fec 100644 --- a/pages/common/gh-secret.md +++ b/pages/common/gh-secret.md @@ -1,6 +1,6 @@ # gh secret -> Manage GitHub secrets from the command-line. +> Manage GitHub secrets. > More information: . - List secret keys for the current repository: diff --git a/pages/common/gh-ssh-key.md b/pages/common/gh-ssh-key.md index da134d1eff..16dcb8db58 100644 --- a/pages/common/gh-ssh-key.md +++ b/pages/common/gh-ssh-key.md @@ -1,6 +1,6 @@ # gh ssh-key -> Manage GitHub SSH keys from the command-line. +> Manage GitHub SSH keys. > More information: . - Display help: diff --git a/pages/common/gh-workflow.md b/pages/common/gh-workflow.md index 2daa7177e9..f7ece5a7ac 100644 --- a/pages/common/gh-workflow.md +++ b/pages/common/gh-workflow.md @@ -17,7 +17,7 @@ - Display the YAML definition for a specific Git branch or tag: -`gh workflow view {{id|workflow_name|filename.yml}} --ref {{branch_or_tag_name}} --yaml` +`gh workflow view {{id|workflow_name|filename.yml}} --ref {{branch|tag_name}} --yaml` - List workflow files (use `--all` to include disabled workflows): @@ -25,11 +25,11 @@ - Run a manual workflow with parameters: -`gh workflow run {{id|workflow_name|filename.yml}} --raw-field {{param1}}={{value1}} --raw-field {{param2}}={{value2}}` +`gh workflow run {{id|workflow_name|filename.yml}} {{--raw-field param1=value1 --raw-field param2=value2 ...}}` - Run a manual workflow using a specific branch or tag with JSON parameters from `stdin`: -`echo '{{{"param1":"value1", "param2":"value2"}}}' | gh workflow run {{id|workflow_name|filename.yml}} --ref {{branch_or_tag_name}}` +`echo '{{{"param1": "value1", "param2": "value2", ...}}}' | gh workflow run {{id|workflow_name|filename.yml}} --ref {{branch|tag_name}}` - Enable or disable a specific workflow: diff --git a/pages/common/gh.md b/pages/common/gh.md index 2e8a6887d1..f9f5d3824d 100644 --- a/pages/common/gh.md +++ b/pages/common/gh.md @@ -1,6 +1,6 @@ # gh -> Work seamlessly with GitHub from the command-line. +> Work seamlessly with GitHub. > Some subcommands such as `gh config` have their own usage documentation. > More information: . diff --git a/pages/common/git-am.md b/pages/common/git-am.md index 4b170737a2..d22019a927 100644 --- a/pages/common/git-am.md +++ b/pages/common/git-am.md @@ -1,13 +1,17 @@ # git am -> Apply patch files. Useful when receiving commits via email. +> Apply patch files and create a commit. Useful when receiving commits via email. > See also `git format-patch`, which can generate patch files. > More information: . -- Apply a patch file: +- Apply and commit changes following a local patch file: `git am {{path/to/file.patch}}` +- Apply and commit changes following a remote patch file: + +`curl -L {{https://example.com/file.patch}} | git apply` + - Abort the process of applying a patch file: `git am --abort` diff --git a/pages/common/git-annex.md b/pages/common/git-annex.md index 05bebcb4f0..4d8322bb49 100644 --- a/pages/common/git-annex.md +++ b/pages/common/git-annex.md @@ -4,10 +4,6 @@ > When a file is annexed, its content is moved into a key-value store, and a symlink is made that points to the content. > More information: . -- Help: - -`git annex help` - - Initialize a repo with Git annex: `git annex init` @@ -27,3 +23,7 @@ - Get a file or directory: `git annex get {{path/to/file_or_directory}}` + +- Display help: + +`git annex help` diff --git a/pages/common/git-annotate.md b/pages/common/git-annotate.md index 9ad786ea60..16c02acdfd 100644 --- a/pages/common/git-annotate.md +++ b/pages/common/git-annotate.md @@ -12,3 +12,7 @@ - Print a file with the author email and commit hash prepended to each line: `git annotate -e {{path/to/file}}` + +- Print only rows that match a regular expression: + +`git annotate -L :{{regexp}} {{path/to/file}}` diff --git a/pages/common/git-apply.md b/pages/common/git-apply.md index 5b5757916c..9687569edb 100644 --- a/pages/common/git-apply.md +++ b/pages/common/git-apply.md @@ -1,6 +1,7 @@ # git apply -> Apply a patch to files and/or to the index. +> Apply a patch to files and/or to the index without creating a commit. +> See also `git am`, which applies a patch and also creates a commit. > More information: . - Print messages about the patched files: @@ -13,7 +14,7 @@ - Apply a remote patch file: -`curl {{https://example.com/file.patch}} | git apply` +`curl -L {{https://example.com/file.patch}} | git apply` - Output diffstat for the input and apply the patch: diff --git a/pages/common/git-archive.md b/pages/common/git-archive.md index 84eb2a390b..28bdb68cda 100644 --- a/pages/common/git-archive.md +++ b/pages/common/git-archive.md @@ -3,11 +3,11 @@ > Create an archive of files from a named tree. > More information: . -- Create a tar archive from the contents of the current HEAD and print it to standard output: +- Create a tar archive from the contents of the current HEAD and print it to `stdout`: `git archive --verbose HEAD` -- Create a zip archive from the current HEAD and print it to standard output: +- Create a zip archive from the current HEAD and print it to `stdout`: `git archive --verbose --format=zip HEAD` diff --git a/pages/common/git-bundle.md b/pages/common/git-bundle.md index 577bf8852f..20d4705ca9 100644 --- a/pages/common/git-bundle.md +++ b/pages/common/git-bundle.md @@ -23,7 +23,7 @@ `git bundle verify {{path/to/file.bundle}}` -- Print to the standard output the list of references contained in a bundle: +- Print to `stdout` the list of references contained in a bundle: `git bundle unbundle {{path/to/file.bundle}}` diff --git a/pages/common/git-check-ignore.md b/pages/common/git-check-ignore.md index 381b6ca6ed..8a4e4ab6e0 100644 --- a/pages/common/git-check-ignore.md +++ b/pages/common/git-check-ignore.md @@ -1,6 +1,6 @@ # git check-ignore -> Analyze and debug Git ignore / exclude (".gitignore") files. +> Analyze and debug Git ignore/exclude (".gitignore") files. > More information: . - Check whether a file or directory is ignored: diff --git a/pages/common/git-checkout.md b/pages/common/git-checkout.md index ec4417032a..ca1bacc1c9 100644 --- a/pages/common/git-checkout.md +++ b/pages/common/git-checkout.md @@ -29,8 +29,8 @@ - Discard unstaged changes to a given file: -`git checkout {{filename}}` +`git checkout {{path/to/file}}` - Replace a file in the current directory with the version of it committed in a given branch: -`git checkout {{branch_name}} -- {{filename}}` +`git checkout {{branch_name}} -- {{path/to/file}}` diff --git a/pages/common/git-cherry-pick.md b/pages/common/git-cherry-pick.md index 88e8a82231..5ba02aec8b 100644 --- a/pages/common/git-cherry-pick.md +++ b/pages/common/git-cherry-pick.md @@ -18,4 +18,4 @@ - Add the changes of a commit to the working directory, without creating a commit: -`git cherry-pick -n {{commit}}` +`git cherry-pick --no-commit {{commit}}` diff --git a/pages/common/git-clone.md b/pages/common/git-clone.md index 19337afc08..d5cea71020 100644 --- a/pages/common/git-clone.md +++ b/pages/common/git-clone.md @@ -3,11 +3,7 @@ > Clone an existing repository. > More information: . -- Clone an existing repository: - -`git clone {{remote_repository_location}}` - -- Clone an existing repository into a specific directory: +- Clone an existing repository into a new directory (the default directory is the repository name): `git clone {{remote_repository_location}} {{path/to/directory}}` @@ -15,13 +11,17 @@ `git clone --recursive {{remote_repository_location}}` +- Clone only the `.git` directory of an existing repository: + +`git clone --no-checkout {{remote_repository_location}}` + - Clone a local repository: -`git clone -l {{path/to/local/repository}}` +`git clone --local {{path/to/local/repository}}` - Clone quietly: -`git clone -q {{remote_repository_location}}` +`git clone --quiet {{remote_repository_location}}` - Clone an existing repository only fetching the 10 most recent commits on the default branch (useful to save time): diff --git a/pages/common/git-column.md b/pages/common/git-column.md index 8c2aedccdd..eca34b3612 100644 --- a/pages/common/git-column.md +++ b/pages/common/git-column.md @@ -3,14 +3,14 @@ > Display data in columns. > More information: . -- Format the standard input as multiple columns: +- Format `stdin` as multiple columns: `ls | git column --mode={{column}}` -- Format the standard input as multiple columns with a maximum width of `100`: +- Format `stdin` as multiple columns with a maximum width of `100`: `ls | git column --mode=column --width={{100}}` -- Format the standard input as multiple columns with a maximum padding of `30`: +- Format `stdin` as multiple columns with a maximum padding of `30`: `ls | git column --mode=column --padding={{30}}` diff --git a/pages/common/git-commit.md b/pages/common/git-commit.md index c6258c53e1..ec0708bfcc 100644 --- a/pages/common/git-commit.md +++ b/pages/common/git-commit.md @@ -5,19 +5,19 @@ - Commit staged files to the repository with a message: -`git commit -m "{{message}}"` +`git commit --message "{{message}}"` - Commit staged files with a message read from a file: `git commit --file {{path/to/commit_message_file}}` -- Auto stage all modified files and commit with a message: +- Auto stage all modified and deleted files and commit with a message: -`git commit -a -m "{{message}}"` +`git commit --all --message "{{message}}"` -- Commit staged files and [S]ign them with the GPG key defined in `~/.gitconfig`: +- Commit staged files and sign them with the specified GPG key (or the one defined in the config file if no argument is specified): -`git commit -S -m "{{message}}"` +`git commit --gpg-sign {{key_id}} --message "{{message}}"` - Update the last commit by adding the currently staged changes, changing the commit's hash: @@ -29,4 +29,4 @@ - Create a commit, even if there are no staged files: -`git commit -m "{{message}}" --allow-empty` +`git commit --message "{{message}}" --allow-empty` diff --git a/pages/common/git-config.md b/pages/common/git-config.md index f3ceecb39b..86bf7fe426 100644 --- a/pages/common/git-config.md +++ b/pages/common/git-config.md @@ -8,7 +8,7 @@ `git config --list --local` -- List only global configuration entries (stored in `~/.gitconfig`): +- List only global configuration entries (stored in `~/.gitconfig` by default or in `$XDG_CONFIG_HOME/git/config` if such a file exists): `git config --list --global` diff --git a/pages/common/git-credential-cache.md b/pages/common/git-credential-cache.md new file mode 100644 index 0000000000..21ab0e095b --- /dev/null +++ b/pages/common/git-credential-cache.md @@ -0,0 +1,8 @@ +# git credential-cache + +> Git helper to temporarily store passwords in memory. +> More information: . + +- Store Git credentials for a specific amount of time: + +`git config credential.helper 'cache --timeout={{time_in_seconds}}'` diff --git a/pages/common/git-credential-store.md b/pages/common/git-credential-store.md new file mode 100644 index 0000000000..0c1f96a78f --- /dev/null +++ b/pages/common/git-credential-store.md @@ -0,0 +1,8 @@ +# git credential-store + +> `git` helper to store passwords on disk. +> More information: . + +- Store Git credentials in a specific file: + +`git config credential.helper 'store --file={{path/to/file}}'` diff --git a/pages/common/git-cvsexportcommit.md b/pages/common/git-cvsexportcommit.md new file mode 100644 index 0000000000..3bbdf04d16 --- /dev/null +++ b/pages/common/git-cvsexportcommit.md @@ -0,0 +1,8 @@ +# git cvsexportcommit + +> Export a single `Git` commit to a CVS checkout. +> More information: . + +- Merge a specific patch into CVS: + +`git cvsexportcommit -v -c -w {{path/to/project_cvs_checkout}} {{commit_sha1}}` diff --git a/pages/common/git-delete-squashed-branches.md b/pages/common/git-delete-squashed-branches.md new file mode 100644 index 0000000000..983dadc882 --- /dev/null +++ b/pages/common/git-delete-squashed-branches.md @@ -0,0 +1,13 @@ +# git delete-squashed-branches + +> Delete branches that have been "squashed-merged" into a specified branch and checkout. If no branch is specified, default to the currently checked out branch. +> Part of `git-extras`. +> More information: . + +- Delete all branches that were "squash-merged" into the current checked out branch: + +`git delete-squashed-branches` + +- Delete all branches that were "squash-merged" into a specific branch: + +`git delete-squashed-branches {{branch_name}}` diff --git a/pages/common/git-filter-repo.md b/pages/common/git-filter-repo.md index 4d7c38839c..8c24259dec 100644 --- a/pages/common/git-filter-repo.md +++ b/pages/common/git-filter-repo.md @@ -10,12 +10,12 @@ - Extract a single folder, keeping history: -`git-filter-repo --path {{path/to/folder}}` +`git filter-repo --path {{path/to/folder}}` - Remove a single folder, keeping history: -`git-filter-repo --path {{path/to/folder}} --invert-paths` +`git filter-repo --path {{path/to/folder}} --invert-paths` - Move everything from sub-folder one level up: -`git-filter-repo --path-rename {{path/to/folder/:}}` +`git filter-repo --path-rename {{path/to/folder/:}}` diff --git a/pages/common/git-fresh-branch.md b/pages/common/git-fresh-branch.md new file mode 100644 index 0000000000..30491abd3d --- /dev/null +++ b/pages/common/git-fresh-branch.md @@ -0,0 +1,9 @@ +# git fresh-branch + +> Create an empty local branch. +> Part of `git-extras`. +> More information: . + +- Create an empty local branch: + +`git fresh-branch {{branch_name}}` diff --git a/pages/common/git-guilt.md b/pages/common/git-guilt.md new file mode 100644 index 0000000000..0b006e72ba --- /dev/null +++ b/pages/common/git-guilt.md @@ -0,0 +1,29 @@ +# git guilt + +> Show total blame count for files with unstaged changes or calculate the change in blame between two revisions. +> Part of `git-extras`. +> More information: . + +- Show total blame count: + +`git guilt` + +- Calculate the change in blame between two revisions: + +`git guilt {{first_revision}} {{last_revision}}` + +- Show author emails instead of names: + +`git guilt --email` + +- Ignore whitespace only changes when attributing blame: + +`git guilt --ignore-whitespace` + +- Find blame delta over the last three weeks: + +`git guilt 'git log --until="3 weeks ago" --format="%H" -n 1'` + +- Find blame delta over the last three weeks (git 1.8.5+): + +`git guilt @{3.weeks.ago}` diff --git a/pages/common/git-ls-tree.md b/pages/common/git-ls-tree.md index ba67e6878b..6d4a0eb08f 100644 --- a/pages/common/git-ls-tree.md +++ b/pages/common/git-ls-tree.md @@ -14,3 +14,7 @@ - List only the filenames of the tree on a commit: `git ls-tree --name-only {{commit_hash}}` + +- Print the filenames of the current branch head in a tree structure (Note: `tree --fromfile` is not supported on Windows): + +`git ls-tree -r --name-only HEAD | tree --fromfile` diff --git a/pages/common/git-magic.md b/pages/common/git-magic.md new file mode 100644 index 0000000000..846eb94715 --- /dev/null +++ b/pages/common/git-magic.md @@ -0,0 +1,29 @@ +# git magic + +> Automate add, commit, and push routines. +> Part of `git-extras`. +> More information: . + +- Commit changes with a generated message: + +`git magic` + +- [a]dd untracked files and commit changes with a generated message: + +`git magic -a` + +- Commit changes with a custom [m]essage: + +`git magic -m "{{custom_commit_message}}"` + +- [e]dit the commit [m]essage before committing: + +`git magic -em "{{custom_commit_message}}"` + +- Commit changes and [p]ush to remote: + +`git magic -p` + +- Commit changes with a [f]orce [p]ush to remote: + +`git magic -fp` diff --git a/pages/common/git-merge-base.md b/pages/common/git-merge-base.md new file mode 100644 index 0000000000..a374d10d7c --- /dev/null +++ b/pages/common/git-merge-base.md @@ -0,0 +1,16 @@ +# git merge-base + +> Find a common ancestor of two commits. +> More information: . + +- Print the best common ancestor of two commits: + +`git merge-base {{commit_1}} {{commit_2}}` + +- Output all best common ancestors of two commits: + +`git merge-base --all {{commit_1}} {{commit_2}}` + +- Check if a commit is an ancestor of a specific commit: + +`git merge-base --is-ancestor {{ancestor_commit}} {{commit}}` diff --git a/pages/common/git-merge.md b/pages/common/git-merge.md index fc0356d772..59f50ed40c 100644 --- a/pages/common/git-merge.md +++ b/pages/common/git-merge.md @@ -9,7 +9,7 @@ - Edit the merge message: -`git merge -e {{branch_name}}` +`git merge --edit {{branch_name}}` - Merge a branch and create a merge commit: @@ -18,3 +18,7 @@ - Abort a merge in case of conflicts: `git merge --abort` + +- Merge using a specific strategy: + +`git merge --strategy {{strategy}} --strategy-option {{strategy_option}} {{branch_name}}` diff --git a/pages/common/git-mv.md b/pages/common/git-mv.md index 746b5816b6..33a2467b96 100644 --- a/pages/common/git-mv.md +++ b/pages/common/git-mv.md @@ -3,14 +3,14 @@ > Move or rename files and update the Git index. > More information: . -- Move file inside the repo and add the movement to the next commit: +- Move a file inside the repo and add the movement to the next commit: `git mv {{path/to/file}} {{new/path/to/file}}` -- Rename file and add renaming to the next commit: +- Rename a file or directory and add the renaming to the next commit: -`git mv {{filename}} {{new_filename}}` +`git mv {{path/to/file_or_directory}} {{path/to/destination}}` -- Overwrite the file in the target path if it exists: +- Overwrite the file or directory in the target path if it exists: -`git mv --force {{file}} {{target}}` +`git mv --force {{path/to/file_or_directory}} {{path/to/destination}}` diff --git a/pages/common/git-paste.md b/pages/common/git-paste.md new file mode 100644 index 0000000000..46ecb0384c --- /dev/null +++ b/pages/common/git-paste.md @@ -0,0 +1,13 @@ +# git paste + +> Send commits to a pastebin site using `pastebinit`. +> Part of `git-extras`. +> More information: . + +- Send the patches between the current branch and its upstream to a pastebin using `pastebinit`: + +`git paste` + +- Pass options to `git format-patch` in order to select a different set of commits (`@^` selects the parent of HEAD, and so the currently checked out commit is sent): + +`git paste {{@^}}` diff --git a/pages/common/git-psykorebase.md b/pages/common/git-psykorebase.md new file mode 100644 index 0000000000..5288ff8d9c --- /dev/null +++ b/pages/common/git-psykorebase.md @@ -0,0 +1,17 @@ +# git psykorebase + +> Rebase a branch on top of another using a merge commit and only one conflict handling. +> Part of `git-extras`. +> More information: . + +- Rebase the current branch on top of another using a merge commit and only one conflict handling: + +`git psykorebase {{upstream_branch}}` + +- Continue after conflicts have been handled: + +`git psykorebase --continue` + +- Specify the branch to rebase: + +`git psykorebase {{upstream_branch}} {{target_branch}}` diff --git a/pages/common/git-pull-request.md b/pages/common/git-pull-request.md new file mode 100644 index 0000000000..bb8fca075a --- /dev/null +++ b/pages/common/git-pull-request.md @@ -0,0 +1,9 @@ +# git pull-request + +> Create a pull request for a project on GitHub. +> Part of `git-extras`. +> More information: . + +- Create a pull request for a project on GitHub: + +`git pull-request {{target_branch}}` diff --git a/pages/common/git-rebase-patch.md b/pages/common/git-rebase-patch.md new file mode 100644 index 0000000000..0b72f6aa41 --- /dev/null +++ b/pages/common/git-rebase-patch.md @@ -0,0 +1,9 @@ +# git rebase-patch + +> Find the commit the patch applies to and do a rebase. +> Part of `git-extras`. +> More information: . + +- Find the commit the patch applies to and do a rebase: + +`git rebase-patch {{patch_file}}` diff --git a/pages/common/git-reset.md b/pages/common/git-reset.md index 70ccedc8aa..ab7630b561 100644 --- a/pages/common/git-reset.md +++ b/pages/common/git-reset.md @@ -10,7 +10,7 @@ - Unstage specific file(s): -`git reset {{path/to/file(s)}}` +`git reset {{path/to/file1 path/to/file2 ...}}` - Interactively unstage portions of a file: diff --git a/pages/common/git-revert.md b/pages/common/git-revert.md index 83ed1b7e41..4767bc3943 100644 --- a/pages/common/git-revert.md +++ b/pages/common/git-revert.md @@ -11,6 +11,10 @@ `git revert HEAD~{{4}}` +- Revert a specific commit: + +`git revert {{0c01a9}}` + - Revert multiple commits: `git revert {{branch_name~5..branch_name~2}}` diff --git a/pages/common/git-rscp.md b/pages/common/git-rscp.md new file mode 100644 index 0000000000..ab9a9ea8dc --- /dev/null +++ b/pages/common/git-rscp.md @@ -0,0 +1,13 @@ +# git rscp + +> Reverse `git scp` - copy files from the working directory of a remote repository to the current working tree. +> Part of `git-extras`. +> More information: . + +- Copy specific files from a remote: + +`git rscp {{remote_name}} {{path/to/file1 path/to/file2 ...}}` + +- Copy a specific directory from a remote: + +`git rscp {{remote_name}} {{path/to/directory}}` diff --git a/pages/common/git-stash.md b/pages/common/git-stash.md index 0ba7bcbd2d..66ecb7f30b 100644 --- a/pages/common/git-stash.md +++ b/pages/common/git-stash.md @@ -5,7 +5,7 @@ - Stash current changes, except new (untracked) files: -`git stash [push -m {{optional_stash_message}}]` +`git stash push -m {{optional_stash_message}}` - Stash current changes, including new (untracked) files: @@ -19,18 +19,18 @@ `git stash list` +- Show the changes as a patch between the stash (default is stash@{0}) and the commit back when stash entry was first created: + +`git stash show -p {{stash@{0}}}` + - Apply a stash (default is the latest, named stash@{0}): `git stash apply {{optional_stash_name_or_commit}}` -- Apply a stash (default is stash@{0}), and remove it from the stash list if applying doesn't cause conflicts: +- Drop or apply a stash (default is stash@{0}) and remove it from the stash list if applying doesn't cause conflicts: `git stash pop {{optional_stash_name}}` -- Drop a stash (default is stash@{0}): - -`git stash drop {{optional_stash_name}}` - - Drop all stashes: `git stash clear` diff --git a/pages/common/git-status.md b/pages/common/git-status.md index d243b6645f..50a0d4d03c 100644 --- a/pages/common/git-status.md +++ b/pages/common/git-status.md @@ -10,12 +10,20 @@ - Give output in [s]hort format: -`git status -s` +`git status --short` + +- Show the [b]ranch and tracking info: + +`git status --branch` + +- Show output in [s]hort format along with [b]ranch info: + +`git status --short --branch` + +- Show the number of entries currently stashed away: + +`git status --show-stash` - Don't show untracked files in the output: `git status --untracked-files=no` - -- Show output in [s]hort format along with [b]ranch info: - -`git status -sb` diff --git a/pages/common/git-stripspace.md b/pages/common/git-stripspace.md index 3ca7aa82f2..80bae31367 100644 --- a/pages/common/git-stripspace.md +++ b/pages/common/git-stripspace.md @@ -1,6 +1,6 @@ # git stripspace -> Read text (e.g. commit messages, notes, tags, and branch descriptions) from the standard input and clean it into the manner used by Git. +> Read text (e.g. commit messages, notes, tags, and branch descriptions) from `stdin` and clean it into the manner used by Git. > More information: . - Trim whitespace from a file: diff --git a/pages/common/git.md b/pages/common/git.md index 1c5d93d797..c21ebcdbd3 100644 --- a/pages/common/git.md +++ b/pages/common/git.md @@ -1,7 +1,7 @@ # git > Distributed version control system. -> Some subcommands such as `commit`, `add`, `branch`, `checkout`, `push`, etc. have their own usage documentation, accessible via `tldr git subcommand`. +> Some subcommands such as `commit`, `add`, `branch`, `checkout`, `push`, etc. have their own usage documentation. > More information: . - Check the Git version: diff --git a/pages/common/gitlab-ctl.md b/pages/common/gitlab-ctl.md index 00043fdd21..e6575137a9 100644 --- a/pages/common/gitlab-ctl.md +++ b/pages/common/gitlab-ctl.md @@ -1,6 +1,6 @@ # gitlab-ctl -> CLI tool for managing the GitLab omnibus. +> Manage the GitLab omnibus. > More information: . - Display the status of every service: diff --git a/pages/common/gitlab-runner.md b/pages/common/gitlab-runner.md index 5005faf71b..bd198b4b36 100644 --- a/pages/common/gitlab-runner.md +++ b/pages/common/gitlab-runner.md @@ -1,6 +1,6 @@ # gitlab-runner -> CLI tool for managing GitLab runners. +> Manage GitLab runners. > More information: . - Register a runner: diff --git a/pages/common/gitlab.md b/pages/common/gitlab.md index 6e28b8da2c..9ba2c0844a 100644 --- a/pages/common/gitlab.md +++ b/pages/common/gitlab.md @@ -1,6 +1,6 @@ # gitlab -> Ruby wrapper and CLI for the GitLab API. +> Ruby wrapper for the GitLab API. > Some subcommands such as `gitlab ctl` have their own usage documentation. > More information: . diff --git a/pages/common/gitlint.md b/pages/common/gitlint.md index dd3fd4c7d2..9e211fd978 100644 --- a/pages/common/gitlint.md +++ b/pages/common/gitlint.md @@ -11,7 +11,7 @@ `gitlint --commits {{single_refspec_argument}}` -- Path to a directory or python module with extra user-defined rules: +- Path to a directory or Python module with extra user-defined rules: `gitlint --extra-path {{path/to/directory}}` diff --git a/pages/common/gitsome.md b/pages/common/gitsome.md index bec712673d..261cbaaf59 100644 --- a/pages/common/gitsome.md +++ b/pages/common/gitsome.md @@ -12,7 +12,7 @@ `gh configure` -- List notifications for the current account (as would be seen in https://github.com/notifications): +- List notifications for the current account (as would be seen in ): `gh notifications` diff --git a/pages/common/gitui.md b/pages/common/gitui.md new file mode 100644 index 0000000000..f45da5f520 --- /dev/null +++ b/pages/common/gitui.md @@ -0,0 +1,36 @@ +# gitui + +> Terminal UI for Git. +> More information: . + +- Set the color theme (defaults to `theme.ron`): + +`gitui --theme {{theme}}` + +- Store logging output into a cache directory: + +`gitui --logging` + +- Use notify-based file system watcher instead of tick-based update: + +`gitui --watcher` + +- Generate a bug report: + +`gitui --bugreport` + +- Set the Git directory: + +`gitui --directory {{path/to/directory}}` + +- Set the working directory: + +`gitui --workdir {{path/to/directory}}` + +- Display help: + +`gitui --help` + +- Display version: + +`gitui --version` diff --git a/pages/common/gitwatch.md b/pages/common/gitwatch.md new file mode 100644 index 0000000000..23c0113f59 --- /dev/null +++ b/pages/common/gitwatch.md @@ -0,0 +1,16 @@ +# gitwatch + +> Automatically commit file or directory changes to a git repository. +> More information: . + +- Automatically commit any changes made to a file or directory: + +`gitwatch {{path/to/file_or_directory}}` + +- Automatically commit changes and push them to a remote repository: + +`gitwatch -r {{remote_name}} {{path/to/file_or_directory}}` + +- Automatically commit changes and push them to a specific branch of a remote repository: + +`gitwatch -r {{remote_name}} -b {{branch_name}} {{path/to/file_or_directory}}` diff --git a/pages/common/glab-alias.md b/pages/common/glab-alias.md index 93d646e862..7b3fad6b39 100644 --- a/pages/common/glab-alias.md +++ b/pages/common/glab-alias.md @@ -1,6 +1,6 @@ # glab alias -> Manage GitLab CLI command aliases from the command-line. +> Manage GitLab CLI command aliases. > More information: . - Display the subcommand help: diff --git a/pages/common/glab-auth.md b/pages/common/glab-auth.md index ba5e6e5dbc..1ca3fd528b 100644 --- a/pages/common/glab-auth.md +++ b/pages/common/glab-auth.md @@ -1,6 +1,6 @@ # glab auth -> Authenticate with a GitLab host from the command-line. +> Authenticate with a GitLab host. > More information: . - Log in with interactive prompt: diff --git a/pages/common/glab-issue.md b/pages/common/glab-issue.md index 04ded5cc83..adf0a37b26 100644 --- a/pages/common/glab-issue.md +++ b/pages/common/glab-issue.md @@ -1,6 +1,6 @@ # glab issue -> Manage GitLab issues from the command-line. +> Manage GitLab issues. > More information: . - Display a specific issue: diff --git a/pages/common/glab-mr-create.md b/pages/common/glab-mr-create.md index d6e52bf1d7..6160084377 100644 --- a/pages/common/glab-mr-create.md +++ b/pages/common/glab-mr-create.md @@ -1,6 +1,6 @@ # glab mr create -> Manage GitLab merge requests from the command-line. +> Manage GitLab merge requests. > More information: . - Interactively create a merge request: diff --git a/pages/common/glab-mr.md b/pages/common/glab-mr.md index befb918f10..a672a91873 100644 --- a/pages/common/glab-mr.md +++ b/pages/common/glab-mr.md @@ -1,6 +1,6 @@ # glab mr -> Manage GitLab merge requests from the command-line. +> Manage GitLab merge requests. > Some subcommands such as `glab mr create` have their own usage documentation. > More information: . diff --git a/pages/common/glab-release.md b/pages/common/glab-release.md index 908f79dfe9..7efabc0bd4 100644 --- a/pages/common/glab-release.md +++ b/pages/common/glab-release.md @@ -1,6 +1,6 @@ # glab release -> Manage GitLab releases from the command-line. +> Manage GitLab releases. > More information: . - List releases in a Gitlab repository, limited to 30 items: diff --git a/pages/common/glab-repo.md b/pages/common/glab-repo.md index fc18081b9d..726e35d61e 100644 --- a/pages/common/glab-repo.md +++ b/pages/common/glab-repo.md @@ -1,6 +1,6 @@ # glab repo -> Work with GitLab repositories on the command-line. +> Work with GitLab repositories. > More information: . - Create a new repository (if the repository name is not set, the default name will be the name of the current directory): diff --git a/pages/common/glab.md b/pages/common/glab.md index 474fdfdaf2..e6895af009 100644 --- a/pages/common/glab.md +++ b/pages/common/glab.md @@ -1,6 +1,6 @@ # glab -> Work seamlessly with GitLab from the command-line. +> Work seamlessly with GitLab. > Some subcommands such as `glab config` have their own usage documentation. > More information: . diff --git a/pages/common/gladtex.md b/pages/common/gladtex.md new file mode 100644 index 0000000000..1900117bcb --- /dev/null +++ b/pages/common/gladtex.md @@ -0,0 +1,33 @@ +# gladtex + +> A LaTeX formula preprocessor for HTML files. +> It converts LaTeX formulas to images. +> More information: . + +- Convert to html: + +`gladtex {{path/to/input.htex}}` + +- Save the converted file to a specific location: + +`gladtex {{path/to/input.htex}} -o {{path/to/output.html}}` + +- Save the generated images to a specific [d]irectory: + +`gladtex {{path/to/input.htex}} -d {{path/to/image_output_directory}}` + +- Set image [r]esolution (in dpi, default is 100): + +`gladtex {{path/to/input.htex}} -r {{resolution}}` + +- [k]eep LaTeX files after conversion: + +`gladtex {{path/to/input.htex}} -k` + +- Set [b]ackground and [f]oreground color of the images: + +`gladtex {{path/to/input.htex}} -b {{background_color}} -f {{foreground_color}}` + +- Convert Markdown to HTML using `pandoc` and `gladtex`: + +`pandoc -s -t html --gladtex {{path/to/input.md}} | gladtex -o {{path/to/output.html}}` diff --git a/pages/common/gnatprep.md b/pages/common/gnatprep.md index 0b74656f46..3ad475390c 100644 --- a/pages/common/gnatprep.md +++ b/pages/common/gnatprep.md @@ -7,6 +7,6 @@ `gnatprep {{source_file}} {{target_file}} {{definitions_file}}` -- Specify symbol values in the command line: +- Specify symbol values in the command-line: `gnatprep -D{{name}}={{value}} {{source_file}} {{target_file}}` diff --git a/pages/common/gnmic-get.md b/pages/common/gnmic-get.md index 300a51dd01..524041852a 100644 --- a/pages/common/gnmic-get.md +++ b/pages/common/gnmic-get.md @@ -15,6 +15,6 @@ `gnmic -a {{ip:port}} get --prefix {{prefix}} --path {{path1}} --path {{path2}}` -- Query the device state and specify reponse encoding (json_ietf): +- Query the device state and specify response encoding (json_ietf): `gnmic -a {{ip:port}} get --path {{path}} --encoding json_ietf` diff --git a/pages/common/gnomon.md b/pages/common/gnomon.md index 54d96d7711..12fa133757 100644 --- a/pages/common/gnomon.md +++ b/pages/common/gnomon.md @@ -3,7 +3,7 @@ > Utility to annotate console logging statements with timestamps and find slow processes. > More information: . -- Use UNIX (or DOS) pipes to pipe the `stdout` of any command through gnomon: +- Use UNIX (or DOS) pipes to pipe `stdout` of any command through gnomon: `{{npm test}} | gnomon` diff --git a/pages/common/goimports.md b/pages/common/goimports.md index 6646cf68ee..37ff4f0f95 100644 --- a/pages/common/goimports.md +++ b/pages/common/goimports.md @@ -7,7 +7,7 @@ `goimports {{path/to/file}}.go` -- Write the result back to the source file instead of the standard output: +- Write the result back to the source file instead of `stdout`: `goimports -w {{path/to/file}}.go` diff --git a/pages/common/gops.md b/pages/common/gops.md index d6f4c26408..60cf1b4c0f 100644 --- a/pages/common/gops.md +++ b/pages/common/gops.md @@ -1,6 +1,6 @@ # gops -> CLI tool which lists and diagnoses Go processes currently running on your system. +> List and diagnose Go processes currently running on your system. > More information: . - Print all go processes running locally: diff --git a/pages/common/gpg2.md b/pages/common/gpg2.md index 1ff99ab7d2..8f83359fba 100644 --- a/pages/common/gpg2.md +++ b/pages/common/gpg2.md @@ -16,7 +16,7 @@ `gpg2 --symmetric {{path/to/doc.txt}}` -- Decrypt a specified file, writing the result to the standard output: +- Decrypt a specified file, writing the result to `stdout`: `gpg2 --decrypt {{path/to/doc.txt.gpg}}` @@ -24,10 +24,10 @@ `gpg2 --import {{path/to/public_key.gpg}}` -- Export the public key of a specified email address to the standard output: +- Export the public key of a specified email address to `stdout`: `gpg2 --export --armor {{alice@example.com}}` -- Export the private key with a specified email address to the standard output: +- Export the private key with a specified email address to `stdout`: `gpg2 --export-secret-keys --armor {{alice@example.com}}` diff --git a/pages/common/grex.md b/pages/common/grex.md index 2b616fd02f..fa449fe666 100644 --- a/pages/common/grex.md +++ b/pages/common/grex.md @@ -1,6 +1,6 @@ # grex -> Simple command-line tool to generate regular expressions. +> Generate regular expressions. > More information: . - Generate a simple regular expression: diff --git a/pages/common/grpcurl.md b/pages/common/grpcurl.md index f9e73827c9..ef71a31306 100644 --- a/pages/common/grpcurl.md +++ b/pages/common/grpcurl.md @@ -1,6 +1,7 @@ # grpcurl -> Like cURL, but for gRPC: CLI tool for interacting with gRPC servers. +> Interact with gRPC servers. +> Like `curl`, but for gRPC. > More information: . - Send an empty request: diff --git a/pages/common/gst-inspect-1.0.md b/pages/common/gst-inspect-1.0.md new file mode 100644 index 0000000000..4f74e45dd7 --- /dev/null +++ b/pages/common/gst-inspect-1.0.md @@ -0,0 +1,12 @@ +# gst-inspect-1.0 + +> Print information on GStreamer plugins. +> More information: . + +- Print information on a plugin: + +`gst-inspect-1.0 {{plugin}}` + +- List hardware transcoding capabilities of your device: + +`gst-inspect-1.0 {{vaapi|nvcodec}}` diff --git a/pages/common/gst-launch-1.0.md b/pages/common/gst-launch-1.0.md new file mode 100644 index 0000000000..6c7b0e5c15 --- /dev/null +++ b/pages/common/gst-launch-1.0.md @@ -0,0 +1,20 @@ +# gst-launch-1.0 + +> Build and run a GStreamer pipeline. +> More information: . + +- Play test video in a window: + +`gst-launch-1.0 videotestsrc ! xvimagesink` + +- Play a media file in a window: + +`gst-launch-1.0 playbin uri={{protocol}}://{{host}}/{{path/to/file}}` + +- Re-encode a media file: + +`gst-launch-1.0 filesrc location={{path/to/file}} ! {{file_type}}demux ! {{codec_type}}dec ! {{codec_type}}enc ! {{file_type}}mux ! filesink location={{path/to/file}}` + +- Stream a file to an RTSP server: + +`gst-launch-1.0 filesrc location={{path/to/file}} ! rtspclientsink location=rtsp://{{host_IP}}/{{path/to/file}}` diff --git a/pages/common/gsutil.md b/pages/common/gsutil.md index dbe4187562..043f6d09df 100644 --- a/pages/common/gsutil.md +++ b/pages/common/gsutil.md @@ -1,7 +1,7 @@ # gsutil -> The gsutil CLI lets you access Google Cloud Storage from the command line. -> You can use gsutil to do a wide range of bucket and object management tasks. +> Access Google Cloud Storage. +> You can use `gsutil` to do a wide range of bucket and object management tasks. > More information: . - List all buckets in a project you are logged into: diff --git a/pages/common/gulp.md b/pages/common/gulp.md index 0bd57e2d25..18ee2eaa17 100644 --- a/pages/common/gulp.md +++ b/pages/common/gulp.md @@ -1,7 +1,7 @@ # gulp > JavaScript task runner and streaming build system. -> Tasks are defined within gulpfile.js at the project root. +> Tasks are defined within `gulpfile.js` at the project root. > More information: . - Run the default task: @@ -11,3 +11,7 @@ - Run individual tasks: `gulp {{task}} {{othertask}}` + +- Print the task dependency tree for the loaded gulpfile: + +`gulp --tasks` diff --git a/pages/common/gunzip.md b/pages/common/gunzip.md index 80b2d0edf9..e033682814 100644 --- a/pages/common/gunzip.md +++ b/pages/common/gunzip.md @@ -18,3 +18,7 @@ - List the contents of a compressed file: `gunzip --list {{file.txt.gz}}` + +- Decompress an archive from `stdin`: + +`cat {{path/to/archive.gz}} | gunzip` diff --git a/pages/common/hangups.md b/pages/common/hangups.md index 27f44b0a36..bbe0d8bf7f 100644 --- a/pages/common/hangups.md +++ b/pages/common/hangups.md @@ -3,7 +3,7 @@ > Third party command-line client for Google Hangouts. > More information: . -- Start hangups: +- Start `hangups`: `hangups` diff --git a/pages/linux/hashcat.md b/pages/common/hashcat.md similarity index 100% rename from pages/linux/hashcat.md rename to pages/common/hashcat.md diff --git a/pages/common/hashid.md b/pages/common/hashid.md index 3f4b70e7da..09deecb2b0 100644 --- a/pages/common/hashid.md +++ b/pages/common/hashid.md @@ -3,7 +3,7 @@ > Python3 program that identifies data and password hashes. > More information: . -- Identify hashes from standard input (through typing, copying and pasting, or piping the hash into the program): +- Identify hashes from `stdin` (through typing, copying and pasting, or piping the hash into the program): `hashid` @@ -23,6 +23,6 @@ `hashid --mode --john {{hash}}` -- Save output to a file instead of printing to standard output: +- Save output to a file instead of printing to `stdout`: `hashid --outfile {{path/to/output.txt}} {{hash}}` diff --git a/pages/common/hd.md b/pages/common/hd.md new file mode 100644 index 0000000000..8424674e22 --- /dev/null +++ b/pages/common/hd.md @@ -0,0 +1,8 @@ +# hd + +> This command is an alias of `hexdump`. +> More information: . + +- View documentation for the original command: + +`tldr hexdump` diff --git a/pages/common/head.md b/pages/common/head.md index 358fcff6ab..0ecfe271e4 100644 --- a/pages/common/head.md +++ b/pages/common/head.md @@ -1,20 +1,8 @@ # head > Output the first part of files. -> More information: . +> More information: . - Output the first few lines of a file: -`head --lines {{count}} {{path/to/file}}` - -- Output the first few bytes of a file: - -`head --bytes {{count}} {{path/to/file}}` - -- Output everything but the last few lines of a file: - -`head --lines -{{count}} {{path/to/file}}` - -- Output everything but the last few bytes of a file: - -`head --bytes -{{count}} {{path/to/file}}` +`head -n {{count}} {{path/to/file}}` diff --git a/pages/common/heroku.md b/pages/common/heroku.md index bd507af18e..c2d5704441 100644 --- a/pages/common/heroku.md +++ b/pages/common/heroku.md @@ -1,6 +1,6 @@ # heroku -> Create and manage Heroku apps from the command-line. +> Create and manage Heroku apps. > More information: . - Log in to your Heroku account: diff --git a/pages/common/hg.md b/pages/common/hg.md index f4a6d8f427..239b543123 100644 --- a/pages/common/hg.md +++ b/pages/common/hg.md @@ -1,10 +1,10 @@ # hg -> A command-line interface for Mercurial, a distributed source control management system. +> Mercurial - a distributed source control management system. > Some subcommands such as `hg commit` have their own usage documentation. > More information: . -- Execute Mercurial command: +- Execute a Mercurial command: `hg {{command}}` diff --git a/pages/common/holehe.md b/pages/common/holehe.md new file mode 100644 index 0000000000..752f7f9c90 --- /dev/null +++ b/pages/common/holehe.md @@ -0,0 +1,12 @@ +# holehe + +> Holehe checks if an email is attached to an account on sites like Twitter, Instagram, Imgur and over 120 others. +> More information: . + +- Show status across all supported websites for the specified email address: + +`holehe {{username@example.org}}` + +- Show status for only sites where the specified email address is in use: + +`holehe {{username@example.org}} --only-used` diff --git a/pages/common/hostess.md b/pages/common/hostess.md index 2b5bb054c8..e7c70d251e 100644 --- a/pages/common/hostess.md +++ b/pages/common/hostess.md @@ -1,6 +1,6 @@ # hostess -> An idempotent command-line utility for managing the `/etc/hosts` file. +> Manage the `/etc/hosts` file. > More information: . - List domains, target IP addresses and on/off status: diff --git a/pages/common/hping.md b/pages/common/hping.md index a171899d43..28dd1db974 100644 --- a/pages/common/hping.md +++ b/pages/common/hping.md @@ -1,25 +1,8 @@ # hping -> Command-line oriented TCP/IP packet assembler and analyzer. -> Inspired by the `ping` command. -> More information: . +> This command is an alias of `hping3`. +> More information: . -- Ping localhost over TCP: +- View documentation for the original command: -`hping3 {{localhost}}` - -- Ping an IP address over TCP on a specific port: - -`hping3 -p {{80}} -S {{192.168.1.1}}` - -- Ping an IP address over UDP on port 80: - -`hping3 --udp -p {{80}} -S {{192.168.1.1}}` - -- Scan a set of TCP ports on a specific IP address: - -`hping3 --scan {{80,3000,9000}} -S {{192.168.1.1}}` - -- Perform a charge test on port 80: - -`hping3 --flood -p {{80}} -S {{192.168.1.1}}` +`tldr hping3` diff --git a/pages/common/hping3.md b/pages/common/hping3.md index 7794e3c73d..4c66d76493 100644 --- a/pages/common/hping3.md +++ b/pages/common/hping3.md @@ -8,6 +8,10 @@ `hping3 --icmp --count {{4}} {{ip_or_hostname}}` +- Ping an IP address over UDP on port 80: + +`hping3 --udp --destport {{80}} --syn {{ip_or_hostname}}` + - Scan TCP port 80, scanning from the specific local source port 5090: `hping3 --verbose --syn --destport {{80}} --baseport {{5090}} {{ip_or_hostname}}` @@ -16,6 +20,14 @@ `hping3 --traceroute --verbose --syn --destport {{80}} {{ip_or_hostname}}` +- Scan a set of TCP ports on a specific IP address: + +`hping3 --scan {{80,3000,9000}} --syn {{ip_or_hostname}}` + - Perform a TCP ACK scan to check if a given host is alive: -`hping3 --count {{2}} --verbose --destport {{80}} -A {{ip_or_hostname}}` +`hping3 --count {{2}} --verbose --destport {{80}} --ack {{ip_or_hostname}}` + +- Perform a charge test on port 80: + +`hping3 --flood --destport {{80}} --syn {{ip_or_hostname}}` diff --git a/pages/common/html5validator.md b/pages/common/html5validator.md index f30fc0f1db..be0c5d66dd 100644 --- a/pages/common/html5validator.md +++ b/pages/common/html5validator.md @@ -1,6 +1,6 @@ # html5validator -> A command-line tool for testing HTML5 validity. +> Validate HTML5. > More information: . - Validate a specific file: diff --git a/pages/common/htop.md b/pages/common/htop.md index b2841eadc2..383ea10f58 100644 --- a/pages/common/htop.md +++ b/pages/common/htop.md @@ -3,11 +3,11 @@ > Display dynamic real-time information about running processes. An enhanced version of `top`. > More information: . -- Start htop: +- Start `htop`: `htop` -- Start htop displaying processes owned by a specific user: +- Start `htop` displaying processes owned by a specific user: `htop --user {{username}}` @@ -15,6 +15,10 @@ `htop --sort {{sort_item}}` +- Start `htop` with the specified delay between updates, in tenths of a second (i.e. 50 = 5 seconds): + +`htop --delay {{50}}` + - See interactive commands while running htop: `?` diff --git a/pages/common/hugo.md b/pages/common/hugo.md index b2c24d2200..800c7c1676 100644 --- a/pages/common/hugo.md +++ b/pages/common/hugo.md @@ -7,13 +7,13 @@ `hugo new site {{path/to/site}}` -- Create a new Hugo theme (themes may also be downloaded from https://themes.gohugo.io/): +- Create a new Hugo theme (themes may also be downloaded from ): `hugo new theme {{theme_name}}` - Create a new page: -`hugo new {{section_name}}/{{filename}}` +`hugo new {{section_name}}/{{page_name}}` - Build a site to the `./public/` directory: @@ -23,6 +23,10 @@ `hugo --buildDrafts` +- Build a site on your local IP: + +`hugo server --bind {{local-ip}} --baseURL {{http://local-ip}}` + - Build a site to a given directory: `hugo --destination {{path/to/destination}}` diff --git a/pages/common/idea.md b/pages/common/idea.md new file mode 100644 index 0000000000..7ecdac2fc6 --- /dev/null +++ b/pages/common/idea.md @@ -0,0 +1,24 @@ +# idea + +> JetBrains Java and Kotlin IDE. +> More information: . + +- Open the current directory in IntelliJ IDEA: + +`idea {{path/to/directory}}` + +- Open a specific file or directory in IntelliJ IDEA: + +`idea {{path/to/file_or_directory}}` + +- Open the diff viewer to compare up to 3 files: + +`idea diff {{path/to/file1}} {{path/to/file2}}` + +- Open the merge dialog to perform a two-way file merge: + +`idea merge {{path/to/file1}} {{path/to/file2}} {{path/to/output}}` + +- Run code inspections on a project: + +`idea inspect {{path/to/project_directory}} {{path/to/inspection_profile}} {{path/to/output}}` diff --git a/pages/common/identify.md b/pages/common/identify.md index c133f03104..b9f31cdbad 100644 --- a/pages/common/identify.md +++ b/pages/common/identify.md @@ -1,6 +1,7 @@ # identify -> Command-line utility of Image Magick project to describe the format and characteristics of one or more image files. +> Describe the format and characteristics of one or more image files. +> Part of ImageMagick. > More information: . - Describe the format and basic characteristics of an image: @@ -11,6 +12,6 @@ `identify -verbose {{path/to/image}}` -- Collect dimensions of all JPEG files under current directory: +- Collect dimensions of all JPEG files in the current directory and save them into a CSV file: -`identify -format "%f,%w,%h\n" *.{{jpg}} > {{path/to/filelist.csv}}` +`identify -format "{{%f,%w,%h\n}}" {{*.jpg}} > {{path/to/filelist.csv}}` diff --git a/pages/common/ifs.md b/pages/common/ifs.md new file mode 100644 index 0000000000..0dc5020ca9 --- /dev/null +++ b/pages/common/ifs.md @@ -0,0 +1,21 @@ +# IFS + +> IFS (Internal Field Separator) is a special environment variable that defines the delimiter used for word splitting in Unix shells. +> The default value of IFS is a space, tab, and newline. The three characters serve as delimiters. +> More information: . + +- View the current IFS value: + +`echo "$IFS"` + +- Change the IFS value: + +`IFS="{{:}}"` + +- Reset IFS to default: + +`IFS=$' \t\n'` + +- Temporarily change the IFS value in a subshell: + +`(IFS="{{:}}"; echo "{{one:two:three}}")` diff --git a/pages/common/ignite.md b/pages/common/ignite.md index 722d836bd9..73fdb30478 100644 --- a/pages/common/ignite.md +++ b/pages/common/ignite.md @@ -9,7 +9,7 @@ - Generate file from a plugin: -`ignite generate {{plugin_name}} {{filename}}` +`ignite generate {{plugin_name}} {{path/to/file}}` - Add an Ignite plugin to the project: diff --git a/pages/osx/imgcat.md b/pages/common/imgcat.md similarity index 66% rename from pages/osx/imgcat.md rename to pages/common/imgcat.md index 4b76e0be7c..15cf203dc5 100644 --- a/pages/osx/imgcat.md +++ b/pages/common/imgcat.md @@ -1,9 +1,9 @@ # imgcat -> A utility to display images directly on the command-line. +> Display images on the command-line. > Requires a compatible terminal such as iTerm2. > More information: . - Display an image on the command-line: -`imgcat {{filename}}` +`imgcat {{path/to/file}}` diff --git a/pages/common/import.md b/pages/common/import.md index 75468662e9..b6430003a5 100644 --- a/pages/common/import.md +++ b/pages/common/import.md @@ -1,17 +1,17 @@ # import > Capture some or all of an X server screen, and save the image to a file. -> Part of the ImageMagick library. +> Part of ImageMagick. > More information: . -- Capture the entire X server screen in the PostScript image format: +- Capture the entire X server screen into a PostScript file: -`import -window root {{output.postscript}}` +`import -window root {{path/to/output.ps}}` -- Capture contents of a remote X server screen in the PNG format: +- Capture contents of a remote X server screen into a PNG image: -`import -window root -display {{remote_host}}:{{screen}}.{{display}} {{output.png}}` +`import -window root -display {{remote_host}}:{{screen}}.{{display}} {{path/to/output.png}}` -- Capture a specific window, given its ID as displayed by `xwininfo`, into the JPEG format: +- Capture a specific window given its ID as displayed by `xwininfo` into a JPEG image: -`import -window {{window_id}} {{output.jpg}}` +`import -window {{window_id}} {{path/to/output.jpg}}` diff --git a/pages/common/ipfs.md b/pages/common/ipfs.md index acc2459d56..9c76397079 100644 --- a/pages/common/ipfs.md +++ b/pages/common/ipfs.md @@ -6,7 +6,7 @@ - Add a file from local to the filesystem, pin it and print the relative hash: -`ipfs add {{filename}}` +`ipfs add {{path/to/file}}` - Add a directory and its files recursively from local to the filesystem and print the relative hash: @@ -14,7 +14,7 @@ - Save a remote file and give it a name but not pin it: -`ipfs get {{hash}} -o {{filename}}` +`ipfs get {{hash}} -o {{path/to/file}}` - Pin a remote file locally: diff --git a/pages/common/irb.md b/pages/common/irb.md new file mode 100644 index 0000000000..e6fa9750a4 --- /dev/null +++ b/pages/common/irb.md @@ -0,0 +1,9 @@ +# irb + +> Interactive Ruby shell. +> Evaluate Ruby code read from `stdin`. +> More information: . + +- Start the interactive shell: + +`irb` diff --git a/pages/common/jarsigner.md b/pages/common/jarsigner.md index c7903c0f66..b0ab5c1652 100644 --- a/pages/common/jarsigner.md +++ b/pages/common/jarsigner.md @@ -1,7 +1,7 @@ # jarsigner > Sign and verify Java archive (JAR) files. -> More information: . +> More information: . - Sign a JAR file: diff --git a/pages/common/java.md b/pages/common/java.md index 2575b1b9ca..f0e4c81947 100644 --- a/pages/common/java.md +++ b/pages/common/java.md @@ -1,7 +1,7 @@ # java > Java application launcher. -> More information: . +> More information: . - Execute a java `.class` file that contains a main method by using just the class name: diff --git a/pages/common/javac.md b/pages/common/javac.md index c9e5793dd6..3f0e49b34d 100644 --- a/pages/common/javac.md +++ b/pages/common/javac.md @@ -1,7 +1,7 @@ # javac > Java application compiler. -> More information: . +> More information: . - Compile a `.java` file: diff --git a/pages/common/javadoc.md b/pages/common/javadoc.md index 86516b0b68..9e029dc2fc 100644 --- a/pages/common/javadoc.md +++ b/pages/common/javadoc.md @@ -1,7 +1,7 @@ # javadoc > Generate Java API documentation in HTML format from source code. -> More information: . +> More information: . - Generate documentation for Java source code and save the result in a directory: diff --git a/pages/common/javap.md b/pages/common/javap.md index 242e9a0422..0e8dfb6ce7 100644 --- a/pages/common/javap.md +++ b/pages/common/javap.md @@ -1,7 +1,7 @@ # javap > Disassemble one or more class files and list them. -> More information: . +> More information: . - Disassemble and list a `.class` file: diff --git a/pages/common/jdeps.md b/pages/common/jdeps.md index 77669ff62f..a2ed96b4c6 100644 --- a/pages/common/jdeps.md +++ b/pages/common/jdeps.md @@ -1,7 +1,7 @@ # jdeps > Java class dependency analyzer. -> More information: . +> More information: . - Analyze the dependencies of a `.jar` or `.class` file: diff --git a/pages/common/jf.md b/pages/common/jf.md new file mode 100644 index 0000000000..bb2d9e81c3 --- /dev/null +++ b/pages/common/jf.md @@ -0,0 +1,16 @@ +# jf + +> Interact with JFrog products like Artifactory, Xray, Distribution, Pipelines and Mission Control. +> More information: . + +- Add a new configuration: + +`jf config add` + +- Show the current configuration: + +`jf config show` + +- Search for artifacts within the given repository and directory: + +`jf rt search --recursive {{repostiory_name}}/{{path}}/` diff --git a/pages/common/jhipster.md b/pages/common/jhipster.md index 0513d3925f..7dddf68910 100644 --- a/pages/common/jhipster.md +++ b/pages/common/jhipster.md @@ -23,7 +23,7 @@ `jhipster entity {{entity_name}}` -- Import a JDL file to configure your application (see: https://start.jhipster.tech/jdl-studio/): +- Import a JDL file to configure your application (see: ): `jhipster import-jdl {{first_file.jh second_file.jh ... n_file.jh}}` diff --git a/pages/common/jmap.md b/pages/common/jmap.md index 03d16c5003..df2b6cb029 100644 --- a/pages/common/jmap.md +++ b/pages/common/jmap.md @@ -1,7 +1,7 @@ # jmap > Java memory map tool. -> More information: . +> More information: . - Print shared object mappings for a Java process (output like pmap): @@ -17,4 +17,8 @@ - Dump contents of the heap into a binary file for analysis with jhat: -`jmap -dump:format=b,file={{filename}} {{java_pid}}` +`jmap -dump:format=b,file={{path/to/file}} {{java_pid}}` + +- Dump live objects of the heap into a binary file for analysis with jhat: + +`jmap -dump:live,format=b,file={{path/to/file}} {{java_pid}}` diff --git a/pages/common/jpegtopnm.md b/pages/common/jpegtopnm.md new file mode 100644 index 0000000000..48fcee5c36 --- /dev/null +++ b/pages/common/jpegtopnm.md @@ -0,0 +1,12 @@ +# jpegtopnm + +> Converts a JPEG/JFIF file to the PPM or PGM format. +> More information: . + +- Convert JPEG/JFIF image to a PPM or PGM image: + +`jpegtopnm {{path/to/file.jpg}} > {{path/to/file.pnm}}` + +- Display version: + +`jpegtopnm -version` diff --git a/pages/common/jps.md b/pages/common/jps.md index fb2a7330af..5cab8ccd7b 100644 --- a/pages/common/jps.md +++ b/pages/common/jps.md @@ -1,7 +1,7 @@ # jps > Show JVM process status of current user. -> More information: . +> More information: . - List all JVM processes: diff --git a/pages/common/jq.md b/pages/common/jq.md index dbd6e6955f..9fa80b3a4c 100644 --- a/pages/common/jq.md +++ b/pages/common/jq.md @@ -1,9 +1,9 @@ # jq -> A command-line JSON processor that uses a domain-specific language. +> A command-line JSON processor that uses a domain-specific language (DSL). > More information: . -- Execute a specific expression (print a colored and formatted json): +- Execute a specific expression (print a colored and formatted JSON output): `{{cat path/to/file.json}} | jq '.'` diff --git a/pages/common/just.1.md b/pages/common/just.1.md new file mode 100644 index 0000000000..1a776107cc --- /dev/null +++ b/pages/common/just.1.md @@ -0,0 +1,24 @@ +# just + +> Save and run project-specific commands. +> More information: . + +- Run a recipe specified in the justfile: + +`just {{recipe}}` + +- Initialize new justfile in project root: + +`just --init` + +- Edit justfile in the default editor: + +`just -e` + +- List available recipes in the justfile: + +`just -l` + +- Print justfile: + +`just --dump` diff --git a/pages/common/just.md b/pages/common/just.md index 1a776107cc..0f61087689 100644 --- a/pages/common/just.md +++ b/pages/common/just.md @@ -1,24 +1,11 @@ # just -> Save and run project-specific commands. -> More information: . +> `just` can refer to multiple commands with the same name. -- Run a recipe specified in the justfile: +- View documentation for the command runner: -`just {{recipe}}` +`tldr just.1` -- Initialize new justfile in project root: +- View documentation for the V8 JavaScript runtime: -`just --init` - -- Edit justfile in the default editor: - -`just -e` - -- List available recipes in the justfile: - -`just -l` - -- Print justfile: - -`just --dump` +`tldr just.js` diff --git a/pages/common/jwt.md b/pages/common/jwt.md index bb4b03906f..7525de837a 100644 --- a/pages/common/jwt.md +++ b/pages/common/jwt.md @@ -1,6 +1,6 @@ # jwt -> A command-line tool to work with JSON Web Tokens (JWTs). +> Work with JSON Web Tokens (JWTs). > Encryption algorithms available are HS256, HS384, HS512, RS256, RS384, RS512, ES256, ES384. > More information: . diff --git a/pages/common/k3d.md b/pages/common/k3d.md index 4ef8d2da1f..e7b0ea04f6 100644 --- a/pages/common/k3d.md +++ b/pages/common/k3d.md @@ -1,6 +1,6 @@ # k3d -> Wrapper CLI to easily create k3s clusters inside Docker. +> A wrapper to easily create k3s clusters inside Docker. > More information: . - Create a cluster: diff --git a/pages/common/k9s.md b/pages/common/k9s.md new file mode 100644 index 0000000000..be4994151f --- /dev/null +++ b/pages/common/k9s.md @@ -0,0 +1,20 @@ +# k9s + +> View and manage Kubernetes clusters. +> More information: . + +- Manage a cluster using a kubeconfig context: + +`k9s --context {{kubeconfig_context_name}}` + +- Manage a cluster in read-only mode (disabling all commands that may cause modifications): + +`k9s --readonly --cluster {{cluster_name}}` + +- Manage a cluster using a given kubernetes namespace: + +`k9s --namespace {{kubernetes_namespace}} --cluster {{cluster_name}}` + +- Manage a cluster launching k9s in the pod view and enable debug logging: + +`k9s --command {{pod}} --logLevel debug --cluster {{cluster_name}}` diff --git a/pages/common/kcadm.sh.md b/pages/common/kcadm.sh.md index 4ac25e2338..7bb9e10ffa 100644 --- a/pages/common/kcadm.sh.md +++ b/pages/common/kcadm.sh.md @@ -1,6 +1,6 @@ # kcadm.sh -> Perform administration tasks from the command-line interface (CLI). +> Perform administration tasks. > More information: . - Start an authenticated session: diff --git a/pages/common/kdenlive.md b/pages/common/kdenlive.md new file mode 100644 index 0000000000..3c7cd6cef3 --- /dev/null +++ b/pages/common/kdenlive.md @@ -0,0 +1,28 @@ +# kdenlive + +> KDE's non-linear video editor. +> More information: . + +- Start the video editor: + +`kdenlive` + +- Open a specific file: + +`kdenlive {{path/to/file}}.kdenlive` + +- Set a specific path for an MLT environment: + +`kdenlive --mlt-path {{path/to/directory}}` + +- Set a specific log level for an MLT environment: + +`kdenlive --mlt-log {{verbose|debug}}` + +- Display help: + +`kdenlive --help` + +- Display version: + +`kdenlive --version` diff --git a/pages/common/keytool.md b/pages/common/keytool.md new file mode 100644 index 0000000000..9029820d3e --- /dev/null +++ b/pages/common/keytool.md @@ -0,0 +1,16 @@ +# keytool + +> Keytool is a certificate management utility included with Java. +> More information: . + +- Create a keystore: + +`keytool -genkeypair -v -keystore {{path/to/file.keystore}} -alias {{key_name}}` + +- Change a keystore password: + +`keytool -storepasswd -keystore {{path/to/file.keystore}}` + +- Change a key's password inside a specific keystore: + +`keytool -keypasswd -alias {{key_name}} -keystore {{path/to/file.keystore}}` diff --git a/pages/common/khal.md b/pages/common/khal.md index 74074aeaf6..15e606a70a 100644 --- a/pages/common/khal.md +++ b/pages/common/khal.md @@ -3,7 +3,7 @@ > A text-based calendar and scheduling application for the command-line. > More information: . -- Start khal on interactive mode: +- Start Khal on interactive mode: `ikhal` diff --git a/pages/common/kinit.md b/pages/common/kinit.md new file mode 100644 index 0000000000..0c16759af6 --- /dev/null +++ b/pages/common/kinit.md @@ -0,0 +1,29 @@ +# kinit + +> Authenticate a principal with a Kerberos server to gain and cache a ticket. +> Note: A Kerberos principal can be either a user, service, or application. +> More information: . + +- Authenticate a user and obtain a ticket-granting ticket: + +`kinit {{username}}` + +- Renew a ticket-granting ticket: + +`kinit -R` + +- Specify a lifetime for the ticket: + +`kinit -l {{5h}}` + +- Specify a total renewable lifetime for the ticket: + +`kinit -r {{1w}}` + +- Specify a different principal name to authenticate as: + +`kinit -p {{principal@REALM}}` + +- Specify a different keytab file to authenticate with: + +`kinit -t {{path/to/keytab}}` diff --git a/pages/common/kismet.md b/pages/common/kismet.md new file mode 100644 index 0000000000..cc788fdd15 --- /dev/null +++ b/pages/common/kismet.md @@ -0,0 +1,36 @@ +# kismet + +> A wireless network and device detector, sniffer, wardriving tool, and WIDS (wireless intrusion detection) framework. +> More information: . + +- Capture packets from a specific wireless interface: + +`sudo kismet -c {{wlan0}}` + +- Monitor multiple channels on a wireless interface: + +`sudo kismet -c {{wlan0,wlan1}} -m` + +- Capture packets and save them to a specific directory: + +`sudo kismet -c {{wlan0}} -d {{path/to/output}}` + +- Start Kismet with a specific configuration file: + +`sudo kismet -c {{wlan0}} -f {{path/to/config.conf}}` + +- Monitor and log data to an SQLite database: + +`sudo kismet -c {{wlan0}} --log-to-db` + +- Monitor using a specific data source: + +`sudo kismet -c {{wlan0}} --data-source={{rtl433}}` + +- Enable alerts for specific events: + +`sudo kismet -c {{wlan0}} --enable-alert={{new_ap}}` + +- Display detailed information about a specific AP's packets: + +`sudo kismet -c {{wlan0}} --info {{BSSID}}` diff --git a/pages/common/knife.md b/pages/common/knife.md index 62d58e4855..c59044dfee 100644 --- a/pages/common/knife.md +++ b/pages/common/knife.md @@ -1,6 +1,6 @@ # knife -> CLI for interacting with a Chef server from a local Chef repo. +> Interact with a Chef server from a local Chef repo. > More information: . - Bootstrap a new node: diff --git a/pages/common/kool.md b/pages/common/kool.md index eaa30d5562..db67cad6c9 100644 --- a/pages/common/kool.md +++ b/pages/common/kool.md @@ -1,6 +1,6 @@ # kool -> Build software development environments from the command-line. +> Build software development environments. > More information: . - Create a project using a specific preset: diff --git a/pages/common/kops.md b/pages/common/kops.md index 23c0fd78db..5ea3f755b8 100644 --- a/pages/common/kops.md +++ b/pages/common/kops.md @@ -1,6 +1,6 @@ # kops -> Create, destroy, upgrade and maintain Kubernetes clusters from the command-line. +> Create, destroy, upgrade and maintain Kubernetes clusters. > More information: . - Create a cluster from the configuration specification: @@ -22,3 +22,7 @@ - Delete a cluster: `kops delete cluster {{cluster_name}} --yes` + +- Validate a cluster: + +`kops validate cluster {{cluster_name}} --wait {{wait_time_until_ready}} --count {{num_required_validations}}` diff --git a/pages/linux/krita.md b/pages/common/krita.md similarity index 84% rename from pages/linux/krita.md rename to pages/common/krita.md index 5dd3b31b9c..f13cf5a4a8 100644 --- a/pages/linux/krita.md +++ b/pages/common/krita.md @@ -1,6 +1,6 @@ # krita -> Krita is a sketching and painting program designed for digital artists. +> A sketching and painting program designed for digital artists. > See also: `gimp`. > More information: . diff --git a/pages/common/krunvm.md b/pages/common/krunvm.md new file mode 100644 index 0000000000..a77d79ec9a --- /dev/null +++ b/pages/common/krunvm.md @@ -0,0 +1,24 @@ +# krunvm + +> Create MicroVMs from OCI images. +> More information: . + +- Create MicroVM based on Fedora: + +`krunvm create {{docker.io/fedora}} --cpus {{number_of_vcpus}} --mem {{memory_in_megabytes}} --name "{{name}}"` + +- Start a specific image: + +`krunvm start "{{image_name}}"` + +- List images: + +`krunvm list` + +- Change a specific image: + +`krunvm changevm --cpus {{number_of_vcpus}} --mem {{memory_in_megabytes}} --name "{{new_vm_name}}" "{{current_vm_name}}"` + +- Delete a specific image: + +`krunvm delete "{{image_name}}"` diff --git a/pages/common/ksh.md b/pages/common/ksh.md index 2a3f2164bd..e0808532d7 100644 --- a/pages/common/ksh.md +++ b/pages/common/ksh.md @@ -1,21 +1,25 @@ # ksh > Korn Shell, a Bash-compatible command-line interpreter. -> See also `histexpand` for history expansion. +> See also: `histexpand`. > More information: . - Start an interactive shell session: `ksh` -- Execute a command and then exit: +- Execute specific [c]ommands: -`ksh -c "{{command}}"` +`ksh -c "{{echo 'ksh is executed'}}"` -- Execute a script: +- Execute a specific script: `ksh {{path/to/script.ksh}}` -- Execute a script, printing each command before executing it: +- Check a specific script for syntax errors without executing it: + +`ksh -n {{path/to/script.ksh}}` + +- Execute a specific script, printing each command in the script before executing it: `ksh -x {{path/to/script.ksh}}` diff --git a/pages/common/kube-capacity.md b/pages/common/kube-capacity.md index d710a58f20..7e2e2db13c 100644 --- a/pages/common/kube-capacity.md +++ b/pages/common/kube-capacity.md @@ -1,6 +1,6 @@ # kube-capacity -> A simple CLI that provides an overview of the resource requests, limits, and utilization in a Kubernetes cluster. +> Provide an overview of resource requests, limits, and utilization in a Kubernetes cluster. > Combine the best parts of `kubectl top` and `kubectl describe` into a CLI focused on cluster resources. > More information: . diff --git a/pages/common/kubectl-apply.md b/pages/common/kubectl-apply.md new file mode 100644 index 0000000000..3fbaa8a8c6 --- /dev/null +++ b/pages/common/kubectl-apply.md @@ -0,0 +1,20 @@ +# kubectl apply + +> Manages applications through files defining Kubernetes resources. It creates and updates resources in a cluster. +> More information: . + +- Apply a configuration to a resource by file name or `stdin`: + +`kubectl apply -f {{resource_filename}}` + +- Edit the latest last-applied-configuration annotations of resources from the default editor: + +`kubectl apply edit-last-applied -f {{resource_filename}}` + +- Set the latest last-applied-configuration annotations by setting it to match the contents of a file: + +`kubectl apply set-last-applied -f {{resource_filename}}` + +- View the latest last-applied-configuration annotations by type/name or file: + +`kubectl apply view-last-applied -f {{resource_filename}}` diff --git a/pages/common/kubectl-create.md b/pages/common/kubectl-create.md new file mode 100644 index 0000000000..10788387ac --- /dev/null +++ b/pages/common/kubectl-create.md @@ -0,0 +1,28 @@ +# kubectl create + +> Create a resource from a file or from `stdin`. +> More information: . + +- Create a resource using the resource definition file: + +`kubectl create -f {{path/to/file.yml}}` + +- Create a resource from `stdin`: + +`kubectl create -f -` + +- Create a deployment: + +`kubectl create deployment {{deployment_name}} --image={{image}}` + +- Create a deployment with replicas: + +`kubectl create deployment {{deployment_name}} --image={{image}} --replicas={{number_of_replicas}}` + +- Create a service: + +`kubectl create service {{service_type}} {{service_name}} --tcp={{port}}:{{target_port}}` + +- Create a namespace: + +`kubectl create namespace {{namespace_name}}` diff --git a/pages/common/kubectl-edit.md b/pages/common/kubectl-edit.md new file mode 100644 index 0000000000..c8a519240c --- /dev/null +++ b/pages/common/kubectl-edit.md @@ -0,0 +1,24 @@ +# kubectl edit + +> Edit Kubernetes resources. +> More information: . + +- Edit a pod: + +`kubectl edit pod/{{pod_name}}` + +- Edit a deployment: + +`kubectl edit deployment/{{deployment_name}}` + +- Edit a service: + +`kubectl edit svc/{{service_name}}` + +- Edit a resource using a specific editor: + +`KUBE_EDITOR={{nano}} kubectl edit {{resource}}/{{resource_name}}` + +- Edit a resource in JSON format: + +`kubectl edit {{resource}}/{{resource_name}} --output json` diff --git a/pages/common/kubectl-expose.md b/pages/common/kubectl-expose.md new file mode 100644 index 0000000000..94fba84759 --- /dev/null +++ b/pages/common/kubectl-expose.md @@ -0,0 +1,16 @@ +# kubectl edit + +> Expose a resource as a new Kubernetes service. +> More information: . + +- Create a service for a resource, which will be served from container port to node port: + +`kubectl expose {{resource_type}} {{resource_name}} --port={{node_port}} --target-port={{container_port}}` + +- Create a service for a resource identified by a file: + +`kubectl expose -f {{path/to/file.yml}} --port={{node_port}} --target-port={{container_port}}` + +- Create a service with a name, to serve to a node port which will be same for container port: + +`kubectl expose {{resource_type}} {{resource_name}} --port={{node_port}} --name={{service_name}}` diff --git a/pages/common/kubectl-label.md b/pages/common/kubectl-label.md new file mode 100644 index 0000000000..1fffeda091 --- /dev/null +++ b/pages/common/kubectl-label.md @@ -0,0 +1,24 @@ +# kubectl edit + +> Edit Kubernetes resources. +> More information: . + +- Label a pod: + +`kubectl label pod {{pod_name}} {{key}}={{value}}` + +- Update a pod label by overwriting the existing value: + +`kubectl label --overwrite {{pod_name}} {{key}}={{value}}` + +- Label all pods in the namespace: + +`kubectl label pods --all {{key}}={{value}}` + +- Label pod identified by pod definition file: + +`kubectl label -f {{pod_defination_file}} {{key}}={{value}}` + +- Remove the label from a pod: + +`kubectl label pod {{pod_name}} {{key}}-` diff --git a/pages/common/kubectl-replace.md b/pages/common/kubectl-replace.md new file mode 100644 index 0000000000..91075ca646 --- /dev/null +++ b/pages/common/kubectl-replace.md @@ -0,0 +1,16 @@ +# kubctl replace + +> Replace a resource by file or `stdin`. +> More information: . + +- Replace the resource using the resource definition file: + +`kubectl replace -f {{path/to/file.yml}}` + +- Replace the resource using the input passed into `stdin`: + +`kubectl replace -f -` + +- Force replace, delete and then re-create the resource: + +`kubectl replace --force -f {{path/to/file.yml}}` diff --git a/pages/common/kubectl-run.md b/pages/common/kubectl-run.md index ddf6421152..a7cd0f6c6c 100644 --- a/pages/common/kubectl-run.md +++ b/pages/common/kubectl-run.md @@ -5,20 +5,20 @@ - Run an nginx pod and expose port 80: -`kubectl run --generator=run-pod/v1 nginx --image=nginx --port 80` +`kubectl run {{nginx-dev}} --image=nginx --port 80` - Run an nginx pod, setting the TEST_VAR environment variable: -`kubectl run --generator=run-pod/v1 nginx --image=nginx --env="TEST_VAR=testing"` +`kubectl run {{nginx-dev}} --image=nginx --env="{{TEST_VAR}}={{testing}}"` - Show API calls that would be made to create an nginx container: -`kubectl run --generator=run-pod/v1 nginx --image=nginx --dry-run` +`kubectl run {{nginx-dev}} --image=nginx --dry-run={{none|server|client}}` - Run an Ubuntu pod interactively, never restart it, and remove it when it exits: -`kubectl run --generator=run-pod/v1 -it temp-ubuntu --image=ubuntu:20.04 --restart=Never --rm -- /bin/bash` +`kubectl run {{temp-ubuntu}} --image=ubuntu:22.04 --restart=Never --rm -- /bin/bash` - Run an Ubuntu pod, overriding the default command with echo, and specifying custom arguments: -`kubectl run --generator=run-pod/v1 temp-ubuntu --image=ubuntu:20.04 --command -- echo arg1 arg2 arg3` +`kubectl run {{temp-ubuntu}} --image=ubuntu:22.04 --command -- echo {{argument1 argument2 ...}}` diff --git a/pages/common/kubectl-scale.md b/pages/common/kubectl-scale.md new file mode 100644 index 0000000000..caffce5fc3 --- /dev/null +++ b/pages/common/kubectl-scale.md @@ -0,0 +1,16 @@ +# kubectl edit + +> Set a new size for a deployment, replica set, replication controller, or stateful set. +> More information: . + +- Scale a replica set: + +`kubectl scale --replicas={{number_of_replicas}} rs/{{replica_name}}` + +- Scale a resource identified by a file: + +`kubectl scale --replicas={{number_of_replicas}} -f {{path/to/file.yml}}` + +- Scale a deployment based on current number of replicas: + +`kubectl scale --current-replicas={{current_replicas}} --replicas={{number_of_replicas}} deployment/{{deployment_name}}` diff --git a/pages/common/kubectl-taint.md b/pages/common/kubectl-taint.md new file mode 100644 index 0000000000..8f31552b75 --- /dev/null +++ b/pages/common/kubectl-taint.md @@ -0,0 +1,16 @@ +# kubectl taint + +> Update the taints on one or more nodes. +> More information: . + +- Apply taint to a node: + +`kubectl taint nodes {{node_name}} {{label_key}}={{label_value}}:{{effect}}` + +- Remove taint from a node: + +`kubectl taint nodes {{node_name}} {{label_key}}:{{effect}}-` + +- Remove all taints from a node: + +`kubectl taint nodes {{node_name}} {{label_key}}-` diff --git a/pages/common/l2ping.md b/pages/common/l2ping.md new file mode 100644 index 0000000000..2bd5fc695d --- /dev/null +++ b/pages/common/l2ping.md @@ -0,0 +1,32 @@ +# l2ping + +> Send an L2CAP echo request and receive an answer. +> More information: . + +- Ping a Bluetooth device: + +`sudo l2ping {{mac_address}}` + +- Reverse ping a Bluetooth device: + +`sudo l2ping -r {{mac_address}}` + +- Ping a Bluetooth device from a specified interface: + +`sudo l2ping -i {{hci0}} {{mac_address}}` + +- Ping Bluetooth device with a specified sized data package: + +`sudo l2ping -s {{byte_count}} {{mac_address}}` + +- Ping flood a Bluetooth device: + +`sudo l2ping -f {{mac_address}}` + +- Ping a Bluetooth device a specified amount of times: + +`sudo l2ping -c {{amount}} {{mac_address}}` + +- Ping a Bluetooth device with a specified delay between requests: + +`sudo l2ping -d {{seconds}} {{mac_address}}` diff --git a/pages/common/lando.md b/pages/common/lando.md new file mode 100644 index 0000000000..6315bb52a7 --- /dev/null +++ b/pages/common/lando.md @@ -0,0 +1,36 @@ +# lando + +> Local development environment and DevOps tool built on Docker. +> More information: . + +- Initialize code for use with `lando`: + +`lando init` + +- Print information about your app: + +`lando info` + +- Start your app: + +`lando start` + +- Stop your app: + +`lando stop` + +- Restart your app: + +`lando restart` + +- Rebuild your app from scratch, preserving data: + +`lando rebuild` + +- Display logs for your app: + +`lando logs` + +- Destroy your app: + +`lando destroy` diff --git a/pages/common/ldapsearch.md b/pages/common/ldapsearch.md index 0f43562570..4e25be2714 100644 --- a/pages/common/ldapsearch.md +++ b/pages/common/ldapsearch.md @@ -1,6 +1,6 @@ # ldapsearch -> CLI utility for querying an LDAP directory. +> Query an LDAP directory. > More information: . - Query an LDAP server for all items that are a member of the given group and return the object's displayName value: diff --git a/pages/common/less.md b/pages/common/less.md index 2b18c98553..70d27a394f 100644 --- a/pages/common/less.md +++ b/pages/common/less.md @@ -7,11 +7,11 @@ `less {{source_file}}` -- Page down / up: +- Page down/up: ` (down), b (up)` -- Go to end / start of file: +- Go to end/start of file: `G (end), g (start)` diff --git a/pages/common/lex.md b/pages/common/lex.md index cfa5621949..5c9e6ae537 100644 --- a/pages/common/lex.md +++ b/pages/common/lex.md @@ -10,8 +10,8 @@ - Specify the output file: -`lex {{analyzer.l}} --outfile {{analyzer.c}}` +`lex -t {{analyzer.l}} > {{analyzer.c}}` - Compile a C file generated by Lex: -`cc {{path/to/lex.yy.c}} --output {{executable}}` +`c99 {{path/to/lex.yy.c}} -o {{executable}}` diff --git a/pages/common/license.md b/pages/common/license.md index f09775586c..ff05148934 100644 --- a/pages/common/license.md +++ b/pages/common/license.md @@ -9,7 +9,7 @@ - Generate a license and save it to a file: -`license -o {{filename}} {{license_name}}` +`license -o {{path/to/file}} {{license_name}}` - List all available licenses: diff --git a/pages/common/lima.md b/pages/common/lima.md new file mode 100644 index 0000000000..2a2e34f6b4 --- /dev/null +++ b/pages/common/lima.md @@ -0,0 +1,9 @@ +# lima + +> This command is an alias of `limactl shell` for the default VM instance. +> You can also set the `$LIMA_INSTANCE` environment variable to work on a different instance. +> More information: . + +- View documentation for the original command: + +`tldr limactl` diff --git a/pages/common/limactl.md b/pages/common/limactl.md new file mode 100644 index 0000000000..d3f8b3d6c2 --- /dev/null +++ b/pages/common/limactl.md @@ -0,0 +1,33 @@ +# limactl + +> Virtual machine manager for Linux guests, with multiple VM templates available. +> Can be used to run containers on macOS, but also for generic virtual machine use cases on macOS and Linux hosts. +> More information: . + +- List VMs: + +`limactl list` + +- Create a VM using the default settings and optionally provide a name and/or a template (see `limactl create --list-templates` for available templates): + +`limactl create --name {{vm_name}} template://{{debian|fedora|ubuntu|…}}` + +- Start a VM (this might install some dependencies in it and take a few minutes): + +`limactl start {{vm_name}}` + +- Open a remote shell inside a VM: + +`limactl shell {{vm_name}}` + +- Run a command inside a VM: + +`limactl shell {{vm_name}} {{command}}` + +- Stop/shutdown a VM: + +`limactl stop {{vm_name}}` + +- Delete a VM: + +`limactl remove {{vm_name}}` diff --git a/pages/common/linkchecker.md b/pages/common/linkchecker.md index 4170cd2440..9af2f02875 100644 --- a/pages/common/linkchecker.md +++ b/pages/common/linkchecker.md @@ -3,7 +3,7 @@ > Command-line client to check HTML documents and websites for broken links. > More information: . -- Find broken links on https://example.com/: +- Find broken links on : `linkchecker {{https://example.com/}}` diff --git a/pages/common/linode-cli-account.md b/pages/common/linode-cli-account.md new file mode 100644 index 0000000000..6f3dde688f --- /dev/null +++ b/pages/common/linode-cli-account.md @@ -0,0 +1,21 @@ +# linode-cli account + +> Manage Linode accounts. +> See also: `linode-cli`. +> More information: . + +- View account: + +`linode-cli account view` + +- View account settings: + +`linode-cli account settings` + +- Make a payment: + +`linode-cli account payment-create --cvv {{cvv}} --usd {{amount_in_dollars}}` + +- View account notifications: + +`linode-cli account notifications-list` diff --git a/pages/common/linode-cli-domains.md b/pages/common/linode-cli-domains.md new file mode 100644 index 0000000000..010ef3eaa8 --- /dev/null +++ b/pages/common/linode-cli-domains.md @@ -0,0 +1,37 @@ +# linode-cli domains + +> Manage Linode Domains and DNS configuration. +> See also: `linode-cli`. +> More information: . + +- List all managed domains: + +`linode-cli domains list` + +- Create a new managed domain: + +`linode-cli domains create --domain {{domain_name}} --type {{master|slave}} --soa-email {{email}}` + +- View details of a specific domain: + +`linode-cli domains view {{domain_id}}` + +- Delete a managed domain: + +`linode-cli domains delete {{domain_id}}` + +- List records for a specific domain: + +`linode-cli domains records-list {{domain_id}}` + +- Add a DNS record to a domain: + +`linode-cli domains records-create {{domain_id}} --type {{A|AAAA|CNAME|MX|...}} --name {{subdomain}} --target {{target_value}}` + +- Update a DNS record for a domain: + +`linode-cli domains records-update {{domain_id}} {{record_id}} --target {{new_target_value}}` + +- Delete a DNS record from a domain: + +`linode-cli domains records-delete {{domain_id}} {{record_id}}` diff --git a/pages/common/linode-cli-events.md b/pages/common/linode-cli-events.md new file mode 100644 index 0000000000..7be4b01e71 --- /dev/null +++ b/pages/common/linode-cli-events.md @@ -0,0 +1,17 @@ +# linode-cli events + +> Manage Linode events. +> See also: `linode-cli`. +> More information: . + +- View a list of events on your account: + +`linode-cli events list` + +- View details about a specific event: + +`linode-cli events view {{event_id}}` + +- Mark an event as read: + +`linode-cli events mark-read {{event_id}}` diff --git a/pages/common/linode-cli-linodes.md b/pages/common/linode-cli-linodes.md new file mode 100644 index 0000000000..1016ec8506 --- /dev/null +++ b/pages/common/linode-cli-linodes.md @@ -0,0 +1,37 @@ +# linode-cli linodes + +> Manage Linode instances. +> See also: `linode-cli`. +> More information: . + +- List all Linodes: + +`linode-cli linodes list` + +- Create a new Linode: + +`linode-cli linodes create --type {{linode_type}} --region {{region}} --image {{image_id}}` + +- View details of a specific Linode: + +`linode-cli linodes view {{linode_id}}` + +- Update settings for a Linode: + +`linode-cli linodes update {{linode_id}} --label {{[new_label}}` + +- Delete a Linode: + +`linode-cli linodes delete {{linode_id}}` + +- Perform a power management operation on a Linode: + +`linode-cli linodes {{boot|reboot|shutdown}} {{linode_id}}` + +- List available backups for a Linode: + +`linode-cli linodes backups-list {{linode_id}}` + +- Restore a backup to a Linode: + +`linode-cli linodes backups-restore {{linode_id}} --backup-id {{backup_id}}` diff --git a/pages/common/linode-cli-lke.md b/pages/common/linode-cli-lke.md new file mode 100644 index 0000000000..2522e38503 --- /dev/null +++ b/pages/common/linode-cli-lke.md @@ -0,0 +1,25 @@ +# linode-cli lke + +> Manage Linode Kubernetes Engine (LKE) clusters. +> See also: `linode-cli`. +> More information: . + +- List all LKE clusters: + +`linode-cli lke clusters list` + +- Create a new LKE cluster: + +`linode-cli lke clusters create --region {{region}} --type {{type}} --node-type {{node_type}} --nodes-count {{count}}` + +- View details of a specific LKE cluster: + +`linode-cli lke clusters view {{cluster_id}}` + +- Update an existing LKE cluster: + +`linode-cli lke clusters update {{cluster_id}} --node-type {{new_node_type}}` + +- Delete an LKE cluster: + +`linode-cli lke clusters delete {{cluster_id}}` diff --git a/pages/common/linode-cli-nodebalancers.md b/pages/common/linode-cli-nodebalancers.md new file mode 100644 index 0000000000..5ba48a6677 --- /dev/null +++ b/pages/common/linode-cli-nodebalancers.md @@ -0,0 +1,33 @@ +# linode-cli nodebalancers + +> Manage Linode NodeBalancers. +> See also: `linode-cli`. +> More information: . + +- List all NodeBalancers: + +`linode-cli nodebalancers list` + +- Create a new NodeBalancer: + +`linode-cli nodebalancers create --region {{region}}` + +- View details of a specific NodeBalancer: + +`linode-cli nodebalancers view {{nodebalancer_id}}` + +- Update an existing NodeBalancer: + +`linode-cli nodebalancers update {{nodebalancer_id}} --label {{new_label}}` + +- Delete a NodeBalancer: + +`linode-cli nodebalancers delete {{nodebalancer_id}}` + +- List configurations for a NodeBalancer: + +`linode-cli nodebalancers configs list {{nodebalancer_id}}` + +- Add a new configuration to a NodeBalancer: + +`linode-cli nodebalancers configs create {{nodebalancer_id}} --port {{port}} --protocol {{protocol}}` diff --git a/pages/common/linode-cli-object-storage.md b/pages/common/linode-cli-object-storage.md new file mode 100644 index 0000000000..fb131225be --- /dev/null +++ b/pages/common/linode-cli-object-storage.md @@ -0,0 +1,33 @@ +# linode-cli object-storage + +> Manage Linode Object Storage. +> See also: `linode-cli`. +> More information: . + +- List all Object Storage buckets: + +`linode-cli object-storage buckets list` + +- Create a new Object Storage bucket: + +`linode-cli object-storage buckets create --cluster {{cluster_id}} --label {{bucket_label}}` + +- Delete an Object Storage bucket: + +`linode-cli object-storage buckets delete {{cluster_id}} {{bucket_label}}` + +- List Object Storage cluster regions: + +`linode-cli object-storage clusters list` + +- List access keys for Object Storage: + +`linode-cli object-storage keys list` + +- Create a new access key for Object Storage: + +`linode-cli object-storage keys create --label {{label}}` + +- Revoke an access key for Object Storage: + +`linode-cli object-storage keys revoke {{access_key_id}}` diff --git a/pages/common/linode-cli-tickets.md b/pages/common/linode-cli-tickets.md new file mode 100644 index 0000000000..74a681e471 --- /dev/null +++ b/pages/common/linode-cli-tickets.md @@ -0,0 +1,21 @@ +# linode-cli tickets + +> Manage Linode Support Tickets. +> See also: `linode-cli`. +> More information: . + +- List your Support Tickets: + +`linode-cli tickets list` + +- Open a new Ticket: + +`linode-cli tickets create --summary "{{Summary or quick title for the Ticket}}" --description "{{Detailed description of the issue}}"` + +- List replies to a Ticket: + +`linode-cli tickets replies {{ticket_id}}` + +- Reply to a specific Ticket: + +`linode-cli tickets reply {{ticket_id}} --description "{{The content of your reply}}"` diff --git a/pages/common/linode-cli-volumes.md b/pages/common/linode-cli-volumes.md new file mode 100644 index 0000000000..997c18d1dc --- /dev/null +++ b/pages/common/linode-cli-volumes.md @@ -0,0 +1,29 @@ +# linode-cli volumes + +> Manage Linode Volumes. +> See also: `linode-cli`. +> More information: . + +- List current Volumnes: + +`linode-cli volumes list` + +- Create a new Volume and attach it to a specific Linode: + +`linode-cli volumes create --label {{volume_label}} --size {{size_in_GB}} --linode-id {{linode_id}}` + +- Attach a Volume to a specific Linode: + +`linode-cli volumes attach {{volume_id}} --linode-id {{linode_id}}` + +- Detach a Volume from a Linode: + +`linode-cli volumes detach {{volume_id}}` + +- Resize a Volume (Note: size can only be increased): + +`linode-cli volumes resize {{volume_id}} --size {{new_size_in_GB}}` + +- Delete a Volume: + +`linode-cli volumes delete {{volume_id}}` diff --git a/pages/common/linode-cli.md b/pages/common/linode-cli.md new file mode 100644 index 0000000000..1ccccd93f1 --- /dev/null +++ b/pages/common/linode-cli.md @@ -0,0 +1,37 @@ +# linode-cli + +> Manage Linode cloud services. +> Some subcommands such as `events` have their own usage documentation. +> More information: . + +- List all Linodes: + +`linode-cli linodes list` + +- View docmentation for managing Linode accounts: + +`tldr linode-cli account` + +- View documentation for managing Linodes: + +`tldr linode-cli linodes` + +- View documentation for managing Linode Kubernetes Engine (LKE) clusters: + +`tldr linode-cli lke` + +- View documentation for managing NodeBalancers: + +`tldr linode-cli nodebalancers` + +- View documentation for managing Object Storage: + +`tldr linode-cli object-storage` + +- View documentation for managing DNS domains: + +`tldr linode-cli domains` + +- View documentation for managing Linode Volumes: + +`tldr linode-cli volumes` diff --git a/pages/common/liquidctl.md b/pages/common/liquidctl.md new file mode 100644 index 0000000000..12b99d1ab1 --- /dev/null +++ b/pages/common/liquidctl.md @@ -0,0 +1,20 @@ +# liquidctl + +> Control liquid coolers. +> More information: . + +- List available devices: + +`liquidctl list` + +- Initialize all supported devices: + +`sudo liquidctl initialize all` + +- Print the status of available liquid coolers: + +`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: + +`liquidctl --match {{string}} set fan speed {{20 0 50 50 70 100}}` diff --git a/pages/common/lli.md b/pages/common/lli.md index 3ed6870f63..5dff1c40df 100644 --- a/pages/common/lli.md +++ b/pages/common/lli.md @@ -7,7 +7,7 @@ `lli {{path/to/file.ll}}` -- Execute with command line arguments: +- Execute with command-line arguments: `lli {{path/to/file.ll}} {{argument1 argument2 ...}}` diff --git a/pages/common/locust.md b/pages/common/locust.md index 0be82af798..0860db682f 100644 --- a/pages/common/locust.md +++ b/pages/common/locust.md @@ -15,14 +15,14 @@ `locust --no-web --clients={{100}} --hatch-rate={{1}} --host={{http://example.com}}` -- Start locust in master mode: +- Start Locust in master mode: `locust --master --host={{http://example.com}}` -- Connect locust slave to master: +- Connect Locust slave to master: `locust --slave --host={{http://example.com}}` -- Connect locust slave to master on a different machine: +- Connect Locust slave to master on a different machine: `locust --slave --master-host={{master_hostname}} --host={{http://example.com}}` diff --git a/pages/common/lspath.md b/pages/common/lspath.md index dfb81645ad..71abeff160 100644 --- a/pages/common/lspath.md +++ b/pages/common/lspath.md @@ -1,12 +1,12 @@ # lspath -> CLI app to list the contents of the PATH environment variable, with optional paging. +> List the contents of the `PATH` environment variable, with optional paging. > More information: . -- Print the contents of the system PATH variable, with one element per line: +- Print the contents of the system `PATH` variable, with one element per line: `lspath` -- Print the current contents of the system PATH variable, with one element per line, with the output paged: +- Print the current contents of the system `PATH` variable, with one element per line, with the output paged: `lspath --page` diff --git a/pages/common/lsyncd.md b/pages/common/lsyncd.md new file mode 100644 index 0000000000..428e7fa520 --- /dev/null +++ b/pages/common/lsyncd.md @@ -0,0 +1,13 @@ +# lsyncd + +> Watch files and directories and run `rsync` when they change. +> It is often used to keep two directories on separate systems in sync, ensuring that changes made in one directory are immediately mirrored to the other. +> More information: . + +- Watch the source for changes and run `rsync` to synchronize files to the destination on every change: + +`lsyncd -rsync {{path/to/source}} {{host::share_name}}` + +- Use SSH instead of `rsyncd` shares: + +`lsyncd -rsyncssh {{path/to/source}} {{host}} {{path/to/destination}}` diff --git a/pages/common/lua.md b/pages/common/lua.md index fb90e77dd5..2975dd2651 100644 --- a/pages/common/lua.md +++ b/pages/common/lua.md @@ -9,8 +9,8 @@ - Execute a Lua script: -`lua {{script_name.lua}} {{--optional-argument}}` +`lua {{path/to/script.lua}} {{--optional-argument}}` - Execute a Lua expression: -`lua -e '{{print( "Hello World" )}}'` +`lua -e '{{print("Hello World")}}'` diff --git a/pages/common/luajit.md b/pages/common/luajit.md new file mode 100644 index 0000000000..8c3f33ddf3 --- /dev/null +++ b/pages/common/luajit.md @@ -0,0 +1,17 @@ +# luajit + +> A just-in-time compiler (JIT) for the Lua programming language. +> See also: `lua`. +> More information: . + +- Start an interactive Lua shell: + +`luajit` + +- Execute a Lua script: + +`luajit {{path/to/script.lua}} {{--optional-argument}}` + +- Execute a Lua expression: + +`luajit -e '{{print("Hello World")}}'` diff --git a/pages/common/lzcmp.md b/pages/common/lzcmp.md new file mode 100644 index 0000000000..d6d948a40d --- /dev/null +++ b/pages/common/lzcmp.md @@ -0,0 +1,7 @@ +# lzcmp + +> This command is an alias of `xzcmp`. + +- View documentation for the original command: + +`tldr xzcmp` diff --git a/pages/common/lzegrep.md b/pages/common/lzegrep.md new file mode 100644 index 0000000000..4110d47c33 --- /dev/null +++ b/pages/common/lzegrep.md @@ -0,0 +1,8 @@ +# lzegrep + +> This command is an alias of `xzgrep --extended-regexp`. +> See also: `egrep`. + +- View documentation for the original command: + +`tldr xzgrep` diff --git a/pages/common/lzfgrep.md b/pages/common/lzfgrep.md new file mode 100644 index 0000000000..c33ceb576f --- /dev/null +++ b/pages/common/lzfgrep.md @@ -0,0 +1,8 @@ +# lzfgrep + +> This command is an alias of `xzgrep --fixed-strings`. +> See also: `fgrep`. + +- View documentation for the original command: + +`tldr xzgrep` diff --git a/pages/common/lzgrep.md b/pages/common/lzgrep.md new file mode 100644 index 0000000000..2476088d8e --- /dev/null +++ b/pages/common/lzgrep.md @@ -0,0 +1,7 @@ +# lzgrep + +> This command is an alias of `xzgrep`. + +- View documentation for the original command: + +`tldr xzgrep` diff --git a/pages/common/lzless.md b/pages/common/lzless.md new file mode 100644 index 0000000000..21adf53fd9 --- /dev/null +++ b/pages/common/lzless.md @@ -0,0 +1,7 @@ +# lzless + +> This command is an alias of `xzless`. + +- View documentation for the original command: + +`tldr xzless` diff --git a/pages/common/lzmore.md b/pages/common/lzmore.md new file mode 100644 index 0000000000..42a2aedbff --- /dev/null +++ b/pages/common/lzmore.md @@ -0,0 +1,7 @@ +# lzmore + +> This command is an alias of `xzmore`. + +- View documentation for the original command: + +`tldr xzmore` diff --git a/pages/common/macchina.md b/pages/common/macchina.md new file mode 100644 index 0000000000..22cd74a873 --- /dev/null +++ b/pages/common/macchina.md @@ -0,0 +1,24 @@ +# macchina + +> Display information about your computer. +> More information: . + +- List out system information, with either default settings or those specified in your configuration file: + +`macchina` + +- Specify a custom configuration file path: + +`macchina --config {{path/to/configuration_file}}` + +- List system information, but lengthen uptime, shell and kernel output: + +`macchina --long-uptime --long-shell --long-kernel` + +- Check for any errors/system failures encountered when trying to fetch system information: + +`macchina --doctor` + +- List original artists of all the ASCII art: + +`macchina --ascii-artists` diff --git a/pages/common/magento.md b/pages/common/magento.md index 02dd6297e7..4ac670f30a 100644 --- a/pages/common/magento.md +++ b/pages/common/magento.md @@ -1,6 +1,6 @@ # magento -> A CLI for managing the Magento PHP framework. +> Manage the Magento PHP framework. > More information: . - Enable one or more space-separated modules: diff --git a/pages/common/magick.md b/pages/common/magick.md index 06702e0728..48d7df4a79 100644 --- a/pages/common/magick.md +++ b/pages/common/magick.md @@ -1,25 +1,25 @@ # magick -> Create, edit, compose, or convert bitmap images. +> Create, edit, compose, or convert between image formats. > ImageMagick version 7+. See `convert` for versions 6 and below. > More information: . -- Convert file type: +- Convert between image formats: -`magick {{image.png}} {{image.jpg}}` +`magick {{path/to/input_image.png}} {{path/to/output_image.jpg}}` - Resize an image, making a new copy: -`magick convert -resize {{100x100}} {{image.jpg}} {{image.jpg}}` +`magick {{path/to/input_image.jpg}} -resize {{100x100}} {{path/to/output_image.jpg}}` -- Create a GIF using images: +- Create a GIF out of all JPG images in the current directory: -`magick {{*.jpg}} {{images.gif}}` +`magick {{*.jpg}} {{path/to/images.gif}}` -- Create checkerboard pattern: +- Create a checkerboard pattern: -`magick -size {{640x480}} pattern:checkerboard {{checkerboard.png}}` +`magick -size {{640x480}} pattern:checkerboard {{path/to/checkerboard.png}}` -- Convert images to individual PDF pages: +- Create a PDF file out of all JPG images in the current directory: -`magick {{*.jpg}} +adjoin {{page-%d.pdf}}` +`magick {{*.jpg}} -adjoin {{path/to/file.pdf}}` diff --git a/pages/common/mail.md b/pages/common/mail.md index 2400ec4de3..e155468991 100644 --- a/pages/common/mail.md +++ b/pages/common/mail.md @@ -1,7 +1,7 @@ # mail > The command operates on the user's mailbox if no argument is given. -> To send an email the message body is built from standard input. +> To send an email the message body is built from `stdin`. > More information: . - Send a typed email message. The command-line below continues after pressing Enter key. Input CC email-id (optional) press Enter key. Input message text (can be multiline). Press Ctrl-D key to complete the message text: diff --git a/pages/common/makepasswd.md b/pages/common/makepasswd.md index 00c7c2d4d8..d056861592 100644 --- a/pages/common/makepasswd.md +++ b/pages/common/makepasswd.md @@ -1,7 +1,7 @@ # makepasswd > Generate and encrypt passwords. -> More information: . +> More information: . - Generate a random password (8 to 10 characters long, containing letters and numbers): diff --git a/pages/common/mamba-repoquery.md b/pages/common/mamba-repoquery.md index 8655e9f3f3..5e8e7b2903 100644 --- a/pages/common/mamba-repoquery.md +++ b/pages/common/mamba-repoquery.md @@ -5,7 +5,7 @@ - Search for all available versions of a particular package: -`mamba repoquery search {{package_name}}` +`mamba repoquery search {{package}}` - Search for all packages satisfying specific constraints: diff --git a/pages/common/mc.md b/pages/common/mc.md index 408626bf5b..cbef052997 100644 --- a/pages/common/mc.md +++ b/pages/common/mc.md @@ -4,10 +4,10 @@ > Navigate the directory structure using the arrow keys, the mouse or by typing the commands into the terminal. > More information: . -- Start `mc`: +- Start Midnight Commander: `mc` -- Start `mc` in black and white: +- Start Midnight Commander in black and white: `mc -b` diff --git a/pages/common/mcfly.md b/pages/common/mcfly.md new file mode 100644 index 0000000000..b822de9f5f --- /dev/null +++ b/pages/common/mcfly.md @@ -0,0 +1,29 @@ +# mcfly + +> A smart command history search and management tool. +> Replaces your default shell history search (ctrl-r) with an intelligent search engine providing context and relevance to the commands. +> More information: . + +- Print the mcfly integration code for the specified shell: + +`mcfly init {{bash|fish|zsh}}` + +- Search the history for a command, with 20 results: + +`mcfly search --results {{20}} "{{search_terms}}"` + +- Add a new command to the history: + +`mcfly add "{{command}}"` + +- Record that a directory has moved and transfer the historical records from the old path to the new one: + +`mcfly move "{{path/to/old_directory}}" "{{path/to/new_directory}}"` + +- Train the suggestion engine (developer tool): + +`mcfly train` + +- Display help for a specific subcommand: + +`mcfly help {{subcommand}}` diff --git a/pages/common/md-to-clip.md b/pages/common/md-to-clip.md new file mode 100644 index 0000000000..887062d940 --- /dev/null +++ b/pages/common/md-to-clip.md @@ -0,0 +1,29 @@ +# md-to-clip + +> Converter from tldr-pages to Command Line Interface Pages. +> See also: `clip-view`. +> More information: . + +- Convert tldr-pages files and save into the same directories: + +`md-to-clip {{path/to/page1.md path/to/page2.md ...}}` + +- Convert tldr-pages files and save into a specific directory: + +`md-to-clip --output-directory {{path/to/directory}} {{path/to/page1.md path/to/page2.md ...}}` + +- Convert a tldr-page file to `stdout`: + +`md-to-clip --no-file-save <(echo '{{page-content}}')` + +- Convert tldr-pages files while recognizing additional placeholders from a specific config: + +`md-to-clip --special-placeholder-config {{path/to/config.yaml}} {{path/to/page1.md path/to/page2.md ...}}` + +- Display help: + +`md-to-clip --help` + +- Display version: + +`md-to-clip --version` diff --git a/pages/common/md5sum.md b/pages/common/md5sum.md index 803f40736e..13bda4f31f 100644 --- a/pages/common/md5sum.md +++ b/pages/common/md5sum.md @@ -3,19 +3,19 @@ > Calculate MD5 cryptographic checksums. > More information: . -- Calculate the MD5 checksum for a file: +- Calculate the MD5 checksum for one or more files: -`md5sum {{path/to/file}}` +`md5sum {{path/to/file1 path/to/file2 ...}}` -- Calculate MD5 checksums for multiple files: +- Calculate and save the list of MD5 checksums to a file: -`md5sum {{path/to/file1}} {{path/to/filen2}}` +`md5sum {{path/to/file1 path/to/file2 ...}} > {{path/to/file.md5}}` -- Calculate a MD5 checksum from the standard input: +- Calculate an MD5 checksum from `stdin`: -`echo "{{text}}" | md5sum` +`{{command}} | md5sum` -- Read a file of MD5SUMs and verify all files have matching checksums: +- Read a file of MD5 sums and filenames and verify all files have matching checksums: `md5sum --check {{path/to/file.md5}}` @@ -23,6 +23,6 @@ `md5sum --check --quiet {{path/to/file.md5}}` -- Only show a message for files for which verification fails, ignoring missing files: +- Only show a message when verification fails, ignoring missing files: `md5sum --ignore-missing --check --quiet {{path/to/file.md5}}` diff --git a/pages/common/meld.md b/pages/common/meld.md index 26ad9b2b81..db618ab89c 100644 --- a/pages/common/meld.md +++ b/pages/common/meld.md @@ -3,7 +3,7 @@ > Graphical diffing and merging tool. > More information: . -- Start meld: +- Start `meld`: `meld` diff --git a/pages/common/meshlabserver.md b/pages/common/meshlabserver.md index 196ee3f904..b9ba7effd4 100644 --- a/pages/common/meshlabserver.md +++ b/pages/common/meshlabserver.md @@ -13,7 +13,7 @@ - Dump a list of all the available processing filters into a file: -`meshlabserver -d {{filename}}` +`meshlabserver -d {{path/to/file}}` - Process a 3D file using a filter script created in the MeshLab GUI (Filters > Show current filter script > Save Script): diff --git a/pages/common/meson.md b/pages/common/meson.md index 18cc1cb4fe..74ffb5ee95 100644 --- a/pages/common/meson.md +++ b/pages/common/meson.md @@ -1,6 +1,6 @@ # meson -> SCons-like build system that uses python as a front-end language and Ninja as a building backend. +> SCons-like build system that uses Python as a front-end language and Ninja as a building backend. > More information: . - Generate a C project with a given name and version: diff --git a/pages/common/meteor.md b/pages/common/meteor.md index 833de3e91f..51a225135c 100644 --- a/pages/common/meteor.md +++ b/pages/common/meteor.md @@ -17,11 +17,11 @@ - Add a package to the project: -`meteor add {{package_name}}` +`meteor add {{package}}` - Remove a package from the project: -`meteor remove {{package_name}}` +`meteor remove {{package}}` - Create a production build of the project as a tarball under the given directory: diff --git a/pages/common/mid3v2.md b/pages/common/mid3v2.md new file mode 100644 index 0000000000..e8c53115ae --- /dev/null +++ b/pages/common/mid3v2.md @@ -0,0 +1,33 @@ +# mid3v2 + +> Edit audio tags. +> See also: `id3v2`. +> More information: . + +- List all supported ID3v2.3 or ID3v2.4 frames and their meanings: + +`id3v2 --list-frames {{path/to/file1.mp3 path/to/file2.mp3 ...}}` + +- List all supported ID3v1 numeric genres: + +`id3v2 --list-genres {{path/to/file1.mp3 path/to/file2.mp3 ...}}` + +- List all tags in specific files: + +`id3v2 --list {{path/to/file1.mp3 path/to/file2.mp3 ...}}` + +- Set specific artist, album, or song information: + +`id3v2 {{--artist|--album|--song}}={{string}} {{path/to/file1.mp3 path/to/file2.mp3 ...}}` + +- Set specific picture information: + +`id3v2 --picture={{filename:description:image_type:mime_type}} {{path/to/file1.mp3 path/to/file2.mp3 ...}}` + +- Set specific year information: + +`id3v2 --year={{YYYY}} {{path/to/file1.mp3 path/to/file2.mp3 ...}}` + +- Set specific date information: + +`id3v2 --date={{YYYY-MM-DD}} {{path/to/file1.mp3 path/to/file2.mp3 ...}}` diff --git a/pages/common/minifab.md b/pages/common/minifab.md index d605a724a9..f7fb11b3ab 100644 --- a/pages/common/minifab.md +++ b/pages/common/minifab.md @@ -25,7 +25,7 @@ - Invoke a chaincode method with the specified arguments: -`minifab invoke -n {{chaincode_name}} -p '"{{method_name}}", "{{arg0}}", "{{arg1}}", ...'` +`minifab invoke -n {{chaincode_name}} -p '"{{method_name}}", "{{argument1}}", "{{argument2}}", ...'` - Make a query on the ledger: @@ -33,4 +33,4 @@ - Quickly run an application: -`minifab apprun -l {{app_programming_langauge}}` +`minifab apprun -l {{app_programming_language}}` diff --git a/pages/common/minikube.md b/pages/common/minikube.md index 04e5ef8997..62ace0cce1 100644 --- a/pages/common/minikube.md +++ b/pages/common/minikube.md @@ -26,3 +26,7 @@ - Delete the cluster: `minikube delete` + +- Connect to LoadBalancer services: + +`minikube tunnel` diff --git a/pages/common/miniserve.md b/pages/common/miniserve.md index a8d6753fbc..c9f441edb2 100644 --- a/pages/common/miniserve.md +++ b/pages/common/miniserve.md @@ -1,6 +1,6 @@ # miniserve -> Simple HTTP file server CLI. +> Simple HTTP file server. > More information: . - Serve a directory: diff --git a/pages/common/mitmdump.md b/pages/common/mitmdump.md index c254030380..5fe9befb93 100644 --- a/pages/common/mitmdump.md +++ b/pages/common/mitmdump.md @@ -6,7 +6,7 @@ - Start a proxy and save all output to a file: -`mitmdump -w {{filename}}` +`mitmdump -w {{path/to/file}}` - Filter a saved traffic file to just POST requests: @@ -14,4 +14,4 @@ - Replay a saved traffic file: -`mitmdump -nc {{filename}}` +`mitmdump -nc {{path/to/file}}` diff --git a/pages/common/mitmproxy.md b/pages/common/mitmproxy.md index 51e1f48b56..78aa60d8fd 100644 --- a/pages/common/mitmproxy.md +++ b/pages/common/mitmproxy.md @@ -1,12 +1,21 @@ # mitmproxy > An interactive man-in-the-middle HTTP proxy. -> More information: . +> See also: `mitmweb`. +> More information: . -- Start mitmproxy with default settings: +- Start `mitmproxy` with default settings: `mitmproxy` -- Start mitmproxy bound to custom address and port: +- Start `mitmproxy` bound to a custom address and port: -`mitmproxy -b {{ip_address}} -p {{port}}` +`mitmproxy --listen-host {{ip_address}} --listen-port {{port}}` + +- Start `mitmproxy` using a script to process traffic: + +`mitmproxy --scripts {{path/to/script.py}}` + +- Export the logs with SSL/TLS master keys to external programs (wireshark, etc.): + +`SSLKEYLOGFILE="{{path/to/file}}" mitmproxy` diff --git a/pages/common/mitmweb.md b/pages/common/mitmweb.md new file mode 100644 index 0000000000..689058edb2 --- /dev/null +++ b/pages/common/mitmweb.md @@ -0,0 +1,17 @@ +# mitmweb + +> A web-based interactive man-in-the-middle HTTP proxy. +> See also: `mitmproxy`. +> More information: . + +- Start `mitmweb` with default settings: + +`mitmweb` + +- Start `mitmweb` bound to a custom address and port: + +`mitmweb --listen-host {{ip_address}} --listen-port {{port}}` + +- Start `mitmweb` using a script to process traffic: + +`mitmweb --scripts {{path/to/script.py}}` diff --git a/pages/common/mkdir.md b/pages/common/mkdir.md index 17cf334a5f..037c27c3c0 100644 --- a/pages/common/mkdir.md +++ b/pages/common/mkdir.md @@ -1,16 +1,16 @@ # mkdir -> Creates a directory. +> Create directories and set their permissions. > More information: . -- Create a directory in current directory or given path: +- Create specific directories: -`mkdir {{path/to/directory}}` +`mkdir {{path/to/directory1 path/to/directory2 ...}}` -- Create multiple directories in the current directory: +- Create specific directories and their [p]arents if needed: -`mkdir {{directory_1 directory_2 ...}}` +`mkdir -p {{path/to/directory1 path/to/directory2 ...}}` -- Create directories recursively (useful for creating nested dirs): +- Create directories with specific permissions: -`mkdir -p {{path/to/directory}}` +`mkdir -m {{rwxrw-r--}} {{path/to/directory1 path/to/directory2 ...}}` diff --git a/pages/common/mkfile.md b/pages/common/mkfile.md index 06f4be89a8..b1040b5541 100644 --- a/pages/common/mkfile.md +++ b/pages/common/mkfile.md @@ -5,11 +5,11 @@ - Create an empty file of 15 kilobytes: -`mkfile -n {{15k}} {{filename}}` +`mkfile -n {{15k}} {{path/to/file}}` - Create a file of a given size and unit (bytes, KB, MB, GB): -`mkfile -n {{size}}{{b|k|m|g}} {{filename}}` +`mkfile -n {{size}}{{b|k|m|g}} {{path/to/file}}` - Create two files of 4 megabytes each: diff --git a/pages/common/mktemp.md b/pages/common/mktemp.md index 3373a12a93..c368554972 100644 --- a/pages/common/mktemp.md +++ b/pages/common/mktemp.md @@ -1,16 +1,24 @@ # mktemp > Create a temporary file or directory. -> More information: . +> More information: . -- Create an empty temporary file and print the absolute path to it: +- Create an empty temporary file and print its absolute path: `mktemp` -- Create an empty temporary file with a given suffix and print the absolute path to file: +- Use a custom directory if `$TMPDIR` is not set (the default is platform-dependent, but usually `/tmp`): -`mktemp --suffix "{{.ext}}"` +`mktemp -p {{/path/to/tempdir}}` -- Create a temporary directory and print the absolute path to it: +- Use a custom path template (`X`s are replaced with random alphanumeric characters): + +`mktemp {{/tmp/example.XXXXXXXX}}` + +- Use a custom file name template: + +`mktemp -t {{example.XXXXXXXX}}` + +- Create an empty temporary directory and print its absolute path: `mktemp -d` diff --git a/pages/common/mktorrent.md b/pages/common/mktorrent.md index 04d6fbfbc8..e909659564 100644 --- a/pages/common/mktorrent.md +++ b/pages/common/mktorrent.md @@ -1,6 +1,6 @@ # mktorrent -> A CLI utility to create BitTorrent metainfo files. +> Create BitTorrent metainfo files. > More information: . - Create a torrent with 2^21 KB as the piece size: diff --git a/pages/common/mods.md b/pages/common/mods.md new file mode 100644 index 0000000000..abc04173ff --- /dev/null +++ b/pages/common/mods.md @@ -0,0 +1,32 @@ +# mods + +> AI for the command line, built for pipelines. +> More information: . + +- Ask a generic question: + +`mods "{{write me a poem about platypuses}}"` + +- Open settings in your `$EDITOR`: + +`mods --settings` + +- Ask for comments on your code, in markdown format: + +`mods --format "{{what are your thoughts on improving this code?}}" < {{path/to/file}}` + +- Ask for help with your documentation, in markdown format: + +`mods --format "{{write a new section to this readme for a feature that sends you a free rabbit if you hit r}}" < {{README.md}}` + +- Organize your videos, in markdown format: + +`ls {{path/to/videos}} | mods --format "{{organize these by decade and summarize}}"` + +- Read through raw HTML and summarize the contents, in markdown format: + +`curl "{{https://api.open-meteo.com/v1/forecast?latitude=29.00&longitude=-90.00¤t_weather=true&hourly=temperature_2m,relativehumidity_2m,windspeed_10m}}" | mods --format "{{summarize this weather data for a human}}"` + +- Display help and exit: + +`mods --help` diff --git a/pages/common/mogrify.md b/pages/common/mogrify.md index 3f86661974..b43a240ae9 100644 --- a/pages/common/mogrify.md +++ b/pages/common/mogrify.md @@ -1,14 +1,14 @@ # mogrify > Perform operations on multiple images, such as resizing, cropping, flipping, and adding effects. -> Changes are applied directly to the original file. +> Changes are applied directly to the original file. Part of ImageMagick. > More information: . - Resize all JPEG images in the directory to 50% of their initial size: `mogrify -resize {{50%}} {{*.jpg}}` -- Resize all images starting with "DSC" to 800x600: +- Resize all images starting with `DSC` to 800x600: `mogrify -resize {{800x600}} {{DSC*}}` diff --git a/pages/common/molecule.md b/pages/common/molecule.md index e4fe8164cb..a0442c1f5a 100644 --- a/pages/common/molecule.md +++ b/pages/common/molecule.md @@ -19,6 +19,10 @@ `molecule converge` +- List scenarios of the instance: + +`molecule matrix converge` + - Log in into the instance: `molecule login` diff --git a/pages/common/mongo.md b/pages/common/mongo.md index 9ac28189f5..0d460a52a7 100644 --- a/pages/common/mongo.md +++ b/pages/common/mongo.md @@ -1,20 +1,21 @@ # mongo -> MongoDB interactive shell client. +> The legacy MongoDB shell. See `mongosh` for the new shell. +> Note: all connection options can be replaced with one string: `mongodb://user@host:port/db_name?authSource=authdb_name`. > More information: . +- Connect to a local database on the default port (`mongodb://localhost:27017`): + +`mongo` + - Connect to a database: -`mongo {{database}}` +`mongo --host {{host}} --port {{port}} {{db_name}}` -- Connect to a database running on a given host on a given port: +- Authenticate using the specified username on the specified database (you will be prompted for a password): -`mongo --host {{host}} --port {{port}} {{database}}` +`mongo --host {{host}} --port {{port}} --username {{username}} --authenticationDatabase {{authdb_name}} {{db_name}}` -- Connect to a database with a given username; user will be prompted for password: +- Evaluate a JavaScript expression on a database: -`mongo --username {{username}} {{database}} --password` - -- Evaluate a JavaScript expression on the database: - -`mongo --eval '{{JSON.stringify(db.foo.findOne())}}' {{database}}` +`mongo --eval '{{JSON.stringify(db.foo.findOne())}}' {{db_name}}` diff --git a/pages/common/mongod.md b/pages/common/mongod.md index 462da59ba5..1aeb792313 100644 --- a/pages/common/mongod.md +++ b/pages/common/mongod.md @@ -3,14 +3,18 @@ > The MongoDB database server. > More information: . +- Specify the storage directory (default: `/data/db` on Linux and MacOS, `C:\data\db` on Windows): + +`mongod --dbpath {{path/to/directory}}` + - Specify a config file: -`mongod --config {{filename}}` +`mongod --config {{path/to/file}}` -- Specify the port to listen on: +- Specify the port to listen on (default: 27017): `mongod --port {{port}}` -- Specify database profiling level. 0 is off, 1 is only slow operations, 2 is all: +- Specify the database profiling level. 0 is off, 1 is only slow operations, 2 is all (default: 0): `mongod --profile {{0|1|2}}` diff --git a/pages/common/mongosh.md b/pages/common/mongosh.md new file mode 100644 index 0000000000..e3e592b196 --- /dev/null +++ b/pages/common/mongosh.md @@ -0,0 +1,21 @@ +# mongosh + +> A new shell for MongoDB, replacement for `mongo`. +> Note: all connection options can be replaced with one string: `mongodb://user@host:port/db_name?authSource=authdb_name`. +> More information: . + +- Connect to a local database on the default port (`mongodb://localhost:27017`): + +`mongosh` + +- Connect to a database: + +`mongosh --host {{host}} --port {{port}} {{db_name}}` + +- Authenticate using the specified username on the specified database (you will be prompted for a password): + +`mongosh --host {{host}} --port {{port}} --username {{username}} --authenticationDatabase {{authdb_name}} {{db_name}}` + +- Evaluate a JavaScript expression on a database: + +`mongosh --eval '{{JSON.stringify(db.foo.findOne())}}' {{db_name}}` diff --git a/pages/common/montage.md b/pages/common/montage.md index 453ce13f8a..660ab62f96 100644 --- a/pages/common/montage.md +++ b/pages/common/montage.md @@ -1,25 +1,25 @@ # montage -> ImageMagick image montage tool. -> Tiles images into a customisable grid. +> Tiles images into a customizable grid. +> Part of ImageMagick. > More information: . - Tile images into a grid, automatically resizing images larger than the grid cell size: -`montage {{image1.png}} {{image2.jpg}} {{imageN.png}} montage.jpg` +`montage {{path/to/image1.jpg path/to/image2.jpg ...}} {{path/to/montage.jpg}}` - Tile images into a grid, automatically calculating the grid cell size from the largest image: -`montage {{image1.png}} {{image2.jpg}} {{imageN.png}} -geometry +0+0 montage.jpg` +`montage {{path/to/image1.jpg path/to/image2.jpg ...}} -geometry {{+0+0}} {{path/to/montage.jpg}}` - Set the grid cell size and resize images to fit it before tiling: -`montage {{image1.png}} {{image2.jpg}} {{imageN.png}} -geometry 640x480+0+0 montage.jpg` +`montage {{path/to/image1.jpg path/to/image2.jpg ...}} -geometry {{640x480+0+0}} {{path/to/montage.jpg}}` - Limit the number of rows and columns in the grid, causing input images to overflow into multiple output montages: -`montage {{image1.png}} {{image2.jpg}} {{imageN.png}} -geometry +0+0 -tile 2x3 montage_%d.jpg` +`montage {{path/to/image1.jpg path/to/image2.jpg ...}} -geometry {{+0+0}} -tile {{2x3}} {{montage_%d.jpg}}` - Resize and crop images to fill their grid cells before tiling: -`montage {{image1.png}} {{image2.jpg}} {{imageN.png}} -geometry +0+0 -resize 640x480^ -gravity center -crop 640x480+0+0 montage.jpg` +`montage {{path/to/image1.jpg path/to/image2.jpg ...}} -geometry {{+0+0}} -resize {{640x480^}} -gravity {{center}} -crop {{640x480+0+0}} {{path/to/montage.jpg}}` diff --git a/pages/common/mosquitto.md b/pages/common/mosquitto.md index d2c690b206..b7a7070584 100644 --- a/pages/common/mosquitto.md +++ b/pages/common/mosquitto.md @@ -3,7 +3,7 @@ > An MQTT broker. > More information: . -- Start mosquitto: +- Start Mosquitto: `mosquitto` diff --git a/pages/common/mp4box.md b/pages/common/mp4box.md index 304db9f8db..a18a166eb7 100644 --- a/pages/common/mp4box.md +++ b/pages/common/mp4box.md @@ -5,7 +5,7 @@ - Display information about an existing MP4 file: -`mp4box -info {{filename}}` +`mp4box -info {{path/to/file}}` - Add an SRT subtitle file into an MP4 file: diff --git a/pages/common/msmtp.md b/pages/common/msmtp.md index b9eda22f76..354cf91088 100644 --- a/pages/common/msmtp.md +++ b/pages/common/msmtp.md @@ -1,7 +1,7 @@ # msmtp > An SMTP client. -> It reads text from standard input and sends it to an SMTP server. +> It reads text from `stdin` and sends it to an SMTP server. > More information: . - Send an email using the default account configured in `~/.msmtprc`: diff --git a/pages/common/mtr.md b/pages/common/mtr.md index f7658d720a..f018d9eccb 100644 --- a/pages/common/mtr.md +++ b/pages/common/mtr.md @@ -1,28 +1,32 @@ # mtr > Matt's Traceroute: combined traceroute and ping tool. -> More information: . +> More information: . - Traceroute to a host and continuously ping all intermediary hops: -`mtr {{host}}` +`mtr {{example.com}}` - Disable IP address and host name mapping: -`mtr -n {{host}}` +`mtr --no-dns {{example.com}}` - Generate output after pinging each hop 10 times: -`mtr -w {{host}}` +`mtr --report-wide {{example.com}}` - Force IP IPv4 or IPV6: -`mtr -4 {{host}}` +`mtr -4 {{example.com}}` - Wait for a given time (in seconds) before sending another packet to the same hop: -`mtr -i {{seconds}} {{host}}` +`mtr --interval {{10}} {{example.com}}` - Display the Autonomous System Number (ASN) for each hop: -`mtr --aslookup {{hostname}}` +`mtr --aslookup {{example.com}}` + +- Display both IP address and reverse DNS name: + +`mtr --show-ips {{example.com}}` diff --git a/pages/common/multipass.md b/pages/common/multipass.md index c06fd1175e..327c1126da 100644 --- a/pages/common/multipass.md +++ b/pages/common/multipass.md @@ -1,6 +1,6 @@ # multipass -> CLI to manage Ubuntu virtual machines using native hypervisors. +> Manage Ubuntu virtual machines using native hypervisors. > More information: . - List the aliases that can be used to launch an instance: diff --git a/pages/linux/mumble.md b/pages/common/mumble.md similarity index 100% rename from pages/linux/mumble.md rename to pages/common/mumble.md diff --git a/pages/common/mupdf.md b/pages/common/mupdf.md index 63bba138af..dd6d35c4a6 100644 --- a/pages/common/mupdf.md +++ b/pages/common/mupdf.md @@ -5,23 +5,23 @@ - Open a PDF on the first page: -`mupdf {{filename}}` +`mupdf {{path/to/file}}` - Open a PDF on page 3: -`mupdf {{filename}} {{3}}` +`mupdf {{path/to/file}} {{3}}` - Open a password secured PDF: -`mupdf -p {{password}} {{filename}}` +`mupdf -p {{password}} {{path/to/file}}` - Open a PDF with an initial zoom level, specified as DPI, of 72: -`mupdf -r {{72}} {{filename}}` +`mupdf -r {{72}} {{path/to/file}}` - Open a PDF with inverted color: -`mupdf -I {{filename}}` +`mupdf -I {{path/to/file}}` - Open a PDF tinted red #FF0000 (hexadecimal color syntax RRGGBB): diff --git a/pages/common/musl-gcc.md b/pages/common/musl-gcc.md new file mode 100644 index 0000000000..57e86fda14 --- /dev/null +++ b/pages/common/musl-gcc.md @@ -0,0 +1,9 @@ +# musl-gcc + +> A wrapper around `gcc` that automatically sets options for linking against musl libc. +> All options specified are passed directly to `gcc`. +> More information: . + +- View documentation for `gcc`: + +`tldr gcc` diff --git a/pages/common/mutool.md b/pages/common/mutool.md index c75a83327d..ee2dcacec4 100644 --- a/pages/common/mutool.md +++ b/pages/common/mutool.md @@ -1,28 +1,28 @@ # mutool > Convert PDF files, query information and extract data. -> More information: . +> More information: . -- Convert pages 1-10 into 10 PNGs: +- Convert pages 1-10 into 10 PNGs (Note: `%nd` in the output placeholder must be replaced with a print modifier like `%d` or `%2d`): -`mutool convert -o {{image%d.png}} {{file.pdf}} {{1-10}}` +`mutool convert -o {{path/to/output%nd.png}} {{path/to/input.pdf}} {{1-10}}` -- Convert pages 2, 3 and 5 of a PDF into text in the standard output: +- Convert pages 2, 3 and 5 of a PDF into text in `stdout`: -`mutool draw -F {{txt}} {{file.pdf}} {{2,3,5}}` +`mutool draw -F {{txt}} {{path/to/input.pdf}} {{2,3,5}}` -- Concatenate two PDFs: +- Concatenate multiple PDF files: -`mutool merge -o {{output.pdf}} {{input1.pdf}} {{input2.pdf}}` +`mutool merge -o {{path/to/output.pdf}} {{path/to/input1.pdf path/to/input2.pdf ...}}` - Query information about all content embedded in a PDF: -`mutool info {{input.pdf}}` +`mutool info {{path/to/input.pdf}}` - Extract all images, fonts and resources embedded in a PDF out into the current directory: -`mutool extract {{input.pdf}}` +`mutool extract {{path/to/input.pdf}}` - Print the outline (table of contents) of a PDF: -`mutool show {{input.pdf}} outline` +`mutool show {{path/to/input.pdf}} outline` diff --git a/pages/common/mv.md b/pages/common/mv.md index 8ddd2174fb..6a2a5532ff 100644 --- a/pages/common/mv.md +++ b/pages/common/mv.md @@ -3,26 +3,30 @@ > Move or rename files and directories. > More information: . -- Move a file to an arbitrary location: +- Rename a file or directory when the target is not an existing directory: -`mv {{source}} {{target}}` +`mv {{path/to/source}} {{path/to/target}}` -- Move files into another directory, keeping the filenames: +- Move a file or directory into an existing directory: -`mv {{source1}} {{source2}} {{source3}} {{target_directory}}` +`mv {{path/to/source}} {{path/to/existing_directory}}` + +- Move multiple files into an existing directory, keeping the filenames unchanged: + +`mv {{path/to/source1 path/to/source2 ...}} {{path/to/existing_directory}}` - Do not prompt for confirmation before overwriting existing files: -`mv -f {{source}} {{target}}` +`mv -f {{path/to/source}} {{path/to/target}}` - Prompt for confirmation before overwriting existing files, regardless of file permissions: -`mv -i {{source}} {{target}}` +`mv -i {{path/to/source}} {{path/to/target}}` - Do not overwrite existing files at the target: -`mv -n {{source}} {{target}}` +`mv -n {{path/to/source}} {{path/to/target}}` - Move files in verbose mode, showing files after they are moved: -`mv -v {{source}} {{target}}` +`mv -v {{path/to/source}} {{path/to/target}}` diff --git a/pages/common/mvn.md b/pages/common/mvn.md index edc9ce461e..2233985c0d 100644 --- a/pages/common/mvn.md +++ b/pages/common/mvn.md @@ -30,8 +30,8 @@ - Clean and then package the code with a given build profile: -`mvn clean -P{{profile}} package` +`mvn clean -P {{profile}} package` - Run a class with a main method: -`mvn exec:java -Dexec.mainClass="{{com.example.Main}}" -Dexec.args="{{arg1 arg2}}"` +`mvn exec:java -Dexec.mainClass="{{com.example.Main}}" -Dexec.args="{{argument1 argument2 ...}}"` diff --git a/pages/common/mysqlcheck.md b/pages/common/mysqlcheck.md new file mode 100644 index 0000000000..543d4b8933 --- /dev/null +++ b/pages/common/mysqlcheck.md @@ -0,0 +1,20 @@ +# mysqlcheck + +> Check and repair MySQL tables. +> More information: . + +- Check a table: + +`mysqlcheck --check {{table}}` + +- Check a table and provide credentials to access it: + +`mysqlcheck --check {{table}} --user {{username}} --password {{password}}` + +- Repair a table: + +`mysqlcheck --repair {{table}}` + +- Optimize a table: + +`mysqlcheck --optimize {{table}}` diff --git a/pages/common/mytop.md b/pages/common/mytop.md index 2c9220121d..841cff4b6b 100644 --- a/pages/common/mytop.md +++ b/pages/common/mytop.md @@ -3,7 +3,7 @@ > Display MySQL server performance info like `top`. > More information: . -- Start mytop: +- Start `mytop`: `mytop` diff --git a/pages/common/nano.md b/pages/common/nano.md index 337bf652fc..85e2c18a3a 100644 --- a/pages/common/nano.md +++ b/pages/common/nano.md @@ -1,28 +1,32 @@ # nano -> Simple, easy to use command-line text editor. An enhanced, free Pico clone. +> Command-line text editor. An enhanced `Pico` clone. > More information: . -- Open a new file in nano: +- Start the editor: `nano` -- Open a specific file: +- Start the editor without using configuration files: -`nano {{path/to/file}}` +`nano --ignorercfiles` -- Open a specific file, positioning the cursor at the specified line and column: +- Open specific files, moving to the next file when closing the previous one: + +`nano {{path/to/file1 path/to/file2 ...}}` + +- Open a file and position the cursor at a specific line and column: `nano +{{line}},{{column}} {{path/to/file}}` -- Open a specific file and enable soft wrapping: +- Open a file and enable soft wrapping: `nano --softwrap {{path/to/file}}` -- Open a specific file and indent new lines to the previous lines' indentation: +- Open a file and indent new lines to the previous line's indentation: `nano --autoindent {{path/to/file}}` -- Open nano and create a backup file (`file~`) when saving edits: +- Open a file and create a backup file (`path/to/file~`) on save: `nano --backup {{path/to/file}}` diff --git a/pages/common/nbtscan.md b/pages/common/nbtscan.md index 165e1c2a89..79698a2480 100644 --- a/pages/common/nbtscan.md +++ b/pages/common/nbtscan.md @@ -19,6 +19,6 @@ `nbtscan -e {{192.168.0.1/24}}` -- Read IP addresses / networks to scan from a file: +- Read IP addresses/networks to scan from a file: `nbtscan -f {{path/to/file.txt}}` diff --git a/pages/common/nc.md b/pages/common/nc.md index 72a7f72203..13a79a5f59 100644 --- a/pages/common/nc.md +++ b/pages/common/nc.md @@ -1,32 +1,32 @@ # nc -> Netcat is a versatile utility for working with TCP or UDP data. -> More information: . +> Netcat is a versatile utility for redirecting IO into a network stream. +> More information: . -- Listen on a specified port and print any data received: +- Start a listener on the specified TCP port and send a file into it: -`nc -l {{port}}` +`nc -l -p {{port}} < {{filename}}` -- Connect to a certain port: +- Connect to a target listener on the specified port and receive a file from it: -`nc {{ip_address}} {{port}}` +`nc {{host}} {{port}} > {{received_filename}}` -- Set a timeout: +- Scan the open TCP ports of a specified host: -`nc -w {{timeout_in_seconds}} {{ipaddress}} {{port}}` +`nc -v -z -w {{timeout_in_seconds}} {{host}} {{start_port}}-{{end_port}}` -- Keep the server up after the client detaches: +- Start a listener on the specified TCP port and provide your local shell access to the connected party (this is dangerous and can be abused): -`nc -k -l {{port}}` +`nc -l -p {{port}} -e {{shell_executable}}` -- Keep the client up even after EOF: +- Connect to a target listener and provide your local shell access to the remote party (this is dangerous and can be abused): -`nc -q {{timeout}} {{ip_address}}` +`nc {{host}} {{port}} -e {{shell_executable}}` -- Scan the open ports of a specified host: +- Act as a proxy and forward data from a local TCP port to the given remote host: -`nc -v -z {{ip_address}} {{port}}` +`nc -l -p {{local_port}} | nc {{host}} {{remote_port}}` -- Act as proxy and forward data from a local TCP port to the given remote host: +- Send an HTTP GET request: -`nc -l {{local_port}} | nc {{hostname}} {{remote_port}}` +`echo -e "GET / HTTP/1.1\nHost: {{host}}\n\n" | nc {{host}} 80` diff --git a/pages/common/ncu.md b/pages/common/ncu.md new file mode 100644 index 0000000000..2a54d800fb --- /dev/null +++ b/pages/common/ncu.md @@ -0,0 +1,25 @@ +# ncu + +> Find newer versions of package dependencies and check outdated npm packages locally or globally. +> `ncu` only updates dependency versions in `package.json`. To install the new versions, run `npm install` afterwards. +> More information: . + +- List outdated dependencies in the current directory: + +`ncu` + +- List outdated global npm packages: + +`ncu -g` + +- Upgrade all dependencies in the current directory: + +`ncu -u` + +- Interactively upgrade dependencies in the current directory: + +`ncu -i` + +- Display help: + +`ncu -h` diff --git a/pages/common/neofetch.md b/pages/common/neofetch.md index 64daf8ce51..c351c35d03 100644 --- a/pages/common/neofetch.md +++ b/pages/common/neofetch.md @@ -1,6 +1,6 @@ # neofetch -> CLI tool to display information about your operating system, software and hardware. +> Display information about your operating system, software and hardware. > More information: . - Return the default config, and create it if it's the first time the program runs: diff --git a/pages/common/neomutt.md b/pages/common/neomutt.md index 3f93c30006..47f936bc6c 100644 --- a/pages/common/neomutt.md +++ b/pages/common/neomutt.md @@ -1,6 +1,6 @@ # neomutt -> NeoMutt command line email client. +> NeoMutt command-line email client. > More information: . - Open the specified mailbox: diff --git a/pages/common/neotoppm.md b/pages/common/neotoppm.md new file mode 100644 index 0000000000..e781f90055 --- /dev/null +++ b/pages/common/neotoppm.md @@ -0,0 +1,12 @@ +# neotoppm + +> Convert an Atari Neochrome NEO file into a PPM image. +> More information: . + +- Generate the PPM image as output for an Atari Neochrome NEO file as input: + +`neotoppm {{path/to/file.neo}}` + +- Display version: + +`neotoppm -version` diff --git a/pages/common/netcat.md b/pages/common/netcat.md new file mode 100644 index 0000000000..94e90f60fe --- /dev/null +++ b/pages/common/netcat.md @@ -0,0 +1,7 @@ +# netcat + +> This command is an alias of `nc`. + +- View documentation for the original command: + +`tldr nc` diff --git a/pages/common/newsboat.md b/pages/common/newsboat.md index 4dab865e0a..ab685967e5 100644 --- a/pages/common/newsboat.md +++ b/pages/common/newsboat.md @@ -11,7 +11,7 @@ `echo {{http://example.com/path/to/feed}} >> "${HOME}/.newsboat/urls"` -- Start newsboat and refresh all feeds on startup: +- Start Newsboat and refresh all feeds on startup: `newsboat -r` diff --git a/pages/common/ng.md b/pages/common/ng.md index 6771dc5e69..687a9bedef 100644 --- a/pages/common/ng.md +++ b/pages/common/ng.md @@ -1,6 +1,6 @@ # ng -> Command-line Interface (CLI) for creating and managing Angular applications. +> Create and manage Angular applications. > More information: . - Create a new Angular application inside a directory: diff --git a/pages/common/nimble.md b/pages/common/nimble.md index 70a3246c3a..b62b4b7fdc 100644 --- a/pages/common/nimble.md +++ b/pages/common/nimble.md @@ -10,7 +10,7 @@ - Install a package: -`nimble install {{package_name}}` +`nimble install {{package}}` - List installed packages: diff --git a/pages/common/ninja.md b/pages/common/ninja.md index d2372c66ec..f001a0bfc1 100644 --- a/pages/common/ninja.md +++ b/pages/common/ninja.md @@ -7,6 +7,10 @@ `ninja` +- Build in the current directory, executing 4 jobs at a time in parallel: + +`ninja -j {{4}}` + - Build a program in a given directory: `ninja -C {{path/to/directory}}` diff --git a/pages/common/nix-build.md b/pages/common/nix-build.md index c65c0fa140..760061f442 100644 --- a/pages/common/nix-build.md +++ b/pages/common/nix-build.md @@ -1,12 +1,13 @@ # nix-build > Build a Nix expression. -> More information: . +> See also: `tldr nix3 build`. +> More information: . - Build a Nix expression: -`nix-build --attr {{expression_name}}` +`nix-build '' --attr {{firefox}}` - Build a sandboxed Nix expression (on non-NixOS): -`nix-build --attr {{expression_name}} --option sandbox true` +`nix-build '' --attr {{firefox}} --option sandbox true` diff --git a/pages/common/nix-classic.md b/pages/common/nix-classic.md new file mode 100644 index 0000000000..e3d3fcc89c --- /dev/null +++ b/pages/common/nix-classic.md @@ -0,0 +1,29 @@ +# Nix classic interface + +> A classic, stable interface to a powerful package manager that makes package management reliable, reproducible, and declarative. +> Some Nix commands such as `nix-build`, `nix-shell`, `nix-env`, and `nix-store` have their own pages. See also: `tldr nix`. +> More information: . + +- Search for a package in nixpkgs via its name: + +`nix-env -qaP {{search_term_regexp}}` + +- Start a shell with the specified packages available: + +`nix-shell -p {{pkg1 pkg2 pkg3...}}` + +- Install some packages permanently: + +`nix-env -iA {{nixpkgs.pkg1 nixpkgs.pkg2...}}` + +- Show all dependencies of a store path (package), in a tree format: + +`nix-store --query --tree {{/nix/store/...}}` + +- Update the channels (repositories): + +`nix-channel --update` + +- Remove unused paths from Nix store: + +`nix-collect-garbage` diff --git a/pages/common/nix-collect-garbage.md b/pages/common/nix-collect-garbage.md index 6c38d5d7f9..c5f8e094ba 100644 --- a/pages/common/nix-collect-garbage.md +++ b/pages/common/nix-collect-garbage.md @@ -14,4 +14,4 @@ - Delete all store paths older than 30 days: -`sudo nix-collect-garbage --delete-older-than {{30d}}` +`sudo nix-collect-garbage --delete-older-than 30d` diff --git a/pages/common/nix-shell.md b/pages/common/nix-shell.md index f565a33ca3..12d4be4d06 100644 --- a/pages/common/nix-shell.md +++ b/pages/common/nix-shell.md @@ -1,7 +1,8 @@ # nix-shell > Start an interactive shell based on a Nix expression. -> More information: . +> See also: `tldr nix3 shell`. +> More information: . - Start with nix expression in `shell.nix` or `default.nix` in the current directory: @@ -9,7 +10,7 @@ - Run shell command in non-interactive shell and exit: -`nix-shell --run "{{command}} {{command_arguments}}"` +`nix-shell --run "{{command}} {{argument1 argument2 ...}}"` - Start with expression in `default.nix` in the current directory: @@ -17,12 +18,12 @@ - Start with packages loaded from nixpkgs: -`nix-shell --packages {{package_name_1}} {{package_name_2}}` +`nix-shell --packages {{package1 package2 ...}}` - Start with packages loaded from specific nixpkgs revision: -`nix-shell --packages {{package_names}} -I nixpkgs={{https://github.com/NixOS/nixpkgs/archive/nixpkgs_revision.tar.gz}}` +`nix-shell --packages {{package1 package2 ...}} -I nixpkgs={{https://github.com/NixOS/nixpkgs/archive/nixpkgs_revision.tar.gz}}` - Evaluate rest of file in specific interpreter, for use in `#!-scripts` (see ): -`nix-shell -i {{interpreter}} --packages {{package_names}}` +`nix-shell -i {{interpreter}} --packages {{package1 package2 ...}}` diff --git a/pages/common/nix-store.md b/pages/common/nix-store.md new file mode 100644 index 0000000000..9bc8bbb5d9 --- /dev/null +++ b/pages/common/nix-store.md @@ -0,0 +1,29 @@ +# nix-store + +> Manipulate or query the Nix store. +> See also: `tldr nix3 store`. +> More information: . + +- Collect garbage, such as removing unused paths: + +`nix-store --gc` + +- Hard-link identical files together to reduce space usage: + +`nix-store --optimise` + +- Delete a specific store path (must be unused): + +`nix-store --delete {{/nix/store/...}}` + +- Show all dependencies of a store path (package), in a tree format: + +`nix-store --query --tree {{/nix/store/...}}` + +- Calculate the total size of a certain store path with all the dependencies: + +`du -cLsh $(nix-store --query --references {{/nix/store/...}})` + +- Show all dependents of a particular store path: + +`nix-store --query --referrers {{/nix/store/...}}` diff --git a/pages/common/nix.md b/pages/common/nix.md index f792a2906f..074e0f88a9 100644 --- a/pages/common/nix.md +++ b/pages/common/nix.md @@ -1,24 +1,34 @@ # nix -> Utilities for the Nix language and store. -> More information: . +> A powerful package manager that makes package management reliable, reproducible, and declarative. +> `nix` is experimental and requires enabling experimental features. For a classic, stable interface, see `tldr nix classic`. +> Some `nix` subcommands such as `build`, `develop`, `flake`, `registry`, `profile`, `search`, `repl`, `store`, `edit`, `why-depends`, etc. have their own usage documentation. +> More information: . -- Search for a package via its name or description: +- Enable the `nix` command: -`nix search {{search_term}}` +`mkdir -p ~/.config/nix; echo 'experimental-features = nix-command flakes' > ~/.config/nix/nix.conf` -- Start a Nix shell with the specified packages available: +- Display help for the `nix` subcommand: -`nix run {{nixpkgs.pkg1 nixpkgs.pkg2 nixpkgs.pkg3...}}` +`nix help {{subcommand}}` -- Optimise Nix store disk usage by combining duplicate files: +- Search for a package in nixpkgs via its name or description: -`nix store optimise` +`nix search nixpkgs {{search_term}}` + +- Start a shell with the specified packages from nixpkgs available: + +`nix shell {{nixpkgs#pkg1 nixpkgs#pkg2 nixpkgs#pkg3 ...}}` + +- Install some packages from nixpkgs permanently: + +`nix profile install {{nixpkgs#pkg1 nixpkgs#pkg2 nixpkgs#pkg3 ...}}` + +- Remove unused paths from Nix store to free up space: + +`nix store gc` - Start an interactive environment for evaluating Nix expressions: `nix repl` - -- Upgrade Nix to the latest stable version: - -`nix upgrade-nix` diff --git a/pages/common/nix3-build.md b/pages/common/nix3-build.md new file mode 100644 index 0000000000..a3b3e10a60 --- /dev/null +++ b/pages/common/nix3-build.md @@ -0,0 +1,21 @@ +# nix build + +> Build a Nix expression (downloading from the cache when possible). +> See also: `tldr nix-build`. See `tldr nix3 flake` for information about flakes. +> More information: . + +- Build a package from nixpkgs, symlinking the result to `./result`: + +`nix build {{nixpkgs#pkg}}` + +- Build a package from a flake in the current directory, showing the build logs in the process: + +`nix build -L {{.#pkg}}` + +- Build the default package from a flake in some directory: + +`nix build {{./path/to/directory}}` + +- Build a package without making the `result` symlink, instead printing the store path to the `stdout`: + +`nix build --no-link --print-out-paths` diff --git a/pages/common/nix3-develop.md b/pages/common/nix3-develop.md new file mode 100644 index 0000000000..16a2b7baf9 --- /dev/null +++ b/pages/common/nix3-develop.md @@ -0,0 +1,16 @@ +# nix develop + +> Run a bash shell that provides the build environment of a derivation. +> More information: . + +- Start a shell with all dependencies of a package from nixpkgs available: + +`nix develop {{nixpkgs#pkg}}` + +- Start a development shell for the default package in a flake in the current directory: + +`nix develop` + +- In that shell, configure and build the sources: + +`configurePhase; buildPhase` diff --git a/pages/common/nix3-edit.md b/pages/common/nix3-edit.md new file mode 100644 index 0000000000..1ff3d06465 --- /dev/null +++ b/pages/common/nix3-edit.md @@ -0,0 +1,12 @@ +# nix edit + +> Open the Nix expression of a Nix package in $EDITOR. +> More information: . + +- Open the source of the Nix expression of a package from nixpkgs in your `$EDITOR`: + +`nix edit {{nixpkgs#pkg}}` + +- Dump the source of a package to `stdout`: + +`EDITOR=cat nix edit {{nixpkgs#pkg}}` diff --git a/pages/common/nix3-flake.md b/pages/common/nix3-flake.md new file mode 100644 index 0000000000..9ed8992cd4 --- /dev/null +++ b/pages/common/nix3-flake.md @@ -0,0 +1,24 @@ +# nix flake + +> Manage Nix flakes. +> More information: . + +- See documentation about what Nix flakes are: + +`nix flake --help` + +- Create a new flake (just the `flake.nix` file) from the default template, in the current directory: + +`nix flake init` + +- Update all inputs (dependencies) of the flake in the current directory: + +`nix flake update` + +- Update a specific input (dependency) of the flake in the current directory: + +`nix flake lock --update-input {{input}}` + +- Show all the outputs of a flake on github: + +`nix flake show {{github:owner/repo}}` diff --git a/pages/common/nix3-profile.md b/pages/common/nix3-profile.md new file mode 100644 index 0000000000..5ce247843c --- /dev/null +++ b/pages/common/nix3-profile.md @@ -0,0 +1,28 @@ +# nix profile + +> Install, update and remove packages from Nix profiles. +> More information: . + +- Install some packages from nixpkgs into the default profile: + +`nix profile install {{nixpkgs#pkg1 nixpkgs#pkg2 ...}}` + +- Install a package from a flake on GitHub into a custom profile: + +`nix profile install {{github:owner/repo/pkg}} --profile {{./path/to/directory}}` + +- List packages currently installed in the default profile: + +`nix profile list` + +- Remove a package installed from nixpkgs from the default profile, by name: + +`nix profile remove {{legacyPackages.x86_64-linux.pkg}}` + +- Upgrade packages in the default to the latest available versions: + +`nix profile upgrade` + +- Rollback (cancel) the latest action on the default profile: + +`nix profile rollback` diff --git a/pages/common/nix3-registry.md b/pages/common/nix3-registry.md new file mode 100644 index 0000000000..d516b02827 --- /dev/null +++ b/pages/common/nix3-registry.md @@ -0,0 +1,25 @@ +# nix registry + +> Manage a Nix flake registry. +> See `tldr nix3 flake` for information about flakes. +> More information: . + +- Pin the `nixpkgs` revision to the current version of the upstream repository: + +`nix registry pin {{nixpkgs}}` + +- Pin an entry to the latest version of the branch, or a particular reivision of a github repository: + +`nix registry pin {{entry}} {{github:owner/repo/branch_or_revision}}` + +- Add a new entry that always points to the latest version of a github repository, updating automatically: + +`nix registry add {{entry}} {{github:owner/repo}}` + +- Remove a registry entry: + +`nix registry remove {{entry}}` + +- See documentation about what Nix flake registries are: + +`nix registry --help` diff --git a/pages/common/nix3-repl.md b/pages/common/nix3-repl.md new file mode 100644 index 0000000000..d05cbb70e7 --- /dev/null +++ b/pages/common/nix3-repl.md @@ -0,0 +1,25 @@ +# nix repl + +> Start an interactive environment for evaluating Nix expressions. +> See for a description of the Nix expression language. +> More information: . + +- Start an interactive environment for evaluating Nix expressions: + +`nix repl` + +- Load all packages from a flake (e.g. `nixpkgs`) into scope: + +`:lf {{nixpkgs}}` + +- Build a package from an expression: + +`:b {{expression}}` + +- Start a shell with package from the expression available: + +`:u {{expression}}` + +- Start a shell with dependencies of the package from the expression available: + +`:s {{expression}}` diff --git a/pages/common/nix3-run.md b/pages/common/nix3-run.md new file mode 100644 index 0000000000..cdc7cf8cc0 --- /dev/null +++ b/pages/common/nix3-run.md @@ -0,0 +1,33 @@ +# nix run + +> Run an application from a Nix flake. +> See `tldr nix3 flake` for information about flakes. +> More information: . + +- Run the default application in the flake in the current directory: + +`nix run` + +- Run a command whose name matches the package name from nixpkgs (if you want a different command from that package, see `tldr nix3 shell`): + +`nix run nixpkgs#{{pkg}}` + +- Run a command with provided arguments: + +`nix run nixpkgs#{{vim}} -- {{path/to/file}}` + +- Run from a remote repository: + +`nix run {{remote_name}}:{{owner}}/{{repo}}` + +- Run from a remote repository using a specific tag, revision or branch: + +`nix run {{remote_name}}:{{owner}}/{{repo}}/{{reference}}` + +- Run from a remote repository specifying a subdirectory and a program: + +`nix run "{{remote_name}}:{{owner}}/{{repo}}?dir={{dir_name}}#{{app}}"` + +- Run the flake of a GitHub pull request: + +`nix run github:{{owner}}/{{repo}}/pull/{{number}}/head` diff --git a/pages/common/nix3-search.md b/pages/common/nix3-search.md new file mode 100644 index 0000000000..ecbe44152a --- /dev/null +++ b/pages/common/nix3-search.md @@ -0,0 +1,17 @@ +# nix search + +> Search for packages in a Nix flake. +> See `tldr nix3 flake` for information about flakes. +> More information: . + +- Search `nixpkgs` for a package based on its name or description: + +`nix search {{nixpkgs}} {{search_term...}}` + +- Show description of a package from nixpkgs: + +`nix search {{nixpkgs#pkg}}` + +- Show all packages available from a flake on github: + +`nix search {{github:owner/repo}}` diff --git a/pages/common/nix3-shell.md b/pages/common/nix3-shell.md new file mode 100644 index 0000000000..c82753f601 --- /dev/null +++ b/pages/common/nix3-shell.md @@ -0,0 +1,25 @@ +# nix shell + +> Start a shell in which the specified packages are available. +> See also: `tldr nix-shell`. See `tldr nix3 flake` for information about flakes. +> More information: . + +- Start an interactive shell with some packages from `nixpkgs`: + +`nix shell {{nixpkgs#pkg1 nixpkgs#packageSet.pkg2 ...}}` + +- Start a shell providing a package from an older version of `nixpkgs` (21.05): + +`nix shell {{nixpkgs/nixos-21.05#pkg}}` + +- Start a shell with the "default package" from a flake in the current directory, printing build logs if any builds happen: + +`nix shell -L` + +- Start a shell with a package from a flake on GitHub: + +`nix shell {{github:owner/repo#pkg}}` + +- Run a command in a shell with a package: + +`nix shell {{nixpkgs#pkg}} -c {{some-cmd --someflag 'Some other arguments'}}` diff --git a/pages/common/nix3-store.md b/pages/common/nix3-store.md new file mode 100644 index 0000000000..1cff469d29 --- /dev/null +++ b/pages/common/nix3-store.md @@ -0,0 +1,25 @@ +# nix store + +> Manipulate the Nix store. +> See also: `tldr nix-store`. +> More information: . + +- Collect garbage, i.e. remove unused paths to reduce space usage: + +`nix store gc` + +- Hard-link identical files together to reduce space usage: + +`nix store optimise` + +- Delete a specific store path (most be unused): + +`nix store delete {{/nix/store/...}}` + +- List a contents of the store path, on a remote store: + +`nix store --store {{https://cache.nixos.org}} ls {{/nix/store/...}}` + +- Show the differences in versions between two store paths, with their respective dependencies: + +`nix store diff-closures {{/nix/store/...}} {{/nix/store/...}}` diff --git a/pages/common/nix3-why-depends.md b/pages/common/nix3-why-depends.md new file mode 100644 index 0000000000..5dfd26ca59 --- /dev/null +++ b/pages/common/nix3-why-depends.md @@ -0,0 +1,12 @@ +# nix why-depends + +> Show why a package depends on another package. +> More information: . + +- Show why the currently running NixOS system requires a certain store path: + +`nix why-depends {{/run/current-system}} {{/nix/store/...}}` + +- Show why a package from nixpkgs requires another package as a _build-time_ dependency: + +`nix why-depends --derivation {{nixpkgs#dependent}} {{nixpkgs#dependency}}` diff --git a/pages/common/nl.md b/pages/common/nl.md index f14d67ceaa..719d1098b6 100644 --- a/pages/common/nl.md +++ b/pages/common/nl.md @@ -1,13 +1,13 @@ # nl -> A utility for numbering lines, either from a file, or from standard input. +> A utility for numbering lines, either from a file, or from `stdin`. > More information: . - Number non-blank lines in a file: `nl {{path/to/file}}` -- Read from standard output: +- Read from `stdout`: `cat {{path/to/file}} | nl {{options}} -` diff --git a/pages/common/nmap.md b/pages/common/nmap.md index 30346144b0..54aead56f8 100644 --- a/pages/common/nmap.md +++ b/pages/common/nmap.md @@ -1,6 +1,6 @@ # nmap -> Network exploration tool and security / port scanner. +> Network exploration tool and security/port scanner. > Some features only activate when Nmap is run with root privileges. > More information: . @@ -8,9 +8,9 @@ `nmap -O {{ip_or_hostname}}` -- Try to determine whether the specified hosts are up (ping scan) and what their names are: +- Try to determine whether the specified hosts are up (ping scan) and what their names and MAC addresses are: -`nmap -sn {{ip_or_hostname}} {{optional_another_address}}` +`sudo nmap -sn {{ip_or_hostname}} {{optional_another_address}}` - Also enable scripts, service detection, OS fingerprinting and traceroute: diff --git a/pages/common/nmblookup.md b/pages/common/nmblookup.md new file mode 100644 index 0000000000..7dd91b83a4 --- /dev/null +++ b/pages/common/nmblookup.md @@ -0,0 +1,12 @@ +# nmblookup + +> Discover SMB shares. +> More information: . + +- Find hosts in the local network with SMB shares: + +`nmblookup -S '*'` + +- Find hosts in the local network with SMB shares run by SAMBA: + +`nmblookup --status __SAMBA__` diff --git a/pages/common/node.md b/pages/common/node.md index 01d5dda396..b6c42d9a16 100644 --- a/pages/common/node.md +++ b/pages/common/node.md @@ -19,9 +19,9 @@ `node -e "{{code}}"` -- Evaluate and print result, useful to see node's dependencies versions: +- Evaluate and print the result, useful to print node's dependencies versions: -`node -p "{{process.versions}}"` +`node -p "process.versions"` - Activate inspector, pausing execution until a debugger is connected once source code is fully parsed: diff --git a/pages/common/nping.md b/pages/common/nping.md new file mode 100644 index 0000000000..45ffd3cc0b --- /dev/null +++ b/pages/common/nping.md @@ -0,0 +1,36 @@ +# nping + +> Network packet generation tool/ping utility. +> More information: . + +- Ping a specified host using ICMP if the user is allowed to, otherwise using TCP: + +`nping {{example.com}}` + +- Ping a specified host using ICMP assuming that the user is allowed to do so: + +`nping --icmp --privileged {{example.com}}` + +- Ping a specified host using UDP: + +`nping --udp {{example.com}}` + +- Ping a specified host on a given port using TCP: + +`nping --tcp --dest-port {{443}} {{example.com}}` + +- Ping a certain number of times: + +`nping --count {{10}} {{example.com}}` + +- Wait a certain amount of time between each ping: + +`nping --delay {{5s}} {{example.com}}` + +- Send the request over a specified interface: + +`nping --interface {{eth0}} {{example.com}}` + +- Set the Reserved/Evil bit in sent packets: + +`nping --evil {{example.com}}` diff --git a/pages/common/npm-query.md b/pages/common/npm-query.md index 19735925c9..3559d51e25 100644 --- a/pages/common/npm-query.md +++ b/pages/common/npm-query.md @@ -13,11 +13,11 @@ - Print dependencies with a specific name: -`npm query '#{{package_name}}'` +`npm query '#{{package}}'` - Print dependencies with a specific name and within a semantic versioning range: -`npm query #{{package_name}}@{{semantic_version}}` +`npm query #{{package}}@{{semantic_version}}` - Print dependencies which have no dependencies: diff --git a/pages/common/npm-why.md b/pages/common/npm-why.md index 561548c674..15e9bfe021 100644 --- a/pages/common/npm-why.md +++ b/pages/common/npm-why.md @@ -5,4 +5,4 @@ - Show why an npm package is installed: -`npm-why {{package_name}}` +`npm-why {{package}}` diff --git a/pages/common/npm.md b/pages/common/npm.md index 1fd495688d..ddaddedcfa 100644 --- a/pages/common/npm.md +++ b/pages/common/npm.md @@ -14,24 +14,24 @@ - Download a specific version of a package and add it to the list of dependencies in `package.json`: -`npm install {{module_name}}@{{version}}` +`npm install {{package_name}}@{{version}}` -- Download a package and add it to the list of dev dependencies in `package.json`: +- Download the latest version of a package and add it to the list of dev dependencies in `package.json`: -`npm install {{module_name}} --save-dev` +`npm install {{package_name}} --save-dev` -- Download a package and install it globally: +- Download the latest version of a package and install it globally: -`npm install --global {{module_name}}` +`npm install --global {{package_name}}` - Uninstall a package and remove it from the list of dependencies in `package.json`: -`npm uninstall {{module_name}}` +`npm uninstall {{package_name}}` - Print a tree of locally installed dependencies: `npm list` -- List top-level globally installed modules: +- List top-level globally installed packages: `npm list --global --depth={{0}}` diff --git a/pages/common/npx.md b/pages/common/npx.md index a728017f19..7db7365041 100644 --- a/pages/common/npx.md +++ b/pages/common/npx.md @@ -3,21 +3,21 @@ > Execute binaries from `npm` packages. > More information: . -- Execute the binary from a given npm module: +- Execute the command from a local or remote `npm` package: -`npx {{module_name}} {{command_arguments}}` +`npx {{command}} {{argument1 argument2 ...}}` -- In case a package has multiple binaries, specify the package name along with the binary: +- In case multiple commands with the same name exist, it is possible to explicitly specify the package: -`npx --package {{package_name}} {{module_name}}` +`npx --package {{package}} {{command}}` - Run a command if it exists in the current path or in `node_modules/.bin`: -`npx --no-install {{command}} {{command_arguments}}` +`npx --no-install {{command}} {{argument1 argument2 ...}}` -- Execute the binary from a given npm module suppressing any output from `npx` itself: +- Execute a specific command suppressing any output from `npx` itself: -`npx --quiet {{module_name}} {{command_arguments}}` +`npx --quiet {{command}} {{argument1 argument2 ...}}` - Display help: diff --git a/pages/common/nu.md b/pages/common/nu.md index 0b4371ae0d..953a99c760 100644 --- a/pages/common/nu.md +++ b/pages/common/nu.md @@ -18,4 +18,4 @@ - Execute a specific script with logging: -`nu --loglevel {{error|warn|info|debug|trace}} {{path/to/script.nu}}` +`nu --log-level {{error|warn|info|debug|trace}} {{path/to/script.nu}}` diff --git a/pages/common/nvme.md b/pages/common/nvme.md new file mode 100644 index 0000000000..c7eb20f870 --- /dev/null +++ b/pages/common/nvme.md @@ -0,0 +1,12 @@ +# nvme + +> NVMe storage user space utility. +> More information: . + +- List all nvme devices: + +`sudo nvme list` + +- Show device information: + +`sudo nvme smart-log {{device}}` diff --git a/pages/common/nx.md b/pages/common/nx.md index 328b63494e..c24bae3d18 100644 --- a/pages/common/nx.md +++ b/pages/common/nx.md @@ -1,6 +1,6 @@ # nx -> CLI utility for managing `nx` workspaces. +> Manage `nx` workspaces. > More information: . - Build a specific project: diff --git a/pages/common/objdump.md b/pages/common/objdump.md index 27d78d08a7..eac0825df5 100644 --- a/pages/common/objdump.md +++ b/pages/common/objdump.md @@ -7,6 +7,10 @@ `objdump -f {{binary}}` +- Display all header information: + +`objdump -x {{binary}}` + - Display the disassembled output of executable sections: `objdump -d {{binary}}` diff --git a/pages/common/ocamlfind.md b/pages/common/ocamlfind.md index cbed8c1944..d9dab15fea 100644 --- a/pages/common/ocamlfind.md +++ b/pages/common/ocamlfind.md @@ -6,12 +6,12 @@ - Compile a source file to a native binary and link with packages: -`ocamlfind ocamlopt -package {{package1}},{{package2}} -linkpkg -o {{executable}} {{source_file.ml}}` +`ocamlfind ocamlopt -package {{package1}},{{package2}} -linkpkg -o {{path/to/executable}} {{path/to/source.ml}}` - Compile a source file to a bytecode binary and link with packages: -`ocamlfind ocamlc -package {{package1}},{{package2}} -linkpkg -o {{executable}} {{source_file.ml}}` +`ocamlfind ocamlc -package {{package1}},{{package2}} -linkpkg -o {{path/to/executable}} {{path/to/source.ml}}` - Cross-compile for a different platform: -`ocamlfind -toolchain {{cross-toolchain}} ocamlopt -o {{executable}} {{source_file.ml}}` +`ocamlfind -toolchain {{cross-toolchain}} ocamlopt -o {{path/to/executable}} {{path/to/source.ml}}` diff --git a/pages/common/okular.md b/pages/common/okular.md index 1c0e8d3199..4dd2b82c60 100644 --- a/pages/common/okular.md +++ b/pages/common/okular.md @@ -1,13 +1,13 @@ # okular -> A universal document viewer. -> More information: . +> View documents. +> More information: . -- Launch Okular: +- Launch document viewer: `okular` -- Open specific documents in Okular: +- Open specific documents: `okular {{path/to/file1 path/to/file2 ...}}` @@ -15,11 +15,11 @@ `okular --page {{page_number}} {{path/to/file}}` -- Open a document in presentation mode: +- Open a specific document in presentation mode: `okular --presentation {{path/to/file}}` -- Open a document and start the print dialog: +- Open a specific document and start a print dialog: `okular --print {{path/to/file}}` diff --git a/pages/common/ooniprobe.md b/pages/common/ooniprobe.md new file mode 100644 index 0000000000..c875a7baaf --- /dev/null +++ b/pages/common/ooniprobe.md @@ -0,0 +1,33 @@ +# ooniprobe + +> Open Observatory of Network Interference (OONI). +> Test the blocking of websites and apps. Measure the speed and performance of your network. +> More information: . + +- List all tests performed: + +`ooniprobe list` + +- Show information about a specific test: + +`ooniprobe list {{7}}` + +- Run all available tests: + +`ooniprobe run all` + +- Perform a specific test: + +`ooniprobe run {{performance}}` + +- Check the availability of a specific website: + +`ooniprobe run websites --input {{https://ooni.org/}}` + +- Check the availability of all websites listed in a file: + +`ooniprobe run websites --input-file {{path/to/my-websites.txt}}` + +- Display detailed information about a test in JSON format: + +`ooniprobe show {{9}}` diff --git a/pages/common/op.md b/pages/common/op.md new file mode 100644 index 0000000000..3d2b7ed7ff --- /dev/null +++ b/pages/common/op.md @@ -0,0 +1,36 @@ +# op + +> Official CLI for 1Password's desktop app. +> More information: . + +- Sign in to a 1Password account: + +`op signin` + +- List all vaults: + +`op vault list` + +- Print item details in JSON format: + +`op item get {{item_name}} --format json` + +- Create a new item with a category in the default vault: + +`op item create --category {{category_name}}` + +- Print a referenced secret to `stdout`: + +`op read {{secret_reference}}` + +- Pass secret references from exported environment variables to a command: + +`op run -- {{command}}` + +- Pass secret references from an environment file to a command: + +`op run --env-file {{path/to/env_file.env}} -- {{command}}` + +- Read secret references from a file and save plaintext secrets to a file: + +`op inject --in-file {{path/to/input_file}} --out-file {{path/to/output_file}}` diff --git a/pages/common/opam.md b/pages/common/opam.md index 06a971b8a9..5e1780f7a2 100644 --- a/pages/common/opam.md +++ b/pages/common/opam.md @@ -10,15 +10,15 @@ - Search for packages: -`opam search {{package_name}}` +`opam search {{query}}` - Install a package and all of its dependencies: -`opam install {{package_name}}` +`opam install {{package}}` - Display detailed information about a package: -`opam show {{package_name}}` +`opam show {{package}}` - List all installed packages: diff --git a/pages/common/open.fish.md b/pages/common/open.fish.md new file mode 100644 index 0000000000..5ae4dabc8d --- /dev/null +++ b/pages/common/open.fish.md @@ -0,0 +1,25 @@ +# open + +> Opens files, directories, and URIs with default applications. +> This command is available through `fish` on operating systems without the built-in `open` command (e.g. Haiku and macOS). +> More information: . + +- Open a file with the associated application: + +`open {{path/to/file.ext}}` + +- Open all the files of a given extension in the current directory with the associated application: + +`open {{*.ext}}` + +- Open a directory using the default file manager: + +`open {{path/to/directory}}` + +- Open a website using the default web browser: + +`open {{https://example.com}}` + +- Open a specific URI using the default application that can handle it: + +`open {{tel:123}}` diff --git a/pages/common/open.md b/pages/common/open.md new file mode 100644 index 0000000000..aa91097e93 --- /dev/null +++ b/pages/common/open.md @@ -0,0 +1,15 @@ +# open + +> `open` can refer to multiple commands with the same name. + +- View documentation for the command available in macOS: + +`tldr open -p osx` + +- View documentation for the macOS command in older versions of `tldr` command-line client: + +`tldr open -o osx` + +- View documentation for the command available through `fish`: + +`tldr open.fish` diff --git a/pages/common/openai.md b/pages/common/openai.md new file mode 100644 index 0000000000..87a616fa26 --- /dev/null +++ b/pages/common/openai.md @@ -0,0 +1,20 @@ +# openai + +> CLI tool providing access to the OpenAI API. +> More information: . + +- List models: + +`openai api models.list` + +- Create a completion: + +`openai api completions.create --model {{ada}} --prompt {{"Hello world"}}` + +- Create a chat completion: + +`openai api chat_completions.create --model {{gpt-3.5-turbo}} --message {{user "Hello world"}}` + +- Generate images via DALL·E API: + +`openai api image.create --prompt {{"two dogs playing chess, cartoon"}} --num-images {{1}}` diff --git a/pages/common/openvpn.md b/pages/common/openvpn.md index 5920539d4b..d8ebe227eb 100644 --- a/pages/common/openvpn.md +++ b/pages/common/openvpn.md @@ -17,7 +17,7 @@ - Create a cryptographic key and save it to file: -`openvpn --genkey --secret {{path/to/key}}` +`openvpn --genkey secret {{path/to/key}}` - Try to set up a peer-to-peer tunnel on bob.example.com host with a static key: diff --git a/pages/common/opt.md b/pages/common/opt.md index 83cc365d7d..00fff3a156 100644 --- a/pages/common/opt.md +++ b/pages/common/opt.md @@ -1,6 +1,6 @@ # opt -> A tool that takes LLVM source files and runs specified optimizations and/or analysis on them. +> A tool that takes LLVM source files and runs specified optimizations and/or analyses on them. > More information: . - Run an optimization or analysis on a bitcode file: diff --git a/pages/common/osv-scanner.md b/pages/common/osv-scanner.md new file mode 100644 index 0000000000..be37255d77 --- /dev/null +++ b/pages/common/osv-scanner.md @@ -0,0 +1,28 @@ +# osv-scanner + +> Scan various mediums for dependencies and matches them against the OSV database. +> More information: . + +- Scan a docker image: + +`osv-scanner -D {{docker_image_name}}` + +- Scan a package lockfile: + +`osv-scanner -L {{path/to/lockfile}}` + +- Scan an SBOM file: + +`osv-scanner -S {{path/to/sbom_file}}` + +- Scan multiple directories recursively: + +`osv-scanner -r {{directory1 directory2 ...}}` + +- Skip scanning git repositories: + +`osv-scanner --skip-git {{-r|-D}} {{target}}` + +- Output result in JSON format: + +`osv-scanner --json {{-D|-L|-S|-r}} {{target}}` diff --git a/pages/common/p4.md b/pages/common/p4.md index f9c4055915..932baa5d63 100644 --- a/pages/common/p4.md +++ b/pages/common/p4.md @@ -21,7 +21,7 @@ - Open a file to edit: -`p4 edit -c {{changelist_number}} {{filename}}` +`p4 edit -c {{changelist_number}} {{path/to/file}}` - Open a new file to add it to the depot: diff --git a/pages/common/packer.md b/pages/common/packer.md index f2c7229387..53979df146 100644 --- a/pages/common/packer.md +++ b/pages/common/packer.md @@ -10,3 +10,7 @@ - Check the syntax of a Packer image config: `packer validate {{path/to/config.json}}` + +- Format a Packer image config: + +`packer fmt {{path/to/config.pkr.hcl}}` diff --git a/pages/common/packwiz.md b/pages/common/packwiz.md new file mode 100644 index 0000000000..3758082f80 --- /dev/null +++ b/pages/common/packwiz.md @@ -0,0 +1,24 @@ +# packwiz + +> Create, edit and manage Minecraft modpacks. +> More information: . + +- Interactively create a new modpack in the current directory: + +`packwiz init` + +- Add a mod from Modrinth or Curseforge: + +`packwiz {{modrinth|curseforge}} add {{url|slug|search_term}}` + +- List all mods in the modpack: + +`packwiz list` + +- Update `index.toml` after manually editing files: + +`packwiz refresh` + +- Export as a Modrinth (`.mrpack`) or Curseforge (`.zip`) file: + +`packwiz {{modrinth|curseforge}} export` diff --git a/pages/common/pake.md b/pages/common/pake.md new file mode 100644 index 0000000000..8d5c896e06 --- /dev/null +++ b/pages/common/pake.md @@ -0,0 +1,28 @@ +# pake + +> Turn any webpage into a desktop app with Rust/Tauri. +> More information: . + +- Package a web page: + +`pake {{https://www.google.com/}}` + +- Package a web page with a specific window size: + +`pake --width {{800}} --height {{600}} {{https://www.google.com/}}` + +- Package a web page with a custom application name and icon: + +`pake --name {{Google}} --icon {{path/to/icon.ico}} {{https://www.google.com/}}` + +- Package a web page with a non-resizable window: + +`pake --no-resizable {{https://www.google.com/}}` + +- Package a web page with fullscreen mode: + +`pake --fullscreen {{https://www.google.com/}}` + +- Package a web page with a transparent title bar: + +`pake --transparent {{https://www.google.com/}}` diff --git a/pages/common/palmtopnm.md b/pages/common/palmtopnm.md new file mode 100644 index 0000000000..1fe4d8ea46 --- /dev/null +++ b/pages/common/palmtopnm.md @@ -0,0 +1,20 @@ +# palmtopnm + +> Convert a Palm Bitmap file to a PNM image. +> More information: . + +- Generate the PNM image as output, for a Palm Bitmap file as input: + +`palmtopnm {{path/to/file.palm}}` + +- Display various information about the input Palm Bitmap file and process: + +`palmtopnm -verbose {{path/to/file.palm}}` + +- Generate a histogram of colours in the input Palm Bitmap file to `stderr`: + +`palmtopnm -showhist {{path/to/file.palm}}` + +- Display version: + +`palmtopnm -version` diff --git a/pages/common/pamfile.md b/pages/common/pamfile.md new file mode 100644 index 0000000000..03c664b9ed --- /dev/null +++ b/pages/common/pamfile.md @@ -0,0 +1,16 @@ +# pamfile + +> Describe Netpbm (PAM or PNM) files. +> More information: . + +- Describe the specified Netpbm files: + +`pamfile {{path/to/file1 path/to/file2 ...}}` + +- Describe every image in each input file (as opposed to only the first image in each file) in a machine-readable format: + +`pamfile -allimages -machine {{path/to/file}}` + +- Display a count on how many images the input files contain: + +`pamfile -count {{path/to/file}}` diff --git a/pages/common/particle.md b/pages/common/particle.md index 35b2563552..993e09bad8 100644 --- a/pages/common/particle.md +++ b/pages/common/particle.md @@ -1,6 +1,6 @@ # particle -> A command-line tool for interacting with Particle devices. +> Interact with Particle devices. > More information: . - Log in or create an account for the Particle CLI: diff --git a/pages/common/pastel.md b/pages/common/pastel.md index e519b7e207..5106113085 100644 --- a/pages/common/pastel.md +++ b/pages/common/pastel.md @@ -19,6 +19,6 @@ `pastel distinct {{8}}` -- Get a list of all X11 / CSS color names: +- Get a list of all X11/CSS color names: `pastel list` diff --git a/pages/common/pdfseparate.md b/pages/common/pdfseparate.md index 0f06782c45..7c52cd9ed7 100644 --- a/pages/common/pdfseparate.md +++ b/pages/common/pdfseparate.md @@ -1,7 +1,7 @@ # pdfseparate > Portable Document Format (PDF) file page extractor. -> More information: . +> More information: . - Extract pages from PDF file and make a separate PDF file for each page: diff --git a/pages/common/pdftotext.md b/pages/common/pdftotext.md index ef4956a98b..23dd547b9b 100644 --- a/pages/common/pdftotext.md +++ b/pages/common/pdftotext.md @@ -3,7 +3,7 @@ > Convert PDF files to plain text format. > More information: . -- Convert `filename.pdf` to plain text and print it to standard output: +- Convert `filename.pdf` to plain text and print it to `stdout`: `pdftotext {{filename.pdf}} -` diff --git a/pages/common/peco.md b/pages/common/peco.md index 233b5c3f31..d5dba23d2b 100644 --- a/pages/common/peco.md +++ b/pages/common/peco.md @@ -3,14 +3,14 @@ > Interactive filtering tool. > More information: . -- Start peco on all files in the specified directory: +- Start `peco` on all files in the specified directory: `find {{path/to/directory}} -type f | peco` -- Start peco for running processes: +- Start `peco` for running processes: `ps aux | peco` -- Start peco with a specified query: +- Start `peco` with a specified query: `peco --query "{{query}}"` diff --git a/pages/common/peerindex.md b/pages/common/peerindex.md new file mode 100644 index 0000000000..54a5d171c5 --- /dev/null +++ b/pages/common/peerindex.md @@ -0,0 +1,13 @@ +# peerindex + +> Inspect MRT TABLE_DUMPV2 Peer Index Table. +> Can read files compressed with gzip, bzip2 and xz. +> More information: . + +- Output all peers: + +`peerindex {{master6.mrt}}` + +- Display all peers that have provided routing information: + +`peerindex -r {{master6.mrt}}` diff --git a/pages/common/perl.md b/pages/common/perl.md index 7c24ecdff0..74128a2429 100644 --- a/pages/common/perl.md +++ b/pages/common/perl.md @@ -3,34 +3,18 @@ > The Perl 5 language interpreter. > More information: . -- Parse and execute a Perl script: +- Print lines from stdin [m/] matching regex1 and case insensitive [/i] regex2: -`perl {{script.pl}}` +`perl -n -e 'print if m/{{regex1}}/ and m/{{regex2}}/i'` -- Check syntax errors on a Perl script: +- Say [-E] first match group, using a regexp, ignoring space in regex [/x] : -`perl -c {{script.pl}}` +`perl -n -E 'say $1 if m/{{before}} ( {{group_regex}} ) {{after}}/x'` -- Parse and execute a Perl statement: +- [-i]n-place, with backup, [s/] substitute all occurrence [/g] of regex with replacement: -`perl -e {{perl_statement}}` +`perl -i'.bak' -p -e 's/{{regex}}/{{replacement}}/g' {{path/to/files}}` -- Run a Perl script in debug mode, using `perldebug`: +- Use perl's inline documentation, some pages also available via man on linux: -`perl -d {{script.pl}}` - -- Edit all file lines [i]n-place with a specific replacement [e]xpression, saving a backup with a new extension: - -`perl -p -i'.{{extension}}' -e 's/{{regular_expression}}/{{replacement}}/g' {{path/to/file}}` - -- Run a multi-line replacement [e]xpression on a file, and save the result in a specific file: - -`perl -p -e 's/{{foo\nbar}}/{{foobar}}/g' {{path/to/input_file}} > {{path/to/output_file}}` - -- Run a regular [e]xpression on `stdin`, printing matching [l]ines: - -`cat {{path/to/file}} | perl -n -l -e 'print if /{{regular_expression}}/'` - -- Run a regular [e]xpression on `stdin`, printing only the first capture group for each matching [l]ine: - -`cat {{path/to/file}} | perl -n -l -e 'print $1 if /{{before}}({{regular_expression}}){{after}}/'` +`perldoc perlrun ; perldoc module ; perldoc -f splice; perldoc -q perlfaq1` diff --git a/pages/common/pgmtopgm.md b/pages/common/pgmtopgm.md new file mode 100644 index 0000000000..e762adda95 --- /dev/null +++ b/pages/common/pgmtopgm.md @@ -0,0 +1,12 @@ +# pgmtopgm + +> Copy a PGM image file. +> More information: . + +- Copy PGM file from `stdin` to `stderr`: + +`pgmtopgm` + +- Display version: + +`pgmtopgm -version` diff --git a/pages/common/pigz.md b/pages/common/pigz.md index 2ea8a1be54..a981d72a48 100644 --- a/pages/common/pigz.md +++ b/pages/common/pigz.md @@ -5,19 +5,19 @@ - Compress a file with default options: -`pigz {{filename}}` +`pigz {{path/to/file}}` - Compress a file using the best compression method: -`pigz -9 {{filename}}` +`pigz -9 {{path/to/file}}` - Compress a file using no compression and 4 processors: -`pigz -0 -p{{4}} {{filename}}` +`pigz -0 -p{{4}} {{path/to/file}}` - Compress a directory using tar: -`tar cf - {{path/to/directory}} | pigz > {{filename}}.tar.gz` +`tar cf - {{path/to/directory}} | pigz > {{path/to/file}}.tar.gz` - Decompress a file: diff --git a/pages/common/pio-package.md b/pages/common/pio-package.md index 1c375f5b6f..d6613d3726 100644 --- a/pages/common/pio-package.md +++ b/pages/common/pio-package.md @@ -26,12 +26,12 @@ - Remove all versions of a published package from the registry: -`pio package unpublish {{package_name}}` +`pio package unpublish {{package}}` - Remove a specific version of a published package from the registry: -`pio package unpublish {{package_name}}@{{version}}` +`pio package unpublish {{package}}@{{version}}` - Undo the removal, putting all versions or a specific version of the package back into the registry: -`pio package unpublish --undo {{package_name}}@{{version}}` +`pio package unpublish --undo {{package}}@{{version}}` diff --git a/pages/common/pip-install.md b/pages/common/pip-install.md index e7d5286154..bbf3410f75 100644 --- a/pages/common/pip-install.md +++ b/pages/common/pip-install.md @@ -5,11 +5,11 @@ - Install a package: -`pip install {{package_name}}` +`pip install {{package}}` - Install a specific version of a package: -`pip install {{package_name}}=={{package_version}}` +`pip install {{package}}=={{version}}` - Install packages listed in a file: diff --git a/pages/common/pip-uninstall.md b/pages/common/pip-uninstall.md index fd3c056c7d..51be163f84 100644 --- a/pages/common/pip-uninstall.md +++ b/pages/common/pip-uninstall.md @@ -5,7 +5,7 @@ - Uninstall a package: -`pip uninstall {{package_name}}` +`pip uninstall {{package}}` - Uninstall packages listed in a specific file: @@ -13,4 +13,4 @@ - Uninstall package without asking for confirmation: -`pip uninstall --yes {{package_name}}` +`pip uninstall --yes {{package}}` diff --git a/pages/common/pip.md b/pages/common/pip.md index 72ae925cd6..300c7527dc 100644 --- a/pages/common/pip.md +++ b/pages/common/pip.md @@ -6,7 +6,7 @@ - Install a package (see `pip install` for more install examples): -`pip install {{package_name}}` +`pip install {{package}}` - Install a package to the user's directory instead of the system-wide default location: @@ -14,11 +14,11 @@ - Upgrade a package: -`pip install --upgrade {{package_name}}` +`pip install --upgrade {{package}}` - Uninstall a package: -`pip uninstall {{package_name}}` +`pip uninstall {{package}}` - Save installed packages to file: @@ -26,7 +26,7 @@ - Show installed package info: -`pip show {{package_name}}` +`pip show {{package}}` - Install packages from a file: diff --git a/pages/common/pip3.md b/pages/common/pip3.md index 8284250e23..2437bf8f1d 100644 --- a/pages/common/pip3.md +++ b/pages/common/pip3.md @@ -3,25 +3,21 @@ > Python package manager. > More information: . -- Find available packages: - -`pip3 search {{package_name}}` - - Install a package: -`pip3 install {{package_name}}` +`pip3 install {{package}}` - Install a specific version of a package: -`pip3 install {{package_name}}=={{package_version}}` +`pip3 install {{package}}=={{version}}` - Upgrade a package: -`pip3 install --upgrade {{package_name}}` +`pip3 install --upgrade {{package}}` - Uninstall a package: -`pip3 uninstall {{package_name}}` +`pip3 uninstall {{package}}` - Save the list of installed packages to a file: @@ -33,4 +29,4 @@ - Show installed package info: -`pip3 show {{package_name}}` +`pip3 show {{package}}` diff --git a/pages/common/pipenv.md b/pages/common/pipenv.md index 9f4e064ce5..0cfebb801d 100644 --- a/pages/common/pipenv.md +++ b/pages/common/pipenv.md @@ -14,7 +14,7 @@ - Install a package: -`pipenv install {{package_name}}` +`pipenv install {{package}}` - Install all the dependencies for a project: @@ -26,7 +26,7 @@ - Uninstall a package: -`pipenv uninstall {{package_name}}` +`pipenv uninstall {{package}}` - Start a shell within the created virtual environment: diff --git a/pages/common/pipx.md b/pages/common/pipx.md index 8f1b68e063..04e8fc46c3 100644 --- a/pages/common/pipx.md +++ b/pages/common/pipx.md @@ -1,6 +1,6 @@ # pipx -> Install and run python applications in isolated environments. +> Install and run Python applications in isolated environments. > More information: . - Run an app in a temporary virtual environment: diff --git a/pages/common/play.md b/pages/common/play.md index 6b81692bb9..2bcaa1ee98 100644 --- a/pages/common/play.md +++ b/pages/common/play.md @@ -1,7 +1,7 @@ # play > Audio player of SoX - Sound eXchange. -> Plays any audio from the command-line, with audio formats identified by the extension. +> Plays any audio, with audio formats identified by the extension. > More information: . - Play the given audio file: diff --git a/pages/common/plesk.md b/pages/common/plesk.md index 744ed0681d..c8360167cc 100644 --- a/pages/common/plesk.md +++ b/pages/common/plesk.md @@ -1,6 +1,6 @@ # plesk -> Plesk hosting control panel CLI interface. +> Plesk hosting control panel. > More information: . - Generate an auto login link for the admin user and print it: diff --git a/pages/common/pnmtojpeg.md b/pages/common/pnmtojpeg.md new file mode 100644 index 0000000000..b81cad6481 --- /dev/null +++ b/pages/common/pnmtojpeg.md @@ -0,0 +1,12 @@ +# pnmtojpeg + +> Converts a PNM image file to the JPEG/JFIF/EXIF image format. +> More information: . + +- Read a PNM image as input and produce a JPEG/JFIF/EXIF image as output: + +`pnmtojpeg {{path/to/file.pnm}} > {{path/to/file.jpg}}` + +- Display version: + +`pnmtojpeg -version` diff --git a/pages/common/pnmtopng.md b/pages/common/pnmtopng.md new file mode 100644 index 0000000000..9c28ebd9fe --- /dev/null +++ b/pages/common/pnmtopng.md @@ -0,0 +1,12 @@ +# pnmtopng + +> Converts a PNM image file to PNG image format. +> More information: . + +- Read a PNM image as input and produce a PNG image as output: + +`pnmtopng {{path/to/file.pnm}} > {{path/to/file.png}}` + +- Display version: + +`pnmtopng -version` diff --git a/pages/common/podman-image.md b/pages/common/podman-image.md new file mode 100644 index 0000000000..e9dda97d89 --- /dev/null +++ b/pages/common/podman-image.md @@ -0,0 +1,21 @@ +# podman image + +> Manage Docker images. +> See also `podman build`, `podman import`, and `podman pull`. +> More information: . + +- List local Docker images: + +`podman image ls` + +- Delete unused local Docker images: + +`podman image prune` + +- Delete all unused images (not just those without a tag): + +`podman image prune --all` + +- Show the history of a local Docker image: + +`podman image history {{image}}` diff --git a/pages/common/podman-images.md b/pages/common/podman-images.md new file mode 100644 index 0000000000..8312aa6455 --- /dev/null +++ b/pages/common/podman-images.md @@ -0,0 +1,24 @@ +# podman images + +> Manage Podman images. +> More information: . + +- List all Podman images: + +`podman images` + +- List all Podman images including intermediates: + +`podman images --all` + +- List the output in quiet mode (only numeric IDs): + +`podman images --quiet` + +- List all Podman images not used by any container: + +`podman images --filter dangling=true` + +- List images that contain a substring in their name: + +`podman images "{{*image|image*}}"` diff --git a/pages/common/podman-ps.md b/pages/common/podman-ps.md new file mode 100644 index 0000000000..01ac8cc31c --- /dev/null +++ b/pages/common/podman-ps.md @@ -0,0 +1,36 @@ +# podman ps + +> List Podman containers. +> More information: . + +- List currently running podman containers: + +`podman ps` + +- List all podman containers (running and stopped): + +`podman ps --all` + +- Show the latest created container (includes all states): + +`podman ps --latest` + +- Filter containers that contain a substring in their name: + +`podman ps --filter "name={{name}}"` + +- Filter containers that share a given image as an ancestor: + +`podman ps --filter "ancestor={{image}}:{{tag}}"` + +- Filter containers by exit status code: + +`podman ps --all --filter "exited={{code}}"` + +- Filter containers by status (created, running, removing, paused, exited and dead): + +`podman ps --filter "status={{status}}"` + +- Filter containers that mount a specific volume or have a volume mounted in a specific path: + +`podman ps --filter "volume={{path/to/directory}}" --format "table {{.ID}}\t{{.Image}}\t{{.Names}}\t{{.Mounts}}"` diff --git a/pages/common/podman-rmi.md b/pages/common/podman-rmi.md new file mode 100644 index 0000000000..3b72560ede --- /dev/null +++ b/pages/common/podman-rmi.md @@ -0,0 +1,20 @@ +# podman rmi + +> Remove one or more Podman images. +> More information: . + +- Remove one or more images given their names: + +`podman rmi {{image:tag}} {{image2:tag}} {{...}}` + +- Force remove an image: + +`podman rmi --force {{image}}` + +- Remove an image without deleting untagged parents: + +`podman rmi --no-prune {{image}}` + +- Display help: + +`podman rmi` diff --git a/pages/common/podman-run.md b/pages/common/podman-run.md new file mode 100644 index 0000000000..043f14120c --- /dev/null +++ b/pages/common/podman-run.md @@ -0,0 +1,36 @@ +# podman run + +> Run a command in a new Podman container. +> More information: . + +- Run command in a new container from a tagged image: + +`podman run {{image:tag}} {{command}}` + +- Run command in a new container in background and display its ID: + +`podman run --detach {{image:tag}} {{command}}` + +- Run command in a one-off container in interactive mode and pseudo-TTY: + +`podman run --rm --interactive --tty {{image:tag}} {{command}}` + +- Run command in a new container with passed environment variables: + +`podman run --env '{{variable}}={{value}}' --env {{variable}} {{image:tag}} {{command}}` + +- Run command in a new container with bind mounted volumes: + +`podman run --volume {{/path/to/host_path}}:{{/path/to/container_path}} {{image:tag}} {{command}}` + +- Run command in a new container with published ports: + +`podman run --publish {{host_port}}:{{container_port}} {{image:tag}} {{command}}` + +- Run command in a new container overwriting the entrypoint of the image: + +`podman run --entrypoint {{command}} {{image:tag}}` + +- Run command in a new container connecting it to a network: + +`podman run --network {{network}} {{image:tag}}` diff --git a/pages/common/poetry.md b/pages/common/poetry.md index 17e9838329..fc1ffe6bb5 100644 --- a/pages/common/poetry.md +++ b/pages/common/poetry.md @@ -30,7 +30,3 @@ - Bump the minor version of the project in `pyproject.toml`: `poetry version minor` - -- List all poetry subcommands: - -`poetry list` diff --git a/pages/common/polybar-msg.md b/pages/common/polybar-msg.md new file mode 100644 index 0000000000..a9b7a60568 --- /dev/null +++ b/pages/common/polybar-msg.md @@ -0,0 +1,33 @@ +# polybar-msg + +> Control `polybar` using inter-process-messaging (IPC). +> Note: IPC is disabled by default and can be enabled by setting `enable-ipc = true` in the Polybar config. +> More information: . + +- Quit the bar: + +`polybar-msg cmd quit` + +- Restart the bar in-place: + +`polybar-msg cmd restart` + +- Hide the bar (does nothing if the bar is already hidden): + +`polybar-msg cmd hide` + +- Show the bar again (does nothing if the bar is not hidden): + +`polybar-msg cmd show` + +- Toggle between hidden/visible: + +`polybar-msg cmd toggle` + +- Execute a module action (the data string is optional): + +`polybar-msg action "#{{module_name}}.{{action_name}}.{{data_string}}"` + +- Only send messages to a specific Polybar instance (all instances by default): + +`polybar-msg -p {{pid}} {{cmd|action}} {{payload}}` diff --git a/pages/common/polybar.md b/pages/common/polybar.md new file mode 100644 index 0000000000..cb3c00fbbd --- /dev/null +++ b/pages/common/polybar.md @@ -0,0 +1,16 @@ +# polybar + +> A fast and easy-to-use status bar. +> More information: . + +- Start Polybar (the bar name is optional if only one bar is defined in the config): + +`polybar {{bar_name}}` + +- Start Polybar with the specified config: + +`polybar --config={{path/to/config.ini}} {{bar_name}}` + +- Start Polybar and reload the bar when the config file is modified: + +`polybar --reload {{bar_name}}` diff --git a/pages/common/pop.md b/pages/common/pop.md new file mode 100644 index 0000000000..1291f19015 --- /dev/null +++ b/pages/common/pop.md @@ -0,0 +1,16 @@ +# pop + +> Send emails from your terminal. +> More information: . + +- Launch the Text-based User Interface: + +`pop` + +- Send an email using the content of a Markdown file as body: + +`pop < {{path/to/message.md}} --from {{me@example.com}} --to {{you@example.com}} --subject "{{On the Subject of Ducks...}}" --attach {{path/to/attachment}}` + +- Display help and exit: + +`pop --help` diff --git a/pages/common/popd.md b/pages/common/popd.md index dc142c5c83..6a2e0a8adb 100644 --- a/pages/common/popd.md +++ b/pages/common/popd.md @@ -15,3 +15,7 @@ - Remove the Nth directory (starting from zero to the right from the list printed with `dirs`): `popd -N` + +- Remove the 1st directory (starting from zero to the left from the list printed with `dirs`): + +`popd -n` diff --git a/pages/common/ppmflash.md b/pages/common/ppmflash.md new file mode 100644 index 0000000000..b48ac4c68d --- /dev/null +++ b/pages/common/ppmflash.md @@ -0,0 +1,12 @@ +# ppmflash + +> Brighten a PPM image file. +> More information: . + +- Generate a PPM image as output that is `flashfactor` times brighter than the input PPM image: + +`ppmflash {{flashfactor}} {{path/to/file.ppm}} > {{path/to/file.ppm}}` + +- Display version: + +`ppmflash -version` diff --git a/pages/common/ppmhist.md b/pages/common/ppmhist.md new file mode 100644 index 0000000000..461b291077 --- /dev/null +++ b/pages/common/ppmhist.md @@ -0,0 +1,16 @@ +# ppmhist + +> Print a histogram of the colors present in a PPM image. +> More information: . + +- Generate the histogram for human reading: + +`ppmhist -nomap {{path/to/image_file.ppm}}` + +- Generate a PPM file of the colormap for the image, with the color histogram as comments: + +`ppmhist -map {{path/to/image_file.ppm}}` + +- Display version: + +`ppmhist -version` diff --git a/pages/common/ppmtopgm.md b/pages/common/ppmtopgm.md new file mode 100644 index 0000000000..8c7054dc1d --- /dev/null +++ b/pages/common/ppmtopgm.md @@ -0,0 +1,12 @@ +# ppmtopgm + +> Convert a PPM image to a PGM image. +> More information: . + +- Convert PPM image to PGM image: + +`ppmtopgm {{path/to/file.ppm}} > {{path/to/file.pgm}}` + +- Display version: + +`ppmtopgm -version` diff --git a/pages/linux/procs.md b/pages/common/procs.md similarity index 52% rename from pages/linux/procs.md rename to pages/common/procs.md index f03dc42a50..e22644f0de 100644 --- a/pages/linux/procs.md +++ b/pages/common/procs.md @@ -7,18 +7,22 @@ `procs` -- Show information about processes, if the commands which started them contain `zsh`: +- List all processes as a tree: + +`procs --tree` + +- List information about processes, if the commands which started them contain `zsh`: `procs {{zsh}}` -- Show information about all processes sorted by CPU time in [a]scending or [d]escending order: +- List information about all processes sorted by CPU time in [a]scending or [d]escending order: -`procs {{--sortd|--sorta}} cpu` +`procs {{--sorta|--sortd}} cpu` -- Show information about processes with either a PID, command, or user containing (`zsh` or `firefox`): +- List information about processes with either a PID, command, or user containing `41` or `firefox`: `procs --or {{PID|command|user}} {{41}} {{firefox}}` -- Show information about processes with both PID `41` and a command or user containing `zsh`: +- List information about processes with both PID `41` and a command or user containing `zsh`: `procs --and {{41}} {{zsh}}` diff --git a/pages/common/prqlc.md b/pages/common/prqlc.md new file mode 100644 index 0000000000..53449fcbc6 --- /dev/null +++ b/pages/common/prqlc.md @@ -0,0 +1,25 @@ +# prqlc + +> PRQL compiler. +> PRQL is a modern language for transforming data - a simple, powerful, pipelined SQL replacement. +> More information: . + +- Run the compiler interactively: + +`prqlc compile` + +- Compile a specific `.prql` file to `stdout`: + +`prqlc compile {{path/to/file.prql}}` + +- Compile a `.prql` file to a `.sql` file: + +`prqlc compile {{path/to/source.prql}} {{path/to/target.sql}}` + +- Compile a query: + +`echo "{{from employees | filter has_dog | select salary}}" | prqlc compile` + +- Watch a directory and compile on file modification: + +`prqlc watch {{path/to/directory}}` diff --git a/pages/common/pueue-follow.md b/pages/common/pueue-follow.md index a7d8a4b967..4d1288b2bc 100644 --- a/pages/common/pueue-follow.md +++ b/pages/common/pueue-follow.md @@ -8,6 +8,6 @@ `pueue follow {{task_id}}` -- Follow the `stderr` of a task: +- Follow `stderr` of a task: `pueue follow --err {{task_id}}` diff --git a/pages/common/pueue.md b/pages/common/pueue.md index dbf619a9e4..275b0dbbce 100644 --- a/pages/common/pueue.md +++ b/pages/common/pueue.md @@ -1,6 +1,6 @@ # pueue -> Pueue is a command-line task management tool for sequential and parallel execution of long-running tasks. +> A task management tool for sequential and parallel execution of long-running tasks. > Some subcommands such as `pueue add` have their own usage documentation. > More information: . diff --git a/pages/common/pushd.md b/pages/common/pushd.md index b35ec7a8b2..3d99b74f53 100644 --- a/pages/common/pushd.md +++ b/pages/common/pushd.md @@ -2,6 +2,7 @@ > Place a directory on a stack so it can be accessed later. > See also `popd` to switch back to original directory and `dirs` to display directory stack contents. +> More information: . - Switch to directory and push it on the stack: @@ -14,3 +15,7 @@ - Rotate stack by making the 5th element the top of the stack: `pushd +4` + +- Rotate the stack 4 times to the left (the current directory stays at the top by replacing the 5th element): + +`pushd -n +4` diff --git a/pages/common/pv.md b/pages/common/pv.md index 642508bdcb..e68155f2d3 100644 --- a/pages/common/pv.md +++ b/pages/common/pv.md @@ -7,9 +7,9 @@ `pv {{path/to/file}}` -- Measure the speed and amount of data flow between pipes (`-s` is optional): +- Measure the speed and amount of data flow between pipes (`--size` is optional): -`command1 | pv -s {{expected_amount_of_data_for_eta}} | command2` +`command1 | pv --size {{expected_amount_of_data_for_eta}} | command2` - Filter a file, see both progress and amount of output data: @@ -25,4 +25,4 @@ - Stop reading after reading specified amount of data, rate limit to 1K/s: -`pv -L 1K -S {{maximum_file_size_to_be_read}}` +`pv -L 1K --stop-at --size {{maximum_file_size_to_be_read}}` diff --git a/pages/common/pwsh.md b/pages/common/pwsh.md index be3f7cb9b8..e6e11fc42c 100644 --- a/pages/common/pwsh.md +++ b/pages/common/pwsh.md @@ -1,20 +1,7 @@ # pwsh -> PowerShell Core is a cross-platform automation and configuration tool/framework. -> More information: . +> This command is an alias of `powershell`. -- Start an instance of PowerShell: +- View documentation for the original command: -`pwsh` - -- Execute a script and then exit: - -`pwsh -File {{path/to/file.ps1}}` - -- Set the execution policy for the current session: - -`pwsh -ExecutionPolicy {{AllSigned|Bypass|Default|RemoteSigned|Restricted|Undefined|Unrestricted}}` - -- Execute a command and then exit: - -`pwsh -Command {{command}}` +`tldr powershell` diff --git a/pages/common/pydoc.md b/pages/common/pydoc.md new file mode 100644 index 0000000000..5173f2ad95 --- /dev/null +++ b/pages/common/pydoc.md @@ -0,0 +1,16 @@ +# pydoc + +> Display offline Python documentation. +> More information: . + +- Print documentation on a subject (Python keyword, topic, function, module, package, etc.): + +`pydoc {{subject}}` + +- Start an HTTP server on an arbitrary unused port and open a [b]rowser to see the documentation: + +`pydoc -b` + +- Display help: + +`pydoc` diff --git a/pages/common/pygmentize.md b/pages/common/pygmentize.md index d567e57459..80945f0c46 100644 --- a/pages/common/pygmentize.md +++ b/pages/common/pygmentize.md @@ -3,7 +3,7 @@ > Python-based syntax highlighter. > More information: . -- Highlight file syntax and print to standard output (language is inferred from the file extension): +- Highlight file syntax and print to `stdout` (language is inferred from the file extension): `pygmentize {{file.py}}` diff --git a/pages/common/pypy.md b/pages/common/pypy.md index 7b2a06bf3d..3438265fcd 100644 --- a/pages/common/pypy.md +++ b/pages/common/pypy.md @@ -25,7 +25,7 @@ - Install a package using pip: -`pypy -m pip install {{package_name}}` +`pypy -m pip install {{package}}` - Interactively debug a Python script: diff --git a/pages/common/pystun3.md b/pages/common/pystun3.md new file mode 100644 index 0000000000..84e8396e4b --- /dev/null +++ b/pages/common/pystun3.md @@ -0,0 +1,16 @@ +# pystun3 + +> Classic STUN client written in Python. +> More information: . + +- Make a STUN request: + +`pystun3` + +- Make a STUN request and specify the stun server: + +`pystun3 --stun-host {{stun.1und1.de}}` + +- Make a STUN request and specify the source port: + +`pystun3 --source-port {{7932}}` diff --git a/pages/common/python.md b/pages/common/python.md index 64516d8964..0351572ab0 100644 --- a/pages/common/python.md +++ b/pages/common/python.md @@ -25,7 +25,7 @@ - Install a package using `pip`: -`python -m {{pip}} install {{package_name}}` +`python -m pip install {{package}}` - Interactively debug a Python script: diff --git a/pages/common/qdbus.md b/pages/common/qdbus.md index 3d060c6626..acc1f39667 100644 --- a/pages/common/qdbus.md +++ b/pages/common/qdbus.md @@ -31,6 +31,6 @@ `qdbus {{org.kde.kglobalaccel}} {{/component/kmix}} {{invokeShortcut}} "{{increase_volume}}"` -- Display help: +- Gracefully log out and then do nothing, reboot or shut down: -`qdbus --help` +`qdbus {{org.kde.Shutdown}} {{/Shutdown}} {{logout|logoutAndReboot|logoutAndShutdown}}` diff --git a/pages/common/qmv.md b/pages/common/qmv.md index fde2ff2ea4..c9981460e6 100644 --- a/pages/common/qmv.md +++ b/pages/common/qmv.md @@ -22,3 +22,7 @@ - Move files, but swap the positions of the source and the target filenames in the editor: `qmv --option swap {{*.jpg}}` + +- Rename all files and folders in the current directory, but show only target filenames in the editor (you can think of it as a kind of simple mode): + +`qmv --format=do .` diff --git a/pages/common/railway.md b/pages/common/railway.md index 70a04cd1a9..463f6e81f1 100644 --- a/pages/common/railway.md +++ b/pages/common/railway.md @@ -1,6 +1,6 @@ # railway -> Connect code to a Railway project from the command line. +> Connect code to a Railway project. > More information: . - Login to a Railway account: @@ -11,7 +11,7 @@ `railway link {{projectId}}` -- Create a new project directly from the command line: +- Create a new project: `railway init` diff --git a/pages/common/rake.md b/pages/common/rake.md new file mode 100644 index 0000000000..e055edad20 --- /dev/null +++ b/pages/common/rake.md @@ -0,0 +1,25 @@ +# rake + +> A Make-like program for Ruby. +> Tasks for `rake` are specified in a Rakefile. +> More information: . + +- Run the `default` Rakefile task: + +`rake` + +- Run a specific task: + +`rake {{task}}` + +- Execute `n` jobs at a time in parallel (number of CPU cores + 4 by default): + +`rake --jobs {{n}}` + +- Use a specific Rakefile: + +`rake --rakefile {{path/to/Rakefile}}` + +- Execute `rake` from another directory: + +`rake --directory {{path/to/directory}}` diff --git a/pages/common/rarcrack.md b/pages/common/rarcrack.md new file mode 100644 index 0000000000..c031dc835e --- /dev/null +++ b/pages/common/rarcrack.md @@ -0,0 +1,15 @@ +# rarcrack + +> Password cracker for rar, zip and 7z archives. + +- Brute force the password for an archive (tries to guess the archive type): + +`rarcrack {{path/to/file.zip}}` + +- Specify the archive type: + +`rarcrack --type {{rar|zip|7z}} {{path/to/file.zip}}` + +- Use multiple threads: + +`rarcrack --threads {{6}} {{path/to/file.zip}}` diff --git a/pages/common/rclone.md b/pages/common/rclone.md index f8a39b98dc..8f59e63e9e 100644 --- a/pages/common/rclone.md +++ b/pages/common/rclone.md @@ -1,6 +1,6 @@ # rclone -> CLI program to copy/sync/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: . - List contents of a directory on an rclone remote: diff --git a/pages/common/read.md b/pages/common/read.md index 3cb9b4e99e..bb43cf74fa 100644 --- a/pages/common/read.md +++ b/pages/common/read.md @@ -1,36 +1,16 @@ # read -> BASH builtin for retrieving data from standard input. +> Shell builtin for retrieving data from `stdin`. > More information: . - Store data that you type from the keyboard: `read {{variable}}` -- Store each of the next lines you enter as values of an array: - -`read -a {{array}}` - -- Specify the number of maximum characters to be read: - -`read -n {{character_count}} {{variable}}` - -- Use a specific character as a delimiter instead of a new line: - -`read -d {{new_delimiter}} {{variable}}` - - Do not let backslash (\\) act as an escape character: `read -r {{variable}}` -- Display a prompt before the input: - -`read -p "{{Enter your input here: }}" {{variable}}` - -- Do not echo typed characters (silent mode): - -`read -s {{variable}}` - - Read `stdin` and perform an action on every line: `while read line; do echo "$line"; done` diff --git a/pages/common/readlink.md b/pages/common/readlink.md index 1393350dc6..666bcc454a 100644 --- a/pages/common/readlink.md +++ b/pages/common/readlink.md @@ -5,8 +5,8 @@ - Get the actual file to which the symlink points: -`readlink {{filename}}` +`readlink {{path/to/file}}` - Get the absolute path to a file: -`readlink -f {{filename}}` +`readlink -f {{path/to/file}}` diff --git a/pages/common/readonly.md b/pages/common/readonly.md new file mode 100644 index 0000000000..d6aa2722a2 --- /dev/null +++ b/pages/common/readonly.md @@ -0,0 +1,17 @@ +# readonly + +> Create or modify read-only variables within a shell script, preventing the variable from being changed by subsequent commands. +> This is useful when you want to ensure that a variable retains a constant value throughout the execution of a script. +> More information: . + +- Create a read-only variable: + +`readonly {{variable_name}}={{value}}` + +- Mark a variable as read-only: + +`readonly {{existing_variable}}` + +- [p]rint to the standard output the names and values of all read-only variables: + +`readonly -p` diff --git a/pages/common/resolvconf.md b/pages/common/resolvconf.md new file mode 100644 index 0000000000..d74ced7ff7 --- /dev/null +++ b/pages/common/resolvconf.md @@ -0,0 +1,30 @@ +# resolvconf + +> Manage nameserver information. +> Acts as an intermediary between programs that supply nameserver information and applications that use this information. +> This tldr documents Debian's implementation of resolvconf. +> More information: . + +- Add or override the IFACE.PROG record and run the update scripts if updating is enabled: + +`resolvconf -a {{IFACE.PROG}}` + +- Delete the IFACE.PROG record and run the update scripts if updating is enabled: + +`resolvconf -d {{IFACR.PROG}}` + +- Just run the update scripts if updating is enabled: + +`resolvconf -u` + +- Set the flag indicating whether `resolvconf` should run update scripts when invoked with `-a`, `-d` or `-u`: + +`resolvconf --enable-updates` + +- Clear the flag indicating whether to run updates: + +`resolvconf --disable-updates` + +- Check whether updates are enabled: + +`resolvconf --updates-are-enabled` diff --git a/pages/common/resume.md b/pages/common/resume.md index 6582f0bf8f..0919a6ef66 100644 --- a/pages/common/resume.md +++ b/pages/common/resume.md @@ -1,6 +1,6 @@ # resume -> CLI tool to easily setup a new resume. +> Easily setup a new resume. > More information: . - Create a new `resume.json` file in the current working directory: diff --git a/pages/common/retry.md b/pages/common/retry.md new file mode 100644 index 0000000000..c5538f44a8 --- /dev/null +++ b/pages/common/retry.md @@ -0,0 +1,16 @@ +# retry + +> Repeat command until it succeeds or a criterion is met. +> More information: . + +- Retry a command until it succeeds: + +`retry {{command}}` + +- Retry a command every n seconds until it succeeds: + +`retry --delay={{n}} {{command}}` + +- Give up after n attempts: + +`retry --times={{n}} {{command}}` diff --git a/pages/common/rg.md b/pages/common/rg.md index b64575c08a..392180833c 100644 --- a/pages/common/rg.md +++ b/pages/common/rg.md @@ -1,6 +1,6 @@ # rg -> Ripgrep is a recursive line-oriented CLI search tool. +> Ripgrep is a recursive line-oriented search tool. > Aims to be a faster alternative to `grep`. > More information: . @@ -12,10 +12,6 @@ `rg --no-ignore --hidden {{regular_expression}}` -- Search for a regular expression only in a certain filetype (e.g. HTML, CSS, etc.): - -`rg --type {{filetype}} {{regular_expression}}` - - Search for a regular expression only in a subset of directories: `rg {{regular_expression}} {{set_of_subdirs}}` @@ -24,6 +20,10 @@ `rg {{regular_expression}} --glob {{glob}}` +- Search for filenames that match a regular expression: + +`rg --files | rg {{regular_expression}}` + - Only list matched files (useful when piping to other commands): `rg --files-with-matches {{regular_expression}}` diff --git a/pages/common/rgpt.md b/pages/common/rgpt.md new file mode 100644 index 0000000000..9bcb0eb8ac --- /dev/null +++ b/pages/common/rgpt.md @@ -0,0 +1,28 @@ +# rgpt + +> An automated code review tool that uses GPT you can use straight from your terminal. +> More information: . + +- Ask GPT to improve the code with no extra options: + +`rgpt --i "$(git diff {{path/to/file}})"` + +- Get a more detailed verbose output from `rgpt` while reviewing the code: + +`rgpt --v --i "$(git diff {{path/to/file}})"` + +- Ask GPT to improve the code and limit it to a certain amount of GPT3 tokens: + +`rgpt --max {{300}} --i "$(git diff {{path/to/file}})"` + +- Ask GPT for a more unique result using a float value between 0 and 2. (higher = more unique): + +`rgpt --pres {{1.2}} --i "$(git diff {{path/to/file}})"` + +- Ask GPT to review your code using a specific model: + +`rgpt --model {{davinci}} --i "$(git diff {{path/to/file}})"` + +- Make `rgpt` use a JSON output: + +`rgpt --json --i "$(git diff {{path/to/file}})"` diff --git a/pages/common/rhash.md b/pages/common/rhash.md new file mode 100644 index 0000000000..e38d60ba8b --- /dev/null +++ b/pages/common/rhash.md @@ -0,0 +1,28 @@ +# rhash + +> Calculate or check common message digests. +> More information: . + +- Calculate default CRC32 digests of a file: + +`rhash {{path/to/file}}` + +- Recursively process a directory to generate an SFV file using SHA1: + +`rhash --sha1 --recursive {{path/to/folder}} > {{path/to/output.sfv}}` + +- Verify the integrity of files based on an SFV file: + +`rhash --check {{path/to/file.sfv}}` + +- Calculate the SHA3 digest of a text message: + +`rhash --sha3-256 --message '{{message}}'` + +- Calculate CRC32 digest of a file and output digest encoded in base64 using BSD format: + +`rhash --base64 --bsd {{path/to/file}}` + +- Use custom output template: + +`rhash --printf '{{%p\t%s\t%{mtime}\t%m\n}}' {{path/to/file}}` diff --git a/pages/common/rich.md b/pages/common/rich.md index 7f4987d20d..f83a696ba1 100644 --- a/pages/common/rich.md +++ b/pages/common/rich.md @@ -1,6 +1,6 @@ # rich -> Rich CLI is a toolbox for fancy output in the terminal. +> A toolbox for fancy output in the terminal. > More information: . - Display a file with syntax highlighting: diff --git a/pages/common/rm.md b/pages/common/rm.md index 55b7398c5f..da1b9ca8ec 100644 --- a/pages/common/rm.md +++ b/pages/common/rm.md @@ -1,24 +1,25 @@ # rm > Remove files or directories. +> See also: `rmdir`. > More information: . -- Remove files from arbitrary locations: +- Remove specific files: -`rm {{path/to/file}} {{path/to/another/file}}` +`rm {{path/to/file1 path/to/file2 ...}}` -- Recursively remove a directory and all its subdirectories: +- Remove specific files ignoring nonexistent ones: -`rm -r {{path/to/directory}}` +`rm -f {{path/to/file1 path/to/file2 ...}}` -- Forcibly remove a directory, without prompting for confirmation or showing error messages: +- Remove specific files [i]nteractively prompting before each removal: -`rm -rf {{path/to/directory}}` +`rm -i {{path/to/file1 path/to/file2 ...}}` -- Interactively remove multiple files, with a prompt before every removal: +- Remove specific files printing info about each removal: -`rm -i {{file(s)}}` +`rm -v {{path/to/file1 path/to/file2 ...}}` -- Remove files in verbose mode, printing a message for each removed file: +- Remove specific files and directories [r]ecursively: -`rm -v {{path/to/directory/*}}` +`rm -r {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` diff --git a/pages/common/rmdir.md b/pages/common/rmdir.md index 5a793e523d..f4409b6789 100644 --- a/pages/common/rmdir.md +++ b/pages/common/rmdir.md @@ -1,12 +1,13 @@ # rmdir -> Removes a directory. +> Remove directories without files. +> See also: `rm`. > More information: . -- Remove directory, provided it is empty. Use `rm -r` to remove non-empty directories: +- Remove specific directories: -`rmdir {{path/to/directory}}` +`rmdir {{path/to/directory1 path/to/directory2 ...}}` -- Remove the target and its parent directories (useful for nested dirs): +- Remove specific nested directories recursively: -`rmdir -p {{path/to/directory}}` +`rmdir -p {{path/to/directory1 path/to/directory2 ...}}` diff --git a/pages/common/ropgadget.md b/pages/common/ropgadget.md new file mode 100644 index 0000000000..97b76a760e --- /dev/null +++ b/pages/common/ropgadget.md @@ -0,0 +1,24 @@ +# ROPgadget + +> Find ROP gadgets in binary files. +> More information: . + +- List gadgets in the binary file: + +`ROPgadget --binary {{path/to/binary}}` + +- Filter gadgets in the binary file by a regular expression: + +`ROPgadget --binary {{path/to/binary}} --re {{regex}}` + +- List gadgets in the binary file, excluding specified type: + +`ROPgadget --binary {{path/to/binary}} --{{norop|nojob|nosys}}` + +- Exclude bad byte gadgets in the binary file: + +`ROPgadget --binary {{path/to/binary}} --badbytes {{byte_string}}` + +- List gadgets up to the specified number of bytes in the binary file: + +`ROPgadget --binary {{path/to/binary}} --depth {{nbyte}}` diff --git a/pages/common/ropper.md b/pages/common/ropper.md new file mode 100644 index 0000000000..5cb7618537 --- /dev/null +++ b/pages/common/ropper.md @@ -0,0 +1,24 @@ +# ropper + +> Find ROP gadgets in binary files. +> More information: . + +- List gadgets in the binary file: + +`ropper --file {{path/to/binary}}` + +- Filter gadgets in the binary file by a regular expression: + +`ropper --file {{path/to/binary}} --search {{regex}}` + +- List gadgets of specified type in the binary file: + +`ropper --file {{path/to/binary}} --type {{rop|job|sys|all}}` + +- Exclude bad byte gadgets in the binary file: + +`ropper --file {{path/to/binary}} --badbytes {{byte_string}}` + +- List gadgets up to the specified instruction count in the binary file: + +`ropper --file {{path/to/binary}} --inst-count {{count}}` diff --git a/pages/common/rsync.md b/pages/common/rsync.md index aaec0f66ab..82f389ab52 100644 --- a/pages/common/rsync.md +++ b/pages/common/rsync.md @@ -1,37 +1,37 @@ # rsync -> Transfer files either to or from a remote host (not between two remote hosts). -> Can transfer single files, or multiple files matching a pattern. -> More information: . +> Transfer files either to or from a remote host (but not between two remote hosts), by default using SSH. +> To specify a remote path, use `host:path/to/file_or_directory`. +> More information: . -- Transfer file from local to remote host: +- Transfer a file: -`rsync {{path/to/local_file}} {{remote_host}}:{{path/to/remote_directory}}` +`rsync {{path/to/source}} {{path/to/destination}}` -- Transfer file from remote host to local: +- Use archive mode (recursively copy directories, copy symlinks without resolving and preserve permissions, ownership and modification times): -`rsync {{remote_host}}:{{path/to/remote_file}} {{path/to/local_directory}}` +`rsync --archive {{path/to/source}} {{path/to/destination}}` -- Transfer file in [a]rchive (to preserve attributes) and compressed ([z]ipped) mode with [v]erbose and [h]uman-readable [P]rogress: +- Compress the data as it is sent to the destination, display verbose and human-readable progress, and keep partially transferred files if interrupted: -`rsync -azvhP {{path/to/local_file}} {{remote_host}}:{{path/to/remote_directory}}` +`rsync --compress --verbose --human-readable --partial --progress {{path/to/source}} {{path/to/destination}}` -- Transfer a directory and all its children from a remote to local: +- Recursively copy directories: -`rsync -r {{remote_host}}:{{path/to/remote_directory}} {{path/to/local_directory}}` +`rsync --recursive {{path/to/source}} {{path/to/destination}}` -- Transfer directory contents (but not the directory itself) from a remote to local: +- Transfer directory contents, but not the directory itself: -`rsync -r {{remote_host}}:{{path/to/remote_directory}}/ {{path/to/local_directory}}` +`rsync --recursive {{path/to/source}}/ {{path/to/destination}}` -- Transfer a directory [r]ecursively, in [a]rchive to preserve attributes, resolving contained soft[l]inks , and ignoring already transferred files [u]nless newer: +- Recursively copy directories, use archive mode, resolve symlinks and skip files that are newer on the destination: -`rsync -rauL {{remote_host}}:{{path/to/remote_directory}} {{path/to/local_directory}}` +`rsync --recursive --archive --update --copy-links {{path/to/source}} {{path/to/destination}}` -- Transfer file over SSH and delete remote files that do not exist locally: +- Transfer a directory to a remote host running `rsyncd` and delete files on the destination that do not exist on the source: -`rsync -e ssh --delete {{remote_host}}:{{path/to/remote_file}} {{path/to/local_file}}` +`rsync --recursive --delete rsync://{{host}}:{{path/to/source}} {{path/to/destination}}` -- Transfer file over SSH using a different port than the default and show global progress: +- Transfer a file over SSH using a different port than the default (22) and show global progress: -`rsync -e 'ssh -p {{port}}' --info=progress2 {{remote_host}}:{{path/to/remote_file}} {{path/to/local_file}}` +`rsync --rsh 'ssh -p {{port}}' --info=progress2 {{host}}:{{path/to/source}} {{path/to/destination}}` diff --git a/pages/common/ruby.md b/pages/common/ruby.md index 6773ecb5b5..8b65cafc00 100644 --- a/pages/common/ruby.md +++ b/pages/common/ruby.md @@ -1,12 +1,9 @@ # ruby > Ruby programming language interpreter. +> See also: `gem`, `bundler`, `rake`, `irb`. > More information: . -- Start a REPL (interactive shell): - -`irb` - - Execute a Ruby script: `ruby {{script.rb}}` @@ -19,6 +16,14 @@ `ruby -c {{script.rb}}` +- Start the built-in HTTP server on port 8080 in the current directory: + +`ruby -run -e httpd` + +- Locally execute a Ruby binary without installing the required library it depends on: + +`ruby -I {{path/to/library_folder}} -r {{library_require_name}} {{path/to/bin_folder/bin_name}}` + - Show the version of Ruby you are using: `ruby -v` diff --git a/pages/common/rustc.md b/pages/common/rustc.md index c4a9106681..57dbe3b7a8 100644 --- a/pages/common/rustc.md +++ b/pages/common/rustc.md @@ -1,33 +1,33 @@ # rustc > The Rust compiler. -> Processes, compiles and links Rust language source files. +> Rust projects usually use `cargo` instead of invoking `rustc` directly. > More information: . -- Compile a single file: +- Compile a binary crate: -`rustc {{file.rs}}` +`rustc {{path/to/main.rs}}` -- Compile with high optimization: +- Compile with optimizations (`s` means optimize for binary size; `z` is the same with even more optimizations): -`rustc -O {{file.rs}}` +`rustc -C lto -C opt-level={{0|1|2|3|s|z}} {{path/to/main.rs}}` - Compile with debugging information: -`rustc -g {{file.rs}}` +`rustc -g {{path/to/main.rs}}` + +- Explain an error message: + +`rustc --explain {{error_code}}` - Compile with architecture-specific optimizations for the current CPU: -`rustc -C target-cpu=native {{path/to/file.rs}}` +`rustc -C target-cpu={{native}} {{path/to/main.rs}}` -- Display architecture-specific optimizations for the current CPU: - -`rustc -C target-cpu=native --print cfg` - -- Display target list: +- Display the target list (Note: you have to add a target using `rustup` first to be able to compile for it): `rustc --print target-list` - Compile for a specific target: -`rustc --target {{target_triple}} {{path/to/file.rs}}` +`rustc --target {{target_triple}} {{path/to/main.rs}}` diff --git a/pages/common/rustdoc.md b/pages/common/rustdoc.md new file mode 100644 index 0000000000..0cc30ef902 --- /dev/null +++ b/pages/common/rustdoc.md @@ -0,0 +1,20 @@ +# rustdoc + +> Generate documentation for a Rust crate. +> More information: . + +- Generate documentation from the crate's root: + +`rustdoc {{src/lib.rs}}` + +- Pass a name for the project: + +`rustdoc {{src/lib.rs}} --crate-name {{name}}` + +- Generate documentation from Markdown files: + +`rustdoc {{path/to/file.md}}` + +- Specify the output directory: + +`rustdoc {{src/lib.rs}} --out-dir {{path/to/output_directory}}` diff --git a/pages/common/rustfmt.md b/pages/common/rustfmt.md index 0966150210..693cb7e76b 100644 --- a/pages/common/rustfmt.md +++ b/pages/common/rustfmt.md @@ -5,12 +5,12 @@ - Format a file, overwriting the original file in-place: -`rustfmt {{source.rs}}` +`rustfmt {{path/to/source.rs}}` - Check a file for formatting and display any changes on the console: -`rustfmt --check {{source.rs}}` +`rustfmt --check {{path/to/source.rs}}` - Backup any modified files before formatting (the original file is renamed with a `.bk` extension): -`rustfmt --backup {{source.rs}}` +`rustfmt --backup {{path/to/source.rs}}` diff --git a/pages/common/rustic.md b/pages/common/rustic.md new file mode 100644 index 0000000000..726db3cfc8 --- /dev/null +++ b/pages/common/rustic.md @@ -0,0 +1,12 @@ +# rustic + +> Create fast, encrypted, deduplicated backups powered by Rust. +> More information: . + +- Initialize a new repository: + +`rustic init --repository {{/srv/rustic-repo}}` + +- Create a new backup of a file/directory to a repository: + +`rustic backup --repository {{/srv/rustic-repo}} {{path/to/file_or_directory}}` diff --git a/pages/common/rustup-check.md b/pages/common/rustup-check.md new file mode 100644 index 0000000000..a4f1abebbc --- /dev/null +++ b/pages/common/rustup-check.md @@ -0,0 +1,8 @@ +# rustup check + +> Check for updates to Rust toolchains and `rustup`. +> More information: . + +- Check for all updates: + +`rustup check` diff --git a/pages/common/rustup-completions.md b/pages/common/rustup-completions.md new file mode 100644 index 0000000000..f0438f5be3 --- /dev/null +++ b/pages/common/rustup-completions.md @@ -0,0 +1,8 @@ +# rustup completions + +> Generate shell completions for `rustup` and `cargo`. +> More information: . + +- Print the completion script to `stdout`: + +`rustup completions {{bash|elvish|fish|powershell|zsh}} {{rustup|cargo}}` diff --git a/pages/common/rustup-component.md b/pages/common/rustup-component.md new file mode 100644 index 0000000000..765cddf5df --- /dev/null +++ b/pages/common/rustup-component.md @@ -0,0 +1,21 @@ +# rustup component + +> Modify a toolchain's installed components. +> Without the `--toolchain` option `rustup` will use the default toolchain. See `rustup help toolchain` for more information about toolchains. +> More information: . + +- Add a component to a toolchain: + +`rustup component add --toolchain {{toolchain}} {{component}}` + +- Remove a component from a toolchain: + +`rustup component remove --toolchain {{toolchain}} {{component}}` + +- List installed and available components for a toolchain: + +`rustup component list --toolchain {{toolchain}}` + +- List installed components for a toolchain: + +`rustup component list --toolchain {{toolchain}} --installed` diff --git a/pages/common/rustup-default.md b/pages/common/rustup-default.md new file mode 100644 index 0000000000..5f51d97c24 --- /dev/null +++ b/pages/common/rustup-default.md @@ -0,0 +1,8 @@ +# rustup default + +> Set the default Rust toolchain. +> More information: . + +- Switch the default Rust toolchain (see `rustup help toolchain` for more information): + +`rustup default {{toolchain}}` diff --git a/pages/common/rustup-doc.md b/pages/common/rustup-doc.md new file mode 100644 index 0000000000..10b27a7623 --- /dev/null +++ b/pages/common/rustup-doc.md @@ -0,0 +1,25 @@ +# rustup doc + +> Open the offline Rust documentation for the current toolchain. +> There are a lot more documentation pages not mentioned here. See `rustup help doc` for more information. +> More information: . + +- Open the main page: + +`rustup doc` + +- Open the documentation for a specific topic (a module in the standard library, a type, a keyword, etc.): + +`rustup doc {{std::fs|usize|fn|...}}` + +- Open the Rust Programming Language book: + +`rustup doc --book` + +- Open the Cargo book: + +`rustup doc --cargo` + +- Open the Rust Reference: + +`rustup doc --reference` diff --git a/pages/common/rustup-help.md b/pages/common/rustup-help.md new file mode 100644 index 0000000000..0c2ff2457e --- /dev/null +++ b/pages/common/rustup-help.md @@ -0,0 +1,12 @@ +# rustup help + +> Display help on `rustup` and its subcommands. +> More information: . + +- Display general help: + +`rustup help` + +- Display help for a subcommand: + +`rustup help {{subcommand}}` diff --git a/pages/common/rustup-install.md b/pages/common/rustup-install.md new file mode 100644 index 0000000000..1f74399722 --- /dev/null +++ b/pages/common/rustup-install.md @@ -0,0 +1,9 @@ +# rustup install + +> Install or update Rust toolchains. +> This command is an alias of `rustup update`, but can only install/update one toolchain at a time. +> More information: . + +- Install or update a specific toolchain (see `rustup help toolchain` for more information): + +`rustup install {{toolchain}}` diff --git a/pages/common/rustup-man.md b/pages/common/rustup-man.md new file mode 100644 index 0000000000..02125a195b --- /dev/null +++ b/pages/common/rustup-man.md @@ -0,0 +1,12 @@ +# rustup man + +> View the man page for a given command managed by `rustup`. +> More information: . + +- View the man page for a given command from the default toolchain: + +`rustup man {{command}}` + +- View the man page for a given command from the specified toolchain: + +`rustup man --toolchain {{command}}` diff --git a/pages/common/rustup-override.md b/pages/common/rustup-override.md new file mode 100644 index 0000000000..5e9a85e7f9 --- /dev/null +++ b/pages/common/rustup-override.md @@ -0,0 +1,21 @@ +# rustup override + +> Modify directory toolchain overrides. +> See `rustup help toolchain` for more information about toolchains. +> More information: . + +- List directiory toolchain overrides: + +`rustup override list` + +- Set the override toolchain for the current directory (i.e. tell `rustup` to run `cargo`, `rustc`, etc. from a specific toolchain when in that directory): + +`rustup override set {{toolchain}}` + +- Remove the toolchain override for the current directory: + +`rustup override unset` + +- Remove all toolchain overrides for directories that no longer exist: + +`rustup override unset --nonexistent` diff --git a/pages/common/rustup-run.md b/pages/common/rustup-run.md new file mode 100644 index 0000000000..f63fb863c1 --- /dev/null +++ b/pages/common/rustup-run.md @@ -0,0 +1,9 @@ +# rustup run + +> Run a command with an environment configured for a given Rust toolchain. +> Note: all commands managed by `rustup` have a shorthand for this: for example, `cargo +nightly build` is equivalent to `rustup run nightly cargo build`. +> More information: . + +- Run a command using a given Rust toolchain (see `rustup help toolchain` for more information): + +`rustup run {{toolchain}} {{command}}` diff --git a/pages/common/rustup-self.md b/pages/common/rustup-self.md new file mode 100644 index 0000000000..ffc8cc131f --- /dev/null +++ b/pages/common/rustup-self.md @@ -0,0 +1,12 @@ +# rustup self + +> Modify the `rustup` installation. +> More information: . + +- Update `rustup`: + +`rustup self update` + +- Uninstall `rustup`: + +`rustup self uninstall` diff --git a/pages/common/rustup-set.md b/pages/common/rustup-set.md new file mode 100644 index 0000000000..7c504cf6d3 --- /dev/null +++ b/pages/common/rustup-set.md @@ -0,0 +1,16 @@ +# rustup set + +> Alter `rustup` settings. +> More information: . + +- Set the default host triple: + +`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`): + +`rustup set profile {{minimal|default}}` + +- Set whether `rustup` should update itself when running `rustup update`: + +`rustup set auto-self-update {{enable|disable|check-only}}` diff --git a/pages/common/rustup-show.md b/pages/common/rustup-show.md new file mode 100644 index 0000000000..375e874493 --- /dev/null +++ b/pages/common/rustup-show.md @@ -0,0 +1,16 @@ +# rustup show + +> Show installed toolchains, targets and the version of `rustc`. +> More information: . + +- Show all information: + +`rustup show` + +- Show the active toolchain: + +`rustup show active-toolchain` + +- Show the rustup data directory: + +`rustup show home` diff --git a/pages/common/rustup-target.md b/pages/common/rustup-target.md new file mode 100644 index 0000000000..8668329bbb --- /dev/null +++ b/pages/common/rustup-target.md @@ -0,0 +1,21 @@ +# rustup target + +> Modify a toolchain's supported targets. +> Without the `--toolchain` option `rustup` will use the default toolchain. See `rustup help toolchain` for more information about toolchains. +> More information: . + +- Add a target to a toolchain: + +`rustup target add --toolchain {{toolchain}} {{target}}` + +- Remove a target from a toolchain: + +`rustup target remove --toolchain {{toolchain}} {{target}}` + +- List available and installed targets for a toolchain: + +`rustup target list --toolchain {{toolchain}}` + +- List installed targets for a toolchain: + +`rustup target list --toolchain {{toolchain}} --installed` diff --git a/pages/common/rustup-toolchain.md b/pages/common/rustup-toolchain.md new file mode 100644 index 0000000000..cd9fdcc7dc --- /dev/null +++ b/pages/common/rustup-toolchain.md @@ -0,0 +1,21 @@ +# rustup toolchain + +> Manage Rust toolchains. +> See `rustup help toolchain` for more information about toolchains. +> More information: . + +- Install or update a given toolchain: + +`rustup install {{toolchain}}` + +- Uninstall a toolchain: + +`rustup uninstall {{toolchain}}` + +- List installed toolchains: + +`rustup list` + +- Create a custom toolchain by symlinking to a directory: + +`rustup link {{custom_toolchain_name}} {{path/to/directory}}` diff --git a/pages/common/rustup-update.md b/pages/common/rustup-update.md new file mode 100644 index 0000000000..4994852020 --- /dev/null +++ b/pages/common/rustup-update.md @@ -0,0 +1,12 @@ +# rustup update + +> Update Rust toolchains and `rustup` itself (if not installed using a package manager). +> More information: . + +- Update all installed toolchains and `rustup`: + +`rustup update` + +- Install or update a specific toolchain (see `rustup help toolchain` for more information): + +`rustup update {{toolchain}}` diff --git a/pages/common/rustup-which.md b/pages/common/rustup-which.md new file mode 100644 index 0000000000..77ef6c1ce5 --- /dev/null +++ b/pages/common/rustup-which.md @@ -0,0 +1,13 @@ +# rustup which + +> Display which binary will be run for a given command managed by `rustup`. +> Like `which`, but searches a Rust toolchain instead of `$PATH`. +> More information: . + +- Display the path to the binary in the default toolchain: + +`rustup which {{command}}` + +- Display the path to the binary in the specified toolchain (see `rustup help toolchain` for more information): + +`rustup which --toolchain {{toolchain}} {{command}}` diff --git a/pages/common/rustup.md b/pages/common/rustup.md index 8274bb32fe..f94859cd90 100644 --- a/pages/common/rustup.md +++ b/pages/common/rustup.md @@ -1,8 +1,8 @@ # rustup -> Rust toolchain installer. > Install, manage, and update Rust toolchains. -> More information: . +> Some subcommands, such as `toolchain`, `target`, `update`, etc. have their own usage documentation. +> More information: . - Install the nightly toolchain for your system: @@ -12,7 +12,7 @@ `rustup default nightly` -- Use the nightly toolchain when inside the current project, but leave global settings unchanged: +- Use the nightly toolchain when inside the current project but leave global settings unchanged: `rustup override set nightly` @@ -24,10 +24,10 @@ `rustup show` -- Run cargo build with a certain toolchain: +- Run `cargo build` with a certain toolchain: -`rustup run {{toolchain_name}} cargo build` +`rustup run {{toolchain}} cargo build` -- Open the local rust documentation in the default web browser: +- Open the local Rust documentation in the default web browser: `rustup doc` diff --git a/pages/common/safe.md b/pages/common/safe.md index 0c755d84b0..b71e64b453 100644 --- a/pages/common/safe.md +++ b/pages/common/safe.md @@ -1,6 +1,6 @@ # safe -> A CLI to interact with HashiCorp Vault. +> Interact with HashiCorp Vault. > More information: . - Add a safe target: diff --git a/pages/common/samtools.md b/pages/common/samtools.md index 8f3e4308ce..71684aba34 100644 --- a/pages/common/samtools.md +++ b/pages/common/samtools.md @@ -24,7 +24,7 @@ `samtools flagstat {{sorted_input}}` -- Count alignments to each index (chromosome / contig): +- Count alignments to each index (chromosome/contig): `samtools idxstats {{sorted_indexed_input}}` diff --git a/pages/common/sc-im.md b/pages/common/sc-im.md index 1d90854a22..412033efa9 100644 --- a/pages/common/sc-im.md +++ b/pages/common/sc-im.md @@ -6,7 +6,7 @@ - Start SC-IM: -`scim {{filename}}.csv` +`scim {{path/to/file.csv}}` - Enter a string into the current cell: diff --git a/pages/common/scala-cli.md b/pages/common/scala-cli.md new file mode 100644 index 0000000000..5267a59ad0 --- /dev/null +++ b/pages/common/scala-cli.md @@ -0,0 +1,24 @@ +# scala-cli + +> Tool to interact with the Scala programming language. +> More information: . + +- Start a REPL (interactive shell) using a specific Scala and JVM version: + +`scala-cli --scala {{3.1.0}} --jvm {{temurin:17}}` + +- Compile and run a Scala script: + +`scala-cli run {{path/to/script.scala}}` + +- Compile and test a Scala script: + +`scala-cli test {{path/to/script.scala}}` + +- Format a Scala script, updating the file in-place: + +`scala-cli fmt {{path/to/script.scala}}` + +- Generate files for IDE (VSCode and IntelliJ) support: + +`scala-cli setup-ide {{path/to/script.scala}}` diff --git a/pages/common/scd.md b/pages/common/scd.md new file mode 100644 index 0000000000..9599142808 --- /dev/null +++ b/pages/common/scd.md @@ -0,0 +1,28 @@ +# scd + +> File manager focused on shell integration. +> More information: . + +- Index paths recursively for the very first run: + +`scd -ar {{path/to/directory}}` + +- Change to a specific directory: + +`scd {{path/to/directory}}` + +- Change to a path matching specific patterns: + +`scd "{{pattern1 pattern2 ...}}"` + +- Show selection menu and ranking of 20 most likely directories: + +`scd -v` + +- Add a specific alias for the current directory: + +`scd --alias={{word}}` + +- Change to a directory using a specific alias: + +`scd {{word}}` diff --git a/pages/common/screenfetch.md b/pages/common/screenfetch.md index cd1aa9ac75..7afd95d908 100644 --- a/pages/common/screenfetch.md +++ b/pages/common/screenfetch.md @@ -3,7 +3,7 @@ > Display system information. > More information: . -- Start screenfetch: +- Start `screenfetch`: `screenfetch` diff --git a/pages/common/sd.md b/pages/common/sd.md index 09e0fd5b97..b42c174379 100644 --- a/pages/common/sd.md +++ b/pages/common/sd.md @@ -1,20 +1,20 @@ # sd -> Intuitive find & replace CLI. +> Intuitive find and replace. > More information: . -- Trim some whitespace using a regular expression: +- Trim some whitespace using a regular expression (output stream: `stdout`): `{{echo 'lorem ipsum 23 '}} | sd '\s+$' ''` -- Replace words using capture groups: +- Replace words using capture groups (output stream: `stdout`): `{{echo 'cargo +nightly watch'}} | sd '(\w+)\s+\+(\w+)\s+(\w+)' 'cmd: $1, channel: $2, subcmd: $3'` -- Find and replace in a file printing the result to `stdout`: +- Find and replace in a specific file (output stream: `stdout`): -`sd -p {{'window.fetch'}} {{'fetch'}} {{http.js}}` +`sd -p {{'window.fetch'}} {{'fetch'}} {{path/to/file.js}}` -- Find and replace across a project changing each file in place: +- Find and replace in all files in the current project (output stream: `stdout`): -`sd {{'from "react"'}} {{'from "preact"'}} $(find . -type f)` +`sd {{'from "react"'}} {{'from "preact"'}} "$(find . -type f)"` diff --git a/pages/common/sdcv.md b/pages/common/sdcv.md index 24729d3630..b72a31518a 100644 --- a/pages/common/sdcv.md +++ b/pages/common/sdcv.md @@ -4,7 +4,7 @@ > Dictionaries are provided separately from the client. > More information: . -- Start sdcv interactively: +- Start `sdcv` interactively: `sdcv` diff --git a/pages/common/sed.md b/pages/common/sed.md index 30b1557e31..71119363be 100644 --- a/pages/common/sed.md +++ b/pages/common/sed.md @@ -12,14 +12,6 @@ `{{command}} | sed -f {{path/to/script.sed}}` -- Replace all `apple` (extended regex) occurrences with `APPLE` (extended regex) in all input lines and print the result to `stdout`: - -`{{command}} | sed -E 's/(apple)/\U\1/g'` - - Print just a first line to `stdout`: `{{command}} | sed -n '1p'` - -- Replace all `apple` (basic regex) occurrences with `mango` (basic regex) in all input lines and save modifications to a specific file: - -`sed -i 's/apple/mango/g' {{path/to/file}}` diff --git a/pages/common/sendmail.md b/pages/common/sendmail.md index acc8ffd7aa..5cd4f436f0 100644 --- a/pages/common/sendmail.md +++ b/pages/common/sendmail.md @@ -1,6 +1,6 @@ # sendmail -> Send email from the command-line. +> Send email. > More information: . - Send a message with the content of `message.txt` to the mail directory of local user `username`: diff --git a/pages/common/serialver.md b/pages/common/serialver.md index 78c8b498c5..0de84dde49 100644 --- a/pages/common/serialver.md +++ b/pages/common/serialver.md @@ -2,7 +2,7 @@ > Returns the serialVersionUID of classes. > It does not set a security manager by default. -> More information: . +> More information: . - Display the serialVersionUID of a class: diff --git a/pages/common/sf.md b/pages/common/sf.md new file mode 100644 index 0000000000..de2e8da64a --- /dev/null +++ b/pages/common/sf.md @@ -0,0 +1,36 @@ +# sf + +> Salesforce CLI is a powerful command line interface that simplifies development and build automation when working with your Salesforce org. +> More information: . + +- Authorize a Salesforce Organization: + +`sf force:auth:web:login --setalias {{organization}} --instanceurl {{organization_url}}` + +- List all authorized organizations: + +`sf force:org:list` + +- Open a specific organization in the default web browser: + +`sf force:org:open --targetusername {{organization}}` + +- Display information about a specific organization: + +`sf force:org:display --targetusername {{organization}}` + +- Push source metadata to an Organization: + +`sf force:source:push --targetusername {{organization}}` + +- Pull source metadata from an Organization: + +`sf force:source:pull --targetusername {{organization}}` + +- Generate a password for the organization's logged-in user: + +`sf force:user:password:generate --targetusername {{organization}}` + +- Assign a permission set for the organization's logged-in user: + +`sf force:user:permset:assign --permsetname {{permission_set_name}} --targetusername {{organization}}` diff --git a/pages/common/sfdx.md b/pages/common/sfdx.md deleted file mode 100644 index 5d7002dea5..0000000000 --- a/pages/common/sfdx.md +++ /dev/null @@ -1,36 +0,0 @@ -# sfdx - -> Command-line tool for development and build automation with a Salesforce organization. -> More information: . - -- Authorize a Salesforce Organization: - -`sfdx force:auth:web:login --setalias {{organization}} --instanceurl {{organization_url}}` - -- List all authorized organizations: - -`sfdx force:org:list` - -- Open a specific organization in the default web browser: - -`sfdx force:org:open --targetusername {{organization}}` - -- Display information about a specific organization: - -`sfdx force:org:display --targetusername {{organization}}` - -- Push source metadata to an Organization: - -`sfdx force:source:push --targetusername {{organization}}` - -- Pull source metadata from an Organization: - -`sfdx force:source:pull --targetusername {{organization}}` - -- Generate a password for the organization's logged-in user: - -`sfdx force:user:password:generate --targetusername {{organization}}` - -- Assign a permission set for the organization's logged-in user: - -`sfdx force:user:permset:assign --permsetname {{permission_set_name}} --targetusername {{organization}}` diff --git a/pages/common/sgpt.md b/pages/common/sgpt.md new file mode 100644 index 0000000000..8c7acf36ee --- /dev/null +++ b/pages/common/sgpt.md @@ -0,0 +1,28 @@ +# sgpt + +> Command-line productivity tool powered by OpenAI's GPT models. +> More information: . + +- Use it as a search engine, asking for the mass of the sun: + +`sgpt "{{mass of the sun}}"` + +- Execute Shell commands, and apply `chmod 444` to all files in the current directory: + +`sgpt --shell "{{make all files in current directory read only}}"` + +- Generate code, solving classic fizz buzz problem: + +`sgpt --code "{{solve fizz buzz problem using Python}}"` + +- Start a chat session with a unique session name: + +`sgpt --chat {{session_name}} "{{please remember my favorite number: 4}}"` + +- Start a `REPL` (Read–eval–print loop) session: + +`sgpt --repl {{command}}` + +- Display help: + +`sgpt --help` diff --git a/pages/common/sha1sum.md b/pages/common/sha1sum.md index 35140ded3f..ecccb96e2b 100644 --- a/pages/common/sha1sum.md +++ b/pages/common/sha1sum.md @@ -3,19 +3,19 @@ > Calculate SHA1 cryptographic checksums. > More information: . -- Calculate the SHA1 checksum for a file: +- Calculate the SHA1 checksum for one or more files: -`sha1sum {{path/to/file}}` - -- Calculate SHA1 checksums for multiple files: - -`sha1sum {{path/to/file1}} {{path/to/file2}}` +`sha1sum {{path/to/file1 path/to/file2 ...}}` - Calculate and save the list of SHA1 checksums to a file: -`sha1sum {{path/to/file1}} {{path/to/file2}} > {{path/to/file.sha1}}` +`sha1sum {{path/to/file1 path/to/file2 ...}} > {{path/to/file.sha1}}` -- Read a file of SHA1 sums and verify all files have matching checksums: +- Calculate a SHA1 checksum from `stdin`: + +`{{command}} | sha1sum` + +- Read a file of SHA1 sums and filenames and verify all files have matching checksums: `sha1sum --check {{path/to/file.sha1}}` @@ -23,6 +23,6 @@ `sha1sum --check --quiet {{path/to/file.sha1}}` -- Only show a message for files for which verification fails, ignoring missing files: +- Only show a message when verification fails, ignoring missing files: `sha1sum --ignore-missing --check --quiet {{path/to/file.sha1}}` diff --git a/pages/common/sha224sum.md b/pages/common/sha224sum.md index 3ac360fec9..3595dc5bba 100644 --- a/pages/common/sha224sum.md +++ b/pages/common/sha224sum.md @@ -3,19 +3,19 @@ > Calculate SHA224 cryptographic checksums. > More information: . -- Calculate the SHA224 checksum for a file: +- Calculate the SHA224 checksum for one or more files: -`sha224sum {{path/to/file}}` - -- Calculate SHA224 checksums for multiple files: - -`sha224sum {{path/to/file1}} {{path/to/file2}}` +`sha224sum {{path/to/file1 path/to/file2 ...}}` - Calculate and save the list of SHA224 checksums to a file: -`sha224sum {{path/to/file1}} {{path/to/file2}} > {{path/to/file.sha224}}` +`sha224sum {{path/to/file1 path/to/file2 ...}} > {{path/to/file.sha224}}` -- Read a file of SHA224 sums and verify all files have matching checksums: +- Calculate a SHA224 checksum from `stdin`: + +`{{command}} | sha224sum` + +- Read a file of SHA224 sums and filenames and verify all files have matching checksums: `sha224sum --check {{path/to/file.sha224}}` @@ -23,6 +23,6 @@ `sha224sum --check --quiet {{path/to/file.sha224}}` -- Only show a message for files for which verification fails, ignoring missing files: +- Only show a message when verification fails, ignoring missing files: `sha224sum --ignore-missing --check --quiet {{path/to/file.sha224}}` diff --git a/pages/common/sha256sum.md b/pages/common/sha256sum.md index ae2cba63c3..13408dae2e 100644 --- a/pages/common/sha256sum.md +++ b/pages/common/sha256sum.md @@ -3,19 +3,19 @@ > Calculate SHA256 cryptographic checksums. > More information: . -- Calculate the SHA256 checksum for a file: +- Calculate the SHA256 checksum for one or more files: -`sha256sum {{path/to/file}}` - -- Calculate SHA256 checksums for multiple files: - -`sha256sum {{path/to/file1}} {{path/to/file2}}` +`sha256sum {{path/to/file1 path/to/file2 ...}}` - Calculate and save the list of SHA256 checksums to a file: -`sha256sum {{path/to/file1}} {{path/to/file2}} > {{path/to/file.sha256}}` +`sha256sum {{path/to/file1 path/to/file2 ...}} > {{path/to/file.sha256}}` -- Read a file of SHA256 sums and verify all files have matching checksums: +- Calculate a SHA256 checksum from `stdin`: + +`{{command}} | sha256sum` + +- Read a file of SHA256 sums and filenames and verify all files have matching checksums: `sha256sum --check {{path/to/file.sha256}}` @@ -23,6 +23,6 @@ `sha256sum --check --quiet {{path/to/file.sha256}}` -- Only show a message for files for which verification fails, ignoring missing files: +- Only show a message when verification fails, ignoring missing files: `sha256sum --ignore-missing --check --quiet {{path/to/file.sha256}}` diff --git a/pages/common/sha384sum.md b/pages/common/sha384sum.md index 5d32958d40..16dc57ff0f 100644 --- a/pages/common/sha384sum.md +++ b/pages/common/sha384sum.md @@ -3,19 +3,19 @@ > Calculate SHA384 cryptographic checksums. > More information: . -- Calculate the SHA384 checksum for a file: +- Calculate the SHA384 checksum for one or more files: -`sha384sum {{path/to/file}}` - -- Calculate SHA384 checksums for multiple files: - -`sha384sum {{path/to/file1}} {{path/to/file2}}` +`sha384sum {{path/to/file1 path/to/file2 ...}}` - Calculate and save the list of SHA384 checksums to a file: -`sha384sum {{path/to/file1}} {{path/to/file2}} > {{path/to/file.sha384}}` +`sha384sum {{path/to/file1 path/to/file2 ...}} > {{path/to/file.sha384}}` -- Read a file of SHA384 sums and verify all files have matching checksums: +- Calculate a SHA384 checksum from `stdin`: + +`{{command}} | sha384sum` + +- Read a file of SHA384 sums and filenames and verify all files have matching checksums: `sha384sum --check {{path/to/file.sha384}}` @@ -23,6 +23,6 @@ `sha384sum --check --quiet {{path/to/file.sha384}}` -- Only show a message for files for which verification fails, ignoring missing files: +- Only show a message when verification fails, ignoring missing files: `sha384sum --ignore-missing --check --quiet {{path/to/file.sha384}}` diff --git a/pages/common/sha512sum.md b/pages/common/sha512sum.md index 25f640e81e..e06d062dba 100644 --- a/pages/common/sha512sum.md +++ b/pages/common/sha512sum.md @@ -3,19 +3,19 @@ > Calculate SHA512 cryptographic checksums. > More information: . -- Calculate the SHA512 checksum for a file: +- Calculate the SHA512 checksum for one or more files: -`sha512sum {{path/to/file}}` - -- Calculate SHA512 checksums for multiple files: - -`sha512sum {{path/to/file1}} {{path/to/file2}}` +`sha512sum {{path/to/file1 path/to/file2 ...}}` - Calculate and save the list of SHA512 checksums to a file: -`sha512sum {{path/to/file1}} {{path/to/file2}} > {{path/to/file.sha512}}` +`sha512sum {{path/to/file1 path/to/file2 ...}} > {{path/to/file.sha512}}` -- Read a file of SHA512 sums and verify all files have matching checksums: +- Calculate a SHA512 checksum from `stdin`: + +`{{command}} | sha512sum` + +- Read a file of SHA512 sums and filenames and verify all files have matching checksums: `sha512sum --check {{path/to/file.sha512}}` @@ -23,6 +23,6 @@ `sha512sum --check --quiet {{path/to/file.sha512}}` -- Only show a message for files for which verification fails, ignoring missing files: +- Only show a message when verification fails, ignoring missing files: `sha512sum --ignore-missing --check --quiet {{path/to/file.sha512}}` diff --git a/pages/common/shar.md b/pages/common/shar.md new file mode 100644 index 0000000000..c9278a69ff --- /dev/null +++ b/pages/common/shar.md @@ -0,0 +1,8 @@ +# shar + +> Create a shell archive. +> More information: . + +- Create a shell script that when executed extracts the given files from itself: + +`shar {{path/to/file1 path/to/file2 ...}} > {{path/to/archive.sh}}` diff --git a/pages/common/shasum.md b/pages/common/shasum.md index 5b964055d1..58a4e3f5de 100644 --- a/pages/common/shasum.md +++ b/pages/common/shasum.md @@ -1,32 +1,36 @@ # shasum -> Calculate or check cryptographic SHA checksums. +> Calculate SHA cryptographic checksums. > More information: . -- Calculate the SHA1 checksum for a file: +- Calculate the SHA1 checksum for one or more files: -`shasum {{path/to/file}}` +`shasum {{path/to/file1 path/to/file2 ...}}` -- Calculate the SHA256 checksum for a file: +- Calculate the SHA256 checksum for one or more files: -`shasum --algorithm 256 {{path/to/file}}` +`shasum --algorithm 256 {{path/to/file1 path/to/file2 ...}}` -- Calculate the SHA512 checksum for multiple files: +- Calculate the SHA512 checksum for one or more files: -`shasum --algorithm 512 {{path/to/file1}} {{path/to/file2}}` +`shasum --algorithm 512 {{path/to/file1 path/to/file2 ...}}` + +- Calculate a SHA1 checksum from `stdin`: + +`{{command}} | shasum` - Calculate and save the list of SHA256 checksums to a file: -`shasum --algorithm 256 {{path/to/file1}} {{path/to/file2}} > {{path/to/file.sha256}}` +`shasum --algorithm 256 {{path/to/file1 path/to/file2 ...}} > {{path/to/file.sha256}}` -- Check a file with a list of sums against the directory's files: +- Read a file of SHA1 sums and filenames and verify all files have matching checksums: `shasum --check {{path/to/file}}` -- Check a list of sums and only show a message for files for which verification fails: +- Only show a message for missing files or when verification fails: `shasum --check --quiet {{path/to/file}}` -- Calculate the SHA1 checksum from `stdin`: +- Only show a message when verification fails, ignoring missing files: -`{{some_command}} | shasum` +`shasum --ignore-missing --check --quiet {{path/to/file}}` diff --git a/pages/common/shellcheck.md b/pages/common/shellcheck.md index 79b021d9ea..538a2dd69f 100644 --- a/pages/common/shellcheck.md +++ b/pages/common/shellcheck.md @@ -18,7 +18,7 @@ - Also check any sourced shell scripts: -`shellcheck --checked-sourced {{path/to/script.sh}}` +`shellcheck --check-sourced {{path/to/script.sh}}` - Display output in the specified format (defaults to `tty`): diff --git a/pages/common/shfmt.md b/pages/common/shfmt.md new file mode 100644 index 0000000000..60edf675e0 --- /dev/null +++ b/pages/common/shfmt.md @@ -0,0 +1,20 @@ +# shfmt + +> Shell parser, formatter and interpreter. +> More information: . + +- Print a formatted version of a shell script: + +`shfmt {{path/to/file}}` + +- List unformatted files: + +`shfmt --list {{path/to/directory}}` + +- Write the result to the file instead of printing it to the terminal: + +`shfmt --write {{path/to/file}}` + +- Simplify the code, removing redundant pieces of syntax (i.e. removing "$" from vars in expressions): + +`shfmt --simplify {{path/to/file}}` diff --git a/pages/common/shift.md b/pages/common/shift.md index 97d4e70a8d..ed54a13349 100644 --- a/pages/common/shift.md +++ b/pages/common/shift.md @@ -1,6 +1,6 @@ # shift -> Bash built-in command that shifts the arguments passed to the calling function or script by a specified number of places. +> Shell built-in command that shifts the arguments passed to the calling function or script by a specified number of places. > More information: . - Move arguments by one place dropping the first argument: diff --git a/pages/common/shuf.md b/pages/common/shuf.md index 212fa6c126..6cc9cb0496 100644 --- a/pages/common/shuf.md +++ b/pages/common/shuf.md @@ -5,15 +5,15 @@ - Randomize the order of lines in a file and output the result: -`shuf {{filename}}` +`shuf {{path/to/file}}` - Only output the first 5 entries of the result: -`shuf --head-count={{5}} {{filename}}` +`shuf --head-count={{5}} {{path/to/file}}` - Write the output to another file: -`shuf {{filename}} --output={{output_filename}}` +`shuf {{path/to/input}} --output={{path/to/output}}` - Generate 3 random numbers in the range 1-10 (inclusive): diff --git a/pages/common/silicon.md b/pages/common/silicon.md index e5c3f4cd52..7752066c97 100644 --- a/pages/common/silicon.md +++ b/pages/common/silicon.md @@ -5,11 +5,11 @@ - Generate an image from a specific source file: -`silicon {{path/to/source_file}} --output {{path/to/output_image}}` +`silicon {{path/to/source_file}} --output {{path/to/output_image}}` -- Generate an image from a source file with a specific programing language syntax highlighting (e.g. `rust`, `py`, `js`, etc.): +- Generate an image from a source file with a specific programming language syntax highlighting (e.g. `rust`, `py`, `js`, etc.): -`silicon {{path/to/source_file}} --output {{path/to/output_image}} --language {{language|extension}}` +`silicon {{path/to/source_file}} --output {{path/to/output_image}} --language {{language|extension}}` - Generate an image from `stdin`: diff --git a/pages/common/sk.md b/pages/common/sk.md index b3d7537bc3..8d8a6c7b8b 100644 --- a/pages/common/sk.md +++ b/pages/common/sk.md @@ -4,18 +4,18 @@ > Similar to `fzf`. > More information: . -- Start skim on all files in the specified directory: +- Start `skim` on all files in the specified directory: `find {{path/to/directory}} -type f | sk` -- Start skim for running processes: +- Start `skim` for running processes: `ps aux | sk` -- Start skim with a specified query: +- Start `skim` with a specified query: `sk --query "{{query}}"` - Select multiple files with `Shift + Tab` and write to a file: -`find {{path/to/directory}} -type f | sk --multi > {{filename}}` +`find {{path/to/directory}} -type f | sk --multi > {{path/to/file}}` diff --git a/pages/common/skate.md b/pages/common/skate.md new file mode 100644 index 0000000000..4095cdf84b --- /dev/null +++ b/pages/common/skate.md @@ -0,0 +1,36 @@ +# skate + +> Simple and powerful key-value store. +> More information: . + +- Store a key and a value on the default database: + +`skate set "{{key}}" "{{value}}"` + +- Show your keys saved on the default database: + +`skate list` + +- Delete key and value from the default database: + +`skate delete "{{key}}"` + +- Create a new key and value in a new database: + +`skate set "{{key}}"@"{{database_name}}" "{{value}}"` + +- Show your keys saved in a non default database: + +`skate list @"{{database_name}}"` + +- Delete key and value from a specific database: + +`skate delete "{{key}}"@"{{database_name}}"` + +- Show the databases available: + +`skate list-dbs` + +- Delete local db and pull down fresh copy from Charm Cloud: + +`skate reset @"{{database_name}}"` diff --git a/pages/common/sleep.md b/pages/common/sleep.md index 142f5a7a9d..ad0b29ec23 100644 --- a/pages/common/sleep.md +++ b/pages/common/sleep.md @@ -1,16 +1,12 @@ # sleep > Delay for a specified amount of time. -> More information: . +> More information: . - Delay in seconds: `sleep {{seconds}}` -- Delay in minutes: +- Execute a specific command after 20 seconds delay: -`sleep {{minutes}}m` - -- Delay in hours: - -`sleep {{hours}}h` +`sleep 20 && {{command}}` diff --git a/pages/common/snort.md b/pages/common/snort.md new file mode 100644 index 0000000000..696195a0d8 --- /dev/null +++ b/pages/common/snort.md @@ -0,0 +1,24 @@ +# snort + +> Open-source network intrusion detection system. +> More information: . + +- Capture packets with verbose output: + +`sudo snort -v -i {{interface}}` + +- Capture packets and dump application layer data with verbose output: + +`sudo snort -vd -i {{interface}}` + +- Capture packets and display link layer packet headers with verbose output: + +`sudo snort -ve -i {{interface}}` + +- Capture packets and save them in the specified directory: + +`sudo snort -i {{interface}} -l {{path/to/directory}}` + +- Capture packets according to rules and save offending packets along with alerts: + +`sudo snort -i {{interface}} -c {{path/to/rules.conf}} -l {{path/to/directory}}` diff --git a/pages/common/socat.md b/pages/common/socat.md index e039859f41..6f3af247c7 100644 --- a/pages/common/socat.md +++ b/pages/common/socat.md @@ -7,6 +7,10 @@ `socat - TCP-LISTEN:8080,fork` +- Listen on a port using SSL and print to STDOUT: + +`socat OPENSSL-LISTEN:4433,reuseaddr,cert=./cert.pem,cafile=./ca.cert.pem,key=./key.pem,verify=0 STDOUT` + - Create a connection to a host and port, transfer data in STDIO to connected host: `socat - TCP4:www.example.com:80` diff --git a/pages/common/sops.md b/pages/common/sops.md index 61b7d9ded9..c3b185b52a 100644 --- a/pages/common/sops.md +++ b/pages/common/sops.md @@ -8,7 +8,7 @@ `sops -e {{path/to/myfile.json}} > {{path/to/myfile.enc.json}}` -- Decrypt a file to the standard output: +- Decrypt a file to `stdout`: `sops -d {{path/to/myfile.enc.json}}` diff --git a/pages/common/soxi.md b/pages/common/soxi.md new file mode 100644 index 0000000000..6900a7040c --- /dev/null +++ b/pages/common/soxi.md @@ -0,0 +1,8 @@ +# soxi + +> SoXI - Sound eXchange Information, display sound file metadata. +> More information: . + +- Display the sound file metadata: + +`soxi {{path/to/file.wav}}` diff --git a/pages/common/speed-test.md b/pages/common/speed-test.md index d093b85265..1299d360af 100644 --- a/pages/common/speed-test.md +++ b/pages/common/speed-test.md @@ -1,6 +1,6 @@ # speed-test -> Test your internet connection speed and ping using speedtest.net from the CLI. +> Test your internet connection speed and ping using . > More information: . - Test your internet connection and ping speed: diff --git a/pages/common/speedcrunch.md b/pages/common/speedcrunch.md index fe46785a12..179c291221 100644 --- a/pages/common/speedcrunch.md +++ b/pages/common/speedcrunch.md @@ -3,7 +3,7 @@ > A high-precision scientific calculator. > More information: . -- Start speedcrunch: +- Start SpeedCrunch: `speedcrunch` diff --git a/pages/common/speedtest-cli.md b/pages/common/speedtest-cli.md index b12fb525ef..d3878d273d 100644 --- a/pages/common/speedtest-cli.md +++ b/pages/common/speedtest-cli.md @@ -1,6 +1,6 @@ # speedtest-cli -> Unofficial command-line interface for testing internet bandwidth using https://speedtest.net. +> Test internet bandwidth using . > See also `speedtest` for the official CLI. > More information: . diff --git a/pages/common/spicetify.md b/pages/common/spicetify.md index edb8602823..96c1390788 100644 --- a/pages/common/spicetify.md +++ b/pages/common/spicetify.md @@ -1,6 +1,6 @@ # spicetify -> A CLI utility to customize the Spotify client UI and functionality. +> Customize the Spotify client UI and functionality. > More information: . - Generate a configuration file on very first run and display help: diff --git a/pages/common/split.md b/pages/common/split.md index 1a7538133a..408f9853df 100644 --- a/pages/common/split.md +++ b/pages/common/split.md @@ -5,16 +5,16 @@ - Split a file, each split having 10 lines (except the last split): -`split -l {{10}} {{filename}}` +`split -l {{10}} {{path/to/file}}` - Split a file into 5 files. File is split such that each split has same size (except the last split): -`split -n {{5}} {{filename}}` +`split -n {{5}} {{path/to/file}}` - Split a file with 512 bytes in each split (except the last split; use 512k for kilobytes and 512m for megabytes): -`split -b {{512}} {{filename}}` +`split -b {{512}} {{path/to/file}}` - Split a file with at most 512 bytes in each split without breaking lines: -`split -C {{512}} {{filename}}` +`split -C {{512}} {{path/to/file}}` diff --git a/pages/common/spotdl.md b/pages/common/spotdl.md new file mode 100644 index 0000000000..b4e90aad30 --- /dev/null +++ b/pages/common/spotdl.md @@ -0,0 +1,16 @@ +# spotdl + +> Download Spotify playlists and songs along with metadata. +> More information: . + +- Download songs from the provided URLs and embed metadata: + +`spotdl {{open.spotify.com/playlist/playlistId open.spotify.com/track/trackId ...}}` + +- Start a web interface to download individual songs: + +`spotdl web` + +- Save only the metadata without downloading anything: + +`spotdl save {{open.spotify.com/playlist/playlistId ...}} --save-file {{path/to/save_file.spotdl}}` diff --git a/pages/common/ssh-keygen.md b/pages/common/ssh-keygen.md index 06c034c874..dd5c46db65 100644 --- a/pages/common/ssh-keygen.md +++ b/pages/common/ssh-keygen.md @@ -7,17 +7,13 @@ `ssh-keygen` -- Specify file in which to save the key: +- Generate an ed25519 key with 32 key derivation function rounds and save the key to a specific file: -`ssh-keygen -f {{~/.ssh/filename}}` - -- Generate an ed25519 key with 100 key derivation function rounds: - -`ssh-keygen -t {{ed25519}} -a {{100}}` +`ssh-keygen -t {{ed25519}} -a {{32}} -f {{~/.ssh/filename}}` - Generate an RSA 4096-bit key with email as a comment: -`ssh-keygen -t {{dsa|ecdsa|ed25519|rsa}} -b {{4096}} -C "{{comment|email}}"` +`ssh-keygen -t {{rsa}} -b {{4096}} -C "{{comment|email}}"` - Remove the keys of a host from the known_hosts file (useful when a known host has a new key): @@ -34,3 +30,7 @@ - Change the type of the key format (for example from OPENSSH format to PEM), the file will be rewritten in-place: `ssh-keygen -p -N "" -m {{PEM}} -f {{~/.ssh/OpenSSH_private_key}}` + +- Retrieve public key from secret key: + +`ssh-keygen -y -f {{~/.ssh/OpenSSH_private_key}}` diff --git a/pages/common/stack.md b/pages/common/stack.md index 7e8fa0544b..6474d74274 100644 --- a/pages/common/stack.md +++ b/pages/common/stack.md @@ -5,7 +5,7 @@ - Create a new package: -`stack new {{package_name}} {{template_name}}` +`stack new {{package}} {{template}}` - Compile a package: @@ -25,4 +25,4 @@ - Run a program and pass an argument to it: -`stack exec {{program_name}} -- {{argument}}` +`stack exec {{program}} -- {{argument}}` diff --git a/pages/common/standard.md b/pages/common/standard.md index 3b3fd6d043..7e02ccbd7f 100644 --- a/pages/common/standard.md +++ b/pages/common/standard.md @@ -9,7 +9,7 @@ - Lint specific JavaScript file(s): -`standard {{path/to/file(s)}}` +`standard {{path/to/file1 path/to/file2 ...}}` - Apply automatic fixes during linting: diff --git a/pages/common/stdbuf.md b/pages/common/stdbuf.md index 9f4169ccf4..adf41cec12 100644 --- a/pages/common/stdbuf.md +++ b/pages/common/stdbuf.md @@ -3,14 +3,14 @@ > Run a command with modified buffering operations for its standard streams. > More information: . -- Change the standard input buffer size to 512 KiB: +- Change `stdin` buffer size to 512 KiB: `stdbuf --input={{512K}} {{command}}` -- Change the standard output buffer to line-buffered: +- Change `stdout` buffer to line-buffered: `stdbuf --output={{L}} {{command}}` -- Change the standard error buffer to unbuffered: +- Change `stderr` buffer to unbuffered: `stdbuf --error={{0}} {{command}}` diff --git a/pages/common/stressapptest.md b/pages/common/stressapptest.md new file mode 100644 index 0000000000..393d09cf55 --- /dev/null +++ b/pages/common/stressapptest.md @@ -0,0 +1,16 @@ +# stressapptest + +> Userspace memory and IO test. +> More information: . + +- Test the given amount of memory (in Megabytes): + +`stressapptest -M {{memory}}` + +- Test memory as well as I/O for the given file: + +`stressapptest -M {{memory}} -f {{path/to/file}}` + +- Test specifying the verbosity level, where 0=lowest, 20=highest, 8=default: + +`stressapptest -M {{memory}} -v {{level}}` diff --git a/pages/common/stty.md b/pages/common/stty.md index af02d41910..2f6ad052c4 100644 --- a/pages/common/stty.md +++ b/pages/common/stty.md @@ -7,13 +7,9 @@ `stty --all` -- Set the number of rows: +- Set the number of rows or columns: -`stty rows {{rows}}` - -- Set the number of columns: - -`stty cols {{cols}}` +`stty {{rows|cols}} {{count}}` - Get the actual transfer speed of a device: diff --git a/pages/common/stun.md b/pages/common/stun.md new file mode 100644 index 0000000000..e57aff5134 --- /dev/null +++ b/pages/common/stun.md @@ -0,0 +1,12 @@ +# stun + +> Classic STUN client. +> More information: . + +- Make a STUN request: + +`stun {{stun.1und1.de}}` + +- Make a STUN request and specify the source port: + +`stun {{stun.1und1.de}} -p {{4302}}` diff --git a/pages/common/stylua.md b/pages/common/stylua.md new file mode 100644 index 0000000000..84cf675428 --- /dev/null +++ b/pages/common/stylua.md @@ -0,0 +1,24 @@ +# stylua + +> An opinionated Lua code formatter. +> More information: . + +- Auto-format a file or an entire directory: + +`stylua {{path/to/file_or_directory}}` + +- Check if a specific file has been formatted: + +`stylua --check {{path/to/file}}` + +- Run with a specific configuration file: + +`stylua --config-path {{path/to/config_file}} {{path/to/file}}` + +- Format code from `stdin` and output to `stdout`: + +`stylua - < {{path/to/file.lua}}` + +- Format a file or directory using spaces and preferring single quotes: + +`stylua --indent-type {{Spaces}} --quote-style {{AutoPreferSingle}} {{path/to/file_or_directory}}` diff --git a/pages/common/supervisorctl.md b/pages/common/supervisorctl.md index a42960008e..3b9d35c0f1 100644 --- a/pages/common/supervisorctl.md +++ b/pages/common/supervisorctl.md @@ -4,6 +4,10 @@ > Supervisorctl is the command-line client piece of the supervisor which provides a shell-like interface. > More information: . +- Show the status of a process (or all processes if `process_name` is not specified): + +`supervisorctl status {{process_name}}` + - Start/stop/restart a process: `supervisorctl {{start|stop|restart}} {{process_name}}` diff --git a/pages/common/supervisord.md b/pages/common/supervisord.md index 4509c510c6..c81236e8e4 100644 --- a/pages/common/supervisord.md +++ b/pages/common/supervisord.md @@ -4,7 +4,7 @@ > Supervisord is the server part of supervisor; it is primarily managed via a configuration file. > More information: . -- Start supervisord with specified configuration file: +- Start `supervisord` with specified configuration file: `supervisord -c {{path/to/file}}` diff --git a/pages/common/surfraw.md b/pages/common/surfraw.md index e6ae883943..7667e8ad3f 100644 --- a/pages/common/surfraw.md +++ b/pages/common/surfraw.md @@ -1,6 +1,6 @@ # surfraw -> CLI to query a variety of web search engines. +> Query a variety of web search engines. > Consists of a collection of elvi, each of which knows how to search a specific website. > More information: . diff --git a/pages/common/surge.md b/pages/common/surge.md index b86cc2379d..d228949eec 100644 --- a/pages/common/surge.md +++ b/pages/common/surge.md @@ -1,6 +1,6 @@ # surge -> Simple command-line web publishing. +> Simple web publishing. > More information: . - Upload a new site to surge.sh: diff --git a/pages/common/swig.md b/pages/common/swig.md index adb429738d..ec63da03ff 100644 --- a/pages/common/swig.md +++ b/pages/common/swig.md @@ -1,6 +1,6 @@ # swig -> Generate bindings between C / C++ code and various high level languages such as JavaScript, Python, C#, and more. +> Generate bindings between C/C++ code and various high level languages such as JavaScript, Python, C#, and more. > It uses special .i or .swg files to generate the bindings (C/C++ with SWIG directives, then outputs a C/C++ file that contains all the wrapper code needed to build an extension module. > More information: . diff --git a/pages/common/tailscale-up.md b/pages/common/tailscale-up.md index 3751b1f1ea..3882abf274 100644 --- a/pages/common/tailscale-up.md +++ b/pages/common/tailscale-up.md @@ -1,7 +1,7 @@ # tailscale up > Connects the client to the Tailscale network. -> In version 1.8 and above, command line arguments are stored and reused until they're overwritten or `--reset` is called. +> In version 1.8 and above, command-line arguments are stored and reused until they're overwritten or `--reset` is called. > More information: . - Connect to Tailscale: diff --git a/pages/common/tar.md b/pages/common/tar.md index 51213bf308..287a6a9869 100644 --- a/pages/common/tar.md +++ b/pages/common/tar.md @@ -6,32 +6,32 @@ - [c]reate an archive and write it to a [f]ile: -`tar cf {{target.tar}} {{file1}} {{file2}} {{file3}}` +`tar cf {{path/to/target.tar}} {{path/to/file1 path/to/file2 ...}}` - [c]reate a g[z]ipped archive and write it to a [f]ile: -`tar czf {{target.tar.gz}} {{file1}} {{file2}} {{file3}}` +`tar czf {{path/to/target.tar.gz}} {{path/to/file1 path/to/file2 ...}}` - [c]reate a g[z]ipped archive from a directory using relative paths: -`tar czf {{target.tar.gz}} --directory={{path/to/directory}} .` +`tar czf {{path/to/target.tar.gz}} --directory={{path/to/directory}} .` - E[x]tract a (compressed) archive [f]ile into the current directory [v]erbosely: -`tar xvf {{source.tar[.gz|.bz2|.xz]}}` +`tar xvf {{path/to/source.tar[.gz|.bz2|.xz]}}` - E[x]tract a (compressed) archive [f]ile into the target directory: -`tar xf {{source.tar[.gz|.bz2|.xz]}} --directory={{path/to/directory}}` +`tar xf {{path/to/source.tar[.gz|.bz2|.xz]}} --directory={{path/to/directory}}` - [c]reate a compressed archive and write it to a [f]ile, using [a]rchive suffix to determine the compression program: -`tar caf {{target.tar.xz}} {{file1}} {{file2}} {{file3}}` +`tar caf {{path/to/target.tar.xz}} {{path/to/file1 path/to/file2 ...}}` - Lis[t] the contents of a tar [f]ile [v]erbosely: -`tar tvf {{source.tar}}` +`tar tvf {{path/to/source.tar}}` - E[x]tract files matching a pattern from an archive [f]ile: -`tar xf {{source.tar}} --wildcards "{{*.html}}"` +`tar xf {{path/to/source.tar}} --wildcards "{{*.html}}"` diff --git a/pages/common/tb.md b/pages/common/tb.md index e0dbee4e0b..7b67d96d75 100644 --- a/pages/common/tb.md +++ b/pages/common/tb.md @@ -1,6 +1,6 @@ # tb -> CLI for managing tasks and notes across multiple boards. +> Manage tasks and notes across multiple boards. > More information: . - Add a new task to a board: diff --git a/pages/common/tcc.md b/pages/common/tcc.md new file mode 100644 index 0000000000..732fac606f --- /dev/null +++ b/pages/common/tcc.md @@ -0,0 +1,16 @@ +# tcc + +> A tiny C compiler that can run C source files as scripts and otherwise has command-line options similar to `gcc`. +> More information: . + +- Compile and link 2 source files to generate an executable: + +`tcc -o {{executable_name}} {{path/to/file1.c}} {{path/to/file2.c}}` + +- Directly run an input file like a script and pass arguments to it: + +`tcc -run {{path/to/source_file.c}} {{arguments}}` + +- Interpret C source files with a shebang inside the file: + +`#!/full/path/to/tcc -run` diff --git a/pages/common/tcsh.md b/pages/common/tcsh.md index cf6ec88254..3ee634df90 100644 --- a/pages/common/tcsh.md +++ b/pages/common/tcsh.md @@ -1,6 +1,6 @@ # tcsh -> C shell with file name completion and command line editing. +> C shell with file name completion and command-line editing. > See also: `csh`. > More information: . diff --git a/pages/common/tea.md b/pages/common/tea.md index 49e04c89df..a61a278f7c 100644 --- a/pages/common/tea.md +++ b/pages/common/tea.md @@ -1,6 +1,6 @@ # tea -> A command-line tool to interact with Gitea servers. +> Interact with Gitea servers. > More information: . - Log into a Gitea server: diff --git a/pages/common/tectonic.md b/pages/common/tectonic.md new file mode 100644 index 0000000000..f524813d16 --- /dev/null +++ b/pages/common/tectonic.md @@ -0,0 +1,28 @@ +# tectonic + +> A modern, self-contained TeX/LaTeX engine. +> More information: . + +- Compile a standalone TeX/LaTeX file: + +`tectonic -X compile {{path/to/file.tex}}` + +- Compile a standalone TeX/LaTeX file with synctex data: + +`tectonic -X compile --synctex {{path/to/file.tex}}` + +- Initialize a tectonic project in the current directory: + +`tectonic -X init` + +- Initialize a tectonic project in the specified directory: + +`tectonic -X new {{project_name}}` + +- Build the project in the current directory: + +`tectonic -X build` + +- Start a watcher to build the project in the current directory on change: + +`tectonic -X watch` diff --git a/pages/common/tee.md b/pages/common/tee.md index 7423f20dc4..9083e60058 100644 --- a/pages/common/tee.md +++ b/pages/common/tee.md @@ -1,9 +1,9 @@ # tee -> Read from standard input and write to standard output and files (or commands). +> Read from `stdin` and write to `stdout` and files (or commands). > More information: . -- Copy standard input to each file, and also to standard output: +- Copy `stdin` to each file, and also to `stdout`: `echo "example" | tee {{path/to/file}}` @@ -11,7 +11,7 @@ `echo "example" | tee -a {{path/to/file}}` -- Print standard input to the terminal, and also pipe it into another program for further processing: +- Print `stdin` to the terminal, and also pipe it into another program for further processing: `echo "example" | tee {{/dev/tty}} | {{xargs printf "[%s]"}}` diff --git a/pages/common/telegram-desktop.md b/pages/common/telegram-desktop.md new file mode 100644 index 0000000000..1c9ad3d726 --- /dev/null +++ b/pages/common/telegram-desktop.md @@ -0,0 +1,16 @@ +# telegram-desktop + +> Instant messenger with open source clients, chats and stickers. +> More information: . + +- Start GUI: + +`telegram-desktop` + +- Run GUI as an autostart if allowed: + +`telegram-desktop -autostart` + +- Run GUI minimized to tray: + +`telegram-desktop -startintray` diff --git a/pages/common/telnet.md b/pages/common/telnet.md index b8e34c2c2e..6bd4046fa4 100644 --- a/pages/common/telnet.md +++ b/pages/common/telnet.md @@ -19,7 +19,7 @@ `Ctrl + ]` -- Start telnet with "x" as the session termination character: +- Start `telnet` with "x" as the session termination character: `telnet -e {{x}} {{ip_address}} {{port}}` diff --git a/pages/common/terminalizer.md b/pages/common/terminalizer.md index bd6ae63173..6cc33f813a 100644 --- a/pages/common/terminalizer.md +++ b/pages/common/terminalizer.md @@ -9,16 +9,16 @@ - Record the terminal and create a recording file: -`terminalizer record {{filename}}` +`terminalizer record {{path/to/file}}` - Play a recorded file on the terminal: -`terminalizer play {{filename}}` +`terminalizer play {{path/to/file}}` - Render a recording file as an animated GIF image: -`terminalizer render {{filename}}` +`terminalizer render {{path/to/file}}` - Upload a video to terminalizer.com: -`terminalizer share {{filename}}` +`terminalizer share {{path/to/file}}` diff --git a/pages/common/texcount.md b/pages/common/texcount.md new file mode 100644 index 0000000000..eeafe44aa8 --- /dev/null +++ b/pages/common/texcount.md @@ -0,0 +1,21 @@ +# texcount + +> Count words in TeX documents omitting macros. +> Note: if the TeX document uses `\include` or `\input` and you want to count the included files, `texcount` must be run in the directory of the root TeX file. +> More information: . + +- Count words in a TeX file: + +`texcount {{path/to/file.tex}}` + +- Count words in a document and subdocuments built with `\input` or `\include`: + +`texcount -merge {{file.tex}}` + +- Count words in a document and subdocuments, listing each file separately (and a total count): + +`texcount -inc {{file.tex}}` + +- Count words with verbose output: + +`texcount -v {{path/to/file.tex}}` diff --git a/pages/common/time.md b/pages/common/time.md index 2264b378ca..aba01a06f1 100644 --- a/pages/common/time.md +++ b/pages/common/time.md @@ -1,8 +1,9 @@ # time -> See how long a command takes. +> Measure how long a command took to run. +> Note: `time` can either exist as a shell builtin, a standalone program or both. > More information: . -- Time "ls": +- Run the `command` and print the time measurements to `stdout`: -`time ls` +`time {{command}}` diff --git a/pages/common/timetrap.md b/pages/common/timetrap.md index 4ae90e5ebe..572a26cc9f 100644 --- a/pages/common/timetrap.md +++ b/pages/common/timetrap.md @@ -14,3 +14,7 @@ - Display the current timesheet: `timetrap display` + +- Edit the last entry's end time: + +`timetrap edit --end {{time}}` diff --git a/pages/common/tlmgr-info.md b/pages/common/tlmgr-info.md index a40db41d63..874b7a03bd 100644 --- a/pages/common/tlmgr-info.md +++ b/pages/common/tlmgr-info.md @@ -17,11 +17,11 @@ - Show information about a specific package: -`tlmgr info {{package_name}}` +`tlmgr info {{package}}` - List all files contained in a specific package: -`tlmgr info {{package_name}} --list` +`tlmgr info {{package}} --list` - List all installed packages: @@ -29,7 +29,7 @@ - Show only specific information about a package: -`tlmgr info {{package_name}} --data "{{name}},{{category}},{{installed}},{{size}},{{depends}},..."` +`tlmgr info {{package}} --data "{{name}},{{category}},{{installed}},{{size}},{{depends}},..."` - Print all available packages as JSON encoded array: diff --git a/pages/common/tlmgr-pinning.md b/pages/common/tlmgr-pinning.md new file mode 100644 index 0000000000..968ea1b05a --- /dev/null +++ b/pages/common/tlmgr-pinning.md @@ -0,0 +1,20 @@ +# tlmgr pinning + +> The pinning action manages the pinning file. +> More information: . + +- Show the current pinning data: + +`tlmgr pinning show` + +- Pin the matching the packages to the given repository: + +`tlmgr pinning add {{repository}} {{package1 package2 ...}}` + +- Remove any packages recorded in the pinning file matching the packages for the given repository: + +`tlmgr pinning remove {{repository}} {{package1 package2 ...}}` + +- Remove all pinning data for the given repository: + +`tlmgr pinning remove {{repository}} --all` diff --git a/pages/common/tlmgr-search.md b/pages/common/tlmgr-search.md new file mode 100644 index 0000000000..0612d7cd67 --- /dev/null +++ b/pages/common/tlmgr-search.md @@ -0,0 +1,24 @@ +# tlmgr search + +> Search for TeX Live packages using (Perl) regular expressions. +> More information: . + +- Search for a package name and descriptions of all locally installed packages from a specific regular expression: + +`tlmgr search "{{regular_expression}}"` + +- Search for all file names of all locally installed packages from a regular expression: + +`tlmgr search --file "{{regular_expression}}"` + +- Search for all file names, package names, and descriptions of all locally installed packages from a regular expression: + +`tlmgr search --all "{{regular_expression}}"` + +- Search the TeX Live database, instead of the local installation: + +`tlmgr search --global "{{regular_expression}}"` + +- Restrict the matches for package names and descriptions (but not for file names) to whole words: + +`tlmgr search --all --word "{{regular_expression}}"` diff --git a/pages/common/todo.sh.md b/pages/common/todo.sh.md new file mode 100644 index 0000000000..0e7394725a --- /dev/null +++ b/pages/common/todo.sh.md @@ -0,0 +1,28 @@ +# todo.sh + +> Simple and extensible shell script for managing your `todo.txt` file. +> More information: . + +- List every item: + +`todo.sh ls` + +- Add an item with project and context tags: + +`todo.sh add '{{description}} +{{project}} @{{context}}'` + +- Mark an item as [do]ne: + +`todo.sh do {{item_no}}` + +- Remove an item: + +`todo.sh rm {{item_no}}` + +- Set an item's [pri]ority (A-Z): + +`todo.sh pri {{item_no}} {{priority}}` + +- Replace an item: + +`todo.sh replace {{item_no}} '{{new_description}}'` diff --git a/pages/common/todoist.md b/pages/common/todoist.md index b93cfae182..3960b9f2a6 100644 --- a/pages/common/todoist.md +++ b/pages/common/todoist.md @@ -1,6 +1,6 @@ # todoist -> Access Todoist from the command-line. +> Access from the command-line. > More information: . - Add a task: diff --git a/pages/common/touch.md b/pages/common/touch.md index 9ba7657d70..93dd4270e2 100644 --- a/pages/common/touch.md +++ b/pages/common/touch.md @@ -1,24 +1,20 @@ # touch -> Change a file access and modification times (atime, mtime). -> More information: . +> Create files and set access/modification times. +> More information: . -- Create a new empty file(s) or change the times for existing file(s) to current time: +- Create specific files: -`touch {{path/to/file}}` +`touch {{path/to/file1 path/to/file2 ...}}` -- Set the times on a file to a specific date and time: +- Set the file [a]ccess or [m]odification times to the current one and don't [c]reate file if it doesn't exist: -`touch -t {{YYYYMMDDHHMM.SS}} {{path/to/file}}` +`touch -c -{{a|m}} {{path/to/file1 path/to/file2 ...}}` -- Set the time on a file to one hour in the past: +- Set the file [t]ime to a specific value and don't [c]reate file if it doesn't exist: -`touch -d "{{-1 hour}}" {{path/to/file}}` +`touch -c -t {{YYYYMMDDHHMM.SS}} {{path/to/file1 path/to/file2 ...}}` -- Use the times from a file to set the times on a second file: +- Set the file time of a specific file to the time of anothe[r] file and don't [c]reate file if it doesn't exist: -`touch -r {{path/to/file1}} {{path/to/file2}}` - -- Create multiple files: - -`touch {{path/to/file{1,2,3}.txt}}` +`touch -c -r {{~/.emacs}} {{path/to/file1 path/to/file2 ...}}` diff --git a/pages/common/tox.md b/pages/common/tox.md index d38a081692..848c3aaa34 100644 --- a/pages/common/tox.md +++ b/pages/common/tox.md @@ -16,7 +16,7 @@ `tox --listenvs-all` -- Run tests on a specific environment (e.g. python 3.6): +- Run tests on a specific environment (e.g. Python 3.6): `tox -e {{py36}}` diff --git a/pages/common/tpp.md b/pages/common/tpp.md index c314eacbc8..67664c372d 100644 --- a/pages/common/tpp.md +++ b/pages/common/tpp.md @@ -5,8 +5,8 @@ - View a presentation: -`tpp {{filename}}` +`tpp {{path/to/file}}` - Output a presentation: -`tpp -t {{type}} -o {{outputname}} {{filename}}` +`tpp -t {{type}} -o {{path/to/output}} {{path/to/file}}` diff --git a/pages/common/tput.md b/pages/common/tput.md index 77bf8155ce..0d46fabcd7 100644 --- a/pages/common/tput.md +++ b/pages/common/tput.md @@ -23,6 +23,6 @@ `tput sgr0` -- Enable / Disable word wrap: +- Enable or disable word wrap: `tput {{smam|rmam}}` diff --git a/pages/common/tr.md b/pages/common/tr.md index d9c532d399..ed39d1e959 100644 --- a/pages/common/tr.md +++ b/pages/common/tr.md @@ -5,7 +5,7 @@ - Replace all occurrences of a character in a file, and print the result: -`tr {{find_character}} {{replace_character}} < {{filename}}` +`tr {{find_character}} {{replace_character}} < {{path/to/file}}` - Replace all occurrences of a character from another command's output: @@ -13,20 +13,20 @@ - Map each character of the first set to the corresponding character of the second set: -`tr '{{abcd}}' '{{jkmn}}' < {{filename}}` +`tr '{{abcd}}' '{{jkmn}}' < {{path/to/file}}` - Delete all occurrences of the specified set of characters from the input: -`tr -d '{{input_characters}}' < {{filename}}` +`tr -d '{{input_characters}}' < {{path/to/file}}` - Compress a series of identical characters to a single character: -`tr -s '{{input_characters}}' < {{filename}}` +`tr -s '{{input_characters}}' < {{path/to/file}}` - Translate the contents of a file to upper-case: -`tr "[:lower:]" "[:upper:]" < {{filename}}` +`tr "[:lower:]" "[:upper:]" < {{path/to/file}}` - Strip out non-printable characters from a file: -`tr -cd "[:print:]" < {{filename}}` +`tr -cd "[:print:]" < {{path/to/file}}` diff --git a/pages/common/traceroute.md b/pages/common/traceroute.md index a7f5b64a6b..747c0d2d4f 100644 --- a/pages/common/traceroute.md +++ b/pages/common/traceroute.md @@ -5,20 +5,28 @@ - Traceroute to a host: -`traceroute {{host}}` +`traceroute {{example.com}}` - Disable IP address and host name mapping: -`traceroute -n {{host}}` +`traceroute -n {{example.com}}` -- Specify wait time for response: +- Specify wait time in seconds for response: -`traceroute -w {{0.5}} {{host}}` +`traceroute --wait={{0.5}} {{example.com}}` - Specify number of queries per hop: -`traceroute -q {{5}} {{host}}` +`traceroute --queries={{5}} {{example.com}}` - Specify size in bytes of probing packet: -`traceroute {{host}} {{42}}` +`traceroute {{example.com}} {{42}}` + +- Determine the MTU to the destination: + +`traceroute --mtu {{example.com}}` + +- Use ICMP instead of UDP for tracerouting: + +`traceroute --icmp {{example.com}}` diff --git a/pages/common/transmission-create.md b/pages/common/transmission-create.md index cfb97fe9d8..5209363a9d 100644 --- a/pages/common/transmission-create.md +++ b/pages/common/transmission-create.md @@ -1,6 +1,6 @@ # transmission-create -> A CLI utility to create BitTorrent .torrent files. +> Create BitTorrent `.torrent` files. > More information: . - Create a torrent with 2048 KB as the piece size: diff --git a/pages/common/trash-cli.md b/pages/common/trash-cli.md index 2eabc3b7ee..5a3632e452 100644 --- a/pages/common/trash-cli.md +++ b/pages/common/trash-cli.md @@ -3,22 +3,22 @@ > A command-line interface to the trashcan APIs. > More information: . -- Trash files and directories: +- Trash specific files and directories into the current trashcan: -`trash-put {{filename}}` +`trash-put {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` -- Empty the trashcan: +- Remove specific files from the current trashcan: + +`trash-rm {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` + +- Empty the current trashcan: `trash-empty` -- List trashed files: +- List trashed files and directories in the current trashcan: `trash-list` -- Restore a trashed file by choosing a number from the list that results from this command: +- Restore a specific file or directory by a number from the displayed list from the current trashcan: `trash-restore` - -- Remove individual files from the trashcan: - -`trash-rm {{filename}}` diff --git a/pages/common/tre.md b/pages/common/tre.md new file mode 100644 index 0000000000..b0a5cbffa8 --- /dev/null +++ b/pages/common/tre.md @@ -0,0 +1,37 @@ +# tre + +> Show the contents of the current directory as a tree. +> Respects the `.gitignore` settings by default. +> More information: . + +- Print directories only: + +`tre --directories` + +- Print JSON containing files in the tree hierarchy instead of the normal tree diagram: + +`tre --json` + +- Print files and directories up to the specified depth limit (where 1 means the current directory): + +`tre --limit {{depth}}` + +- Print all hidden files and directories using the specified colorization mode: + +`tre --all --color {{automatic|always|never}}` + +- Print files within the tree hierarchy, assigning a shell alias to each file that, when called, will open the associated file using the provided `command` (or in `$EDITOR` by default): + +`tre --editor {{command}}` + +- Print files within the tree hierarchy, excluding all paths that match the provided regular expression: + +`tre --exclude {{regular_expression}}` + +- Display version: + +`tre --version` + +- Display help: + +`tre --help` diff --git a/pages/common/ts-node.md b/pages/common/ts-node.md index 02b90aa1fe..a755ee7b9a 100644 --- a/pages/common/ts-node.md +++ b/pages/common/ts-node.md @@ -11,7 +11,7 @@ `ts-node --skip-project {{path/to/file.ts}}` -- Evaluate TypeScript code passed as a literal on the command-line: +- Evaluate TypeScript code passed as a literal: `ts-node --eval '{{console.log("Hello World")}}'` diff --git a/pages/common/ts.md b/pages/common/ts.md index 11dcefa175..78f19ba7c6 100644 --- a/pages/common/ts.md +++ b/pages/common/ts.md @@ -1,19 +1,19 @@ # ts -> Add timestamps to every line from standard input. +> Add timestamps to every line from `stdin`. > More information: . - Add a timestamp to the beginning of each line: -`{{some_command}} | ts` +`{{command}} | ts` - Add timestamps with microsecond precision: -`{{some_command}} | ts "{{%b %d %H:%M:%.S}}"` +`{{command}} | ts "{{%b %d %H:%M:%.S}}"` - Add [i]ncremental timestamps with microsecond precision, starting from zero: -`{{some_command}} | ts -i "{{%H:%M:%.S}}"` +`{{command}} | ts -i "{{%H:%M:%.S}}"` - Convert existing timestamps in a text file (eg. a log file) into [r]elative format: diff --git a/pages/common/tslint.md b/pages/common/tslint.md index 7dccb53d22..85741cd9d3 100644 --- a/pages/common/tslint.md +++ b/pages/common/tslint.md @@ -9,7 +9,7 @@ - Lint on a given set of files: -`tslint {{filename}}.js {{filename1}}.js` +`tslint {{path/to/file1.js path/to/file2.js ...}}` - Fix lint issues: diff --git a/pages/common/tsort.md b/pages/common/tsort.md index 6461dc47fe..8d7932400f 100644 --- a/pages/common/tsort.md +++ b/pages/common/tsort.md @@ -7,3 +7,7 @@ - Perform a topological sort consistent with a partial sort per line of input separated by blanks: `tsort {{path/to/file}}` + +- Perform a topological sort consistent on strings: + +`echo -e "{{UI Backend\nBackend Database\nDocs UI}}" | tsort` diff --git a/pages/common/tt.md b/pages/common/tt.md new file mode 100644 index 0000000000..0509ae0ad8 --- /dev/null +++ b/pages/common/tt.md @@ -0,0 +1,20 @@ +# tt + +> A terminal based typing test. +> More information: . + +- Start quote mode with the builtin quote list in English: + +`tt -quotes {{en}}` + +- Produce a test consisting of 50 randomly drawn words in 5 groups of 10 words each: + +`tt -n {{10}} -g {{5}}` + +- Start a timed test lasting 10 seconds: + +`tt -t {{10}}` + +- Start `tt` with no theming and showing your WPM as you type: + +`tt -showwpm -notheme` diff --git a/pages/common/tts.md b/pages/common/tts.md new file mode 100644 index 0000000000..36054a5660 --- /dev/null +++ b/pages/common/tts.md @@ -0,0 +1,28 @@ +# tts + +> Synthesize speech. +> More information: . + +- Run text-to-speech with the default models, writing the output to "tts_output.wav": + +`tts --text "{{text}}"` + +- List provided models: + +`tts --list_models` + +- Query info for a model by idx: + +`tts --model_info_by_idx {{model_type/model_query_idx}}` + +- Query info for a model by name: + +`tts --model_info_by_name {{model_type/language/dataset/model_name}}` + +- Run a text-to-speech model with its default vocoder model: + +`tts --text "{{text}}" --model_name {{model_type/language/dataset/model_name}}` + +- Run your own text-to-speech model (using the Griffin-Lim vocoder): + +`tts --text "{{text}}" --model_path {{path/to/model.pth}} --config_path {{path/to/config.json}} --out_path {{path/to/file.wav}}` diff --git a/pages/common/typst.md b/pages/common/typst.md new file mode 100644 index 0000000000..1aa4a6fa4b --- /dev/null +++ b/pages/common/typst.md @@ -0,0 +1,17 @@ +# typst + +> Compile a Typst file to PDF. +> Note: Specifying the output location is optional. +> More information: . + +- List all discoverable fonts in the system and the given directory: + +`typst --font-path {{path/to/fonts_directory}} fonts` + +- Compile a Typst file: + +`typst compile {{path/to/source.typ}} {{path/to/output.pdf}}` + +- Watch a Typst file and recompile on changes: + +`typst watch {{path/to/source.typ}} {{path/to/output.pdf}}` diff --git a/pages/common/u3d.md b/pages/common/u3d.md index 8af6aa8792..9063dec10f 100644 --- a/pages/common/u3d.md +++ b/pages/common/u3d.md @@ -1,9 +1,9 @@ # u3d -> Set of tools to interact with Unity from command line. +> A set of tools to interact with Unity. > More information: . -- Open project from the current directory in correct Unity version: +- Open the project in the current directory using the correct Unity version: `u3d` diff --git a/pages/common/unexpand.md b/pages/common/unexpand.md index 47cd89829c..7b7a7707b2 100644 --- a/pages/common/unexpand.md +++ b/pages/common/unexpand.md @@ -3,11 +3,11 @@ > Convert spaces to tabs. > More information: . -- Convert blanks in each file to tabs, writing to standard output: +- Convert blanks in each file to tabs, writing to `stdout`: `unexpand {{path/to/file}}` -- Convert blanks to tabs, reading from standard output: +- Convert blanks to tabs, reading from `stdout`: `unexpand` diff --git a/pages/common/unzip.md b/pages/common/unzip.md index f64fa8d68b..c5817ff570 100644 --- a/pages/common/unzip.md +++ b/pages/common/unzip.md @@ -1,24 +1,29 @@ # unzip -> Extract compressed files in a ZIP archive. +> Extract files/directories from ZIP archives. +> See also: `zip`. > More information: . -- Extract zip file(s) (for multiple files, separate file paths by spaces): +- Extract all files/directories from specific archives into the current directory: -`unzip {{file(s)}}` +`unzip {{path/to/archive1.zip path/to/archive2.zip ...}}` -- Extract zip files(s) to given path: +- Extract files/directories from archives to a specific path: -`unzip {{compressed_file(s)}} -d {{path/to/put/extracted_file(s)}}` +`unzip {{path/to/archive1.zip path/to/archive2.zip ...}} -d {{path/to/output}}` -- List the contents of a zip file without extracting: +- Extract files/directories from archives to `stdout`: -`unzip -l {{file.zip}}` +`unzip -c {{path/to/archive1.zip path/to/archive2.zip ...}}` - Extract the contents of the file(s) to `stdout` alongside the extracted file names: -`unzip -c {{file.zip}}` +`unzip -O {{gbk}} {{path/to/archive1.zip path/to/archive2.zip ...}}` -- Extract a zip file created on Windows, containing files with non-ASCII (e.g. Chinese or Japanese characters) filenames: +- List the contents of a specific archive without extracting them: -`unzip -O {{gbk}} {{file.zip}}` +`unzip -l {{path/to/archive.zip}}` + +- Extract a specific file from an archive: + +`unzip -j {{path/to/archive.zip}} {{path/to/file_in_archive1 path/to/file_in_archive2 ...}}` diff --git a/pages/common/unzstd.md b/pages/common/unzstd.md index 5770b7f64c..cec9fa7dd7 100644 --- a/pages/common/unzstd.md +++ b/pages/common/unzstd.md @@ -1,16 +1,7 @@ # unzstd -> Decompress files with Zstandard compression. -> More information: . +> This command is an alias of `zstd --decompress`. -- Decompress files: +- View documentation for the original command: -`unzstd {{path/to/file1.ztd path/to/file2.ztd ...}}` - -- Decompress a file into a specific output file: - -`unzstd {{path/to/compressed.ztd}} -o {{path/to/extracted_file}}` - -- Display information about a compressed file: - -`unzip --list {{path/to/file.zst}}` +`tldr zstd` diff --git a/pages/common/vale.md b/pages/common/vale.md index 5383956aab..c0546ed181 100644 --- a/pages/common/vale.md +++ b/pages/common/vale.md @@ -17,7 +17,7 @@ - Check style issues at the specific severity and higher: -`vale --minAlertLeve={{suggestion|warning|error}} {{path/to/file}}` +`vale --minAlertLevel={{suggestion|warning|error}} {{path/to/file}}` - Check the style from `stdin`, specifying markup format: diff --git a/pages/common/vault.md b/pages/common/vault.md index 4ee8714a81..683c137470 100644 --- a/pages/common/vault.md +++ b/pages/common/vault.md @@ -1,6 +1,6 @@ # vault -> A CLI to interact with HashiCorp Vault. +> Interact with HashiCorp Vault. > More information: . - Connect to a Vault server and initialize a new encrypted data store: diff --git a/pages/common/venv.md b/pages/common/venv.md new file mode 100644 index 0000000000..43adc3c460 --- /dev/null +++ b/pages/common/venv.md @@ -0,0 +1,20 @@ +# venv + +> Create lightweight virtual environments in python. +> More information: . + +- Create a python virtual environment: + +` python -m venv {{path/to/virtual_environment}}` + +- Activate the virtual environment (Linux and Mac OS): + +`source {{path/to/virtual_environment}}/bin/activate` + +- Activate the virtual environment (Windows): + +`{{path\to\virtual_environment}}\Scripts\activate.bat` + +- Deactivate the virtual environment: + +`deactivate` diff --git a/pages/common/vhs.md b/pages/common/vhs.md new file mode 100644 index 0000000000..f6b4692bd7 --- /dev/null +++ b/pages/common/vhs.md @@ -0,0 +1,28 @@ +# vhs + +> Generate terminal gifs from a tape file. +> More information: . + +- Create a tape file (add commands to the tape file using an editor): + +`vhs new {{path/to/file.tape}}` + +- Record inputs to a tape file (once done, exit the shell to create the tape): + +`vhs record > {{path/to/file.tape}}` + +- Record inputs to a tape file using a specific shell: + +`vhs record --shell {{shell}} > {{path/to/file.tape}}` + +- Validate the syntax of a tape file: + +`vhs validate {{path/to/file.tape}}` + +- Create a gif from a tape file: + +`vhs < {{path/to/file.tape}}` + +- Publish a gif to and get a shareable URL: + +`vhs publish {{path/to/file.gif}}` diff --git a/pages/common/vifm.md b/pages/common/vifm.md index 3eee6c8f05..2af72d247d 100644 --- a/pages/common/vifm.md +++ b/pages/common/vifm.md @@ -1,6 +1,6 @@ # vifm -> Vifm (VI File Manager) is a command line file manager. +> Vifm (VI File Manager) is a command-line file manager. > More information: . - Open the current directory: @@ -9,4 +9,4 @@ - Open specified directories on left or right plane: -`vifm {{path/to/directory_1}} {{path/to/directory_2}}` +`vifm {{path/to/directory1 path/to/directory2 ...}}` diff --git a/pages/common/virt-install.md b/pages/common/virt-install.md index 2d8fdbcc4a..40d8a80ab0 100644 --- a/pages/common/virt-install.md +++ b/pages/common/virt-install.md @@ -13,7 +13,7 @@ - Create a diskless live virtual machine without an emulated sound device or a USB controller. Don't start an installation and don't autoconnect to console but attach a cdrom to it (might be useful for when using a live CD like tails): -`virt-install --name {{vm_name}} --memory {{512}} --disk {{none}} --controller {{type=usb,model=none}} --sound {{none}} --autoconsole {{none}} --install {{no_install=yes}} --cdrom {{path/to/tails.iso}}` +`virt-install --name {{vm_name}} --memory {{512}} --disk {{none}} --controller {{type=usb,model=none}} --sound {{none}} --autoconsole {{none}} --install {{no_install=yes}} --cdrom {{path/to/tails.iso}}` - Create a virtual machine with 16 GiB RAM, 250 GiB storage, 8 cores with hyperthreading, a specific CPU topology, and a CPU model that shares most features with the host CPU: diff --git a/pages/common/vite.md b/pages/common/vite.md new file mode 100644 index 0000000000..d8ff77b500 --- /dev/null +++ b/pages/common/vite.md @@ -0,0 +1,22 @@ +# Vite + +> Create a Vite project. +> Used to build JavaScript projects. +> Available templates: vanilla, vanilla-ts, vue, vue-ts, react, react-ts, react-swc, react-swc-ts, preact, preact-ts, lit, lit-ts, svelte, svelte-ts. +> More information: . + +- Setup using `npm` 6.x: + +`npm create vite@latest my-react-app --template react-ts` + +- Setup using `npm` 7+, extra double-dash is needed: + +`npm create vite@latest my-react-app -- --template react-ts` + +- Setup using `yarn`: + +`yarn create vite my-react-app --template react-ts` + +- Setup using `pnpm`: + +`pnpm create vite my-react-app --template react-ts` diff --git a/pages/common/viu.md b/pages/common/viu.md index 5675a20479..c09246c9f0 100644 --- a/pages/common/viu.md +++ b/pages/common/viu.md @@ -1,6 +1,6 @@ # viu -> A small command-line application to view images from the terminal. +> View images on the terminal. > More information: . - Render an image or animated GIF: diff --git a/pages/common/w3m.md b/pages/common/w3m.md index 326d690127..fba4240ce8 100644 --- a/pages/common/w3m.md +++ b/pages/common/w3m.md @@ -2,19 +2,19 @@ > A text-based web browser. > Supports SSL and mouse input, even over SSH. -> More information: . +> More information: . - Open a URL: -`w3m {{http://example.com}}` +`w3m {{https://example.com}}` - Open a URL in monochrome mode: -`w3m {{http://example.com}} -M` +`w3m {{https://example.com}} -M` - Open a URL without mouse support: -`w3m {{http://example.com}} --no-mouse` +`w3m {{https://example.com}} -no-mouse` - Open a new browser tab: @@ -26,4 +26,4 @@ - Quit w3m: -`'q' then 'y'` +`'q' followed by 'y'` diff --git a/pages/common/waifu2x-ncnn-vulkan.md b/pages/common/waifu2x-ncnn-vulkan.md new file mode 100644 index 0000000000..1b34184312 --- /dev/null +++ b/pages/common/waifu2x-ncnn-vulkan.md @@ -0,0 +1,16 @@ +# waifu2x-ncnn-vulkan + +> Image upscaler for manga/anime-style images using NCNN neural network framework. +> More information: . + +- Upscale an image: + +`waifu2x-ncnn-vulkan -i {{path/to/input_file}} -o {{path/to/output_file}}` + +- Upscale an image by a custom scale factor and denoise it: + +`waifu2x-ncnn-vulkan -i {{path/to/input_file}} -o {{path/to/output_file}} -s {{1|2|4|8|16|32}} -n {{-1|0|1|2|3}}` + +- Save the upscaled image in a specific format: + +`waifu2x-ncnn-vulkan -i {{path/to/input_file}} -o {{path/to/output_file}} -f {{jpg|png|webp}}` diff --git a/pages/common/wapm.md b/pages/common/wapm.md index 987e7d2332..86b8016891 100644 --- a/pages/common/wapm.md +++ b/pages/common/wapm.md @@ -11,17 +11,17 @@ `wapm install` -- Download a specific version of a package and add it to the list of dependencies in wapm.toml: +- Download a specific version of a package and add it to the list of dependencies in `wapm.toml`: -`wapm install {{package_name}}@{{version}}` +`wapm install {{package}}@{{version}}` - Download a package and install it globally: -`wapm install --global {{package_name}}` +`wapm install --global {{package}}` - Uninstall a package and remove it from the list of dependencies in `wapm.toml`: -`wapm uninstall {{package_name}}` +`wapm uninstall {{package}}` - Print a tree of locally installed dependencies: diff --git a/pages/common/watchexec.md b/pages/common/watchexec.md index 297f623b67..755daea2ed 100644 --- a/pages/common/watchexec.md +++ b/pages/common/watchexec.md @@ -5,16 +5,16 @@ - Call `ls -la` when any file in the current directory changes: -`watchexec -- {{ls -la}}` +`watchexec {{ls -la}}` -- Run `make` when any JavaScript, CSS and HTML files in the current directory change: +- Run `make` when any JavaScript, CSS and HTML file in the current directory changes: `watchexec --exts {{js,css,html}} make` -- Run `make` when any file in the `lib` or `src` subdirectories change: +- Run `make` when any file in the `lib` or `src` directory changes: `watchexec --watch {{lib}} --watch {{src}} {{make}}` -- Call/restart `my_server` when any file in the current directory change, sending `SIGKILL` to stop the child process: +- Call/restart `my_server` when any file in the current directory changes, sending `SIGKILL` to stop the child process: -`watchexec --restart --signal {{SIGKILL}} {{my_server}}` +`watchexec --restart --stop-signal {{SIGKILL}} {{my_server}}` diff --git a/pages/common/weechat.md b/pages/common/weechat.md new file mode 100644 index 0000000000..6b52076b7e --- /dev/null +++ b/pages/common/weechat.md @@ -0,0 +1,24 @@ +# weechat + +> Command-line internet relay chat client with various features. +> More information: . + +- Start WeeChat: + +`weechat` + +- Do not load any plugin(s) on startup: + +`weechat --no-plugin` + +- Do not load any script(s) on startup: + +`weechat --no-script` + +- Do not connect to servers automatically: + +`weechat --no-connect` + +- Write default terminal colors to `stdout`: + +`weechat --colors` diff --git a/pages/common/wfuzz.md b/pages/common/wfuzz.md new file mode 100644 index 0000000000..90de31ab1d --- /dev/null +++ b/pages/common/wfuzz.md @@ -0,0 +1,20 @@ +# wfuzz + +> A web application bruteforcer. +> More information: . + +- Directory and file bruteforce using the specified wordlist and also proxying the traffic: + +`wfuzz -w {{path/to/file}} -p {{127.0.0.1:8080}} {{http://example.com/FUZZ}}` + +- Save the results to a file: + +`wfuzz -w {{path/to/file}} -f {{filename}} {{http://example.com/FUZZ}}` + +- Show colorized output while only showing the declared response codes in the output: + +`wfuzz -c -w {{path/to/file}} --sc {{200,301,302}} {{http://example.com/FUZZ}}` + +- Use a custom header to fuzz subdomains while hiding specific response codes and word counts. Increase the threads to 100 and include the target ip/domain: + +`wfuzz -w {{path/to/file}} -H {{"Host: FUZZ.example.com"}} --hc {{301}} --hw {{222}} -t {{100}} {{example.com}}` diff --git a/pages/common/while.md b/pages/common/while.md index 67cde5af77..60ae66b02b 100644 --- a/pages/common/while.md +++ b/pages/common/while.md @@ -1,7 +1,7 @@ # while > Simple shell loop. -> More information: . +> More information: . - Read `stdin` and perform an action on every line: diff --git a/pages/common/whisper.md b/pages/common/whisper.md new file mode 100644 index 0000000000..bde3ea2eee --- /dev/null +++ b/pages/common/whisper.md @@ -0,0 +1,28 @@ +# whisper + +> Convert audio files to `txt`, `vtt`, `srt`, `tsv` and `json`. +> More information: . + +- Convert a specific audio file to all of the given file formats: + +`whisper {{path/to/audio.mp3}}` + +- Convert an audio file specifying the output format of the converted file: + +`whisper {{path/to/audio.mp3}} --output_format {{txt}}` + +- Convert an audio file using a specific model for conversion: + +`whisper {{path/to/audio.mp3}} --model {{tiny.en,tiny,base.en,base,small.en,small,medium.en,medium,large-v1,large-v2,large}}` + +- Convert an audio file specifying which language the audio file is in to reduce conversion time: + +`whisper {{path/to/audio.mp3}} --language {{english}}` + +- Convert an audio file and save it to a specific location: + +`whisper {{path/to/audio.mp3}} --output_dir "{{path/to/output}}"` + +- Convert an audio file in quiet mode: + +`whisper {{path/to/audio.mp3}} --verbose {{False}}` diff --git a/pages/common/wkhtmltopdf.md b/pages/common/wkhtmltopdf.md new file mode 100644 index 0000000000..8cd965daf6 --- /dev/null +++ b/pages/common/wkhtmltopdf.md @@ -0,0 +1,24 @@ +# wkhtmltopdf + +> An open-source command-line tool to convert HTML documents or web pages into PDF files. +> More information: . + +- Convert a HTML document into PDF: + +`wkhtmltopdf {{input.html}} {{output.pdf}}` + +- Specify the PDF page size (please see `PaperSize` of `QPrinter` for supported sizes): + +`wkhtmltopdf --page-size {{A4}} {{input.html}} {{output.pdf}}` + +- Set the PDF page margins: + +`wkhtmltopdf --margin-{{top|bottom|left|right}} {{10mm}} {{input.html}} {{output.pdf}}` + +- Set the PDF page orientation: + +`wkhtmltopdf --orientation {{Landscape|Portrait}} {{input.html}} {{output.pdf}}` + +- Generate a greyscale version of the PDF document: + +`wkhtmltopdf --grayscale {{input.html}} {{output.pdf}}` diff --git a/pages/common/wordgrinder.md b/pages/common/wordgrinder.md index 54a5277a41..a209e184b3 100644 --- a/pages/common/wordgrinder.md +++ b/pages/common/wordgrinder.md @@ -3,7 +3,7 @@ > Command-line word processor. > More information: . -- Start wordgrinder (loads a blank document by default): +- Start WordGrinder (loads a blank document by default): `wordgrinder` diff --git a/pages/common/wpaclean.md b/pages/common/wpaclean.md new file mode 100644 index 0000000000..abc22556f9 --- /dev/null +++ b/pages/common/wpaclean.md @@ -0,0 +1,13 @@ +# wpaclean + +> Clean capture files to get only the 4-way handshake and a beacon. +> Part of Aircrack-ng network software suite. +> More information: . + +- Clean capture and save only the 4-way handshake and a beacon in the result: + +`wpaclean {{path/to/result.cap}} {{path/to/capture.cap}}` + +- Clean multiple captures and save 4-way handshakes and beacons in the result: + +`wpaclean {{path/to/result.cap}} {{path/to/capture1.cap path/to/capture2.cap ...}}` diff --git a/pages/common/wpm.md b/pages/common/wpm.md index a538eae82c..e72de1cf8d 100644 --- a/pages/common/wpm.md +++ b/pages/common/wpm.md @@ -3,15 +3,15 @@ > Typeracer-like console app for measuring your WPM. > More information: . -- Start the program: +- Start `wpm`: `wpm` -- Start wpm with short texts: +- Start `wpm` with short texts: `wpm --short` -- Start wpm using a specific text file: +- Start `wpm` using a specific text file: `wpm --load {{path/to/file.txt}}` @@ -23,6 +23,6 @@ `wpm --stats` -- Start wpm with monochrome colors: +- Start `wpm` with monochrome colors: `wpm --monochrome` diff --git a/pages/common/wpscan.md b/pages/common/wpscan.md index afb8a0b119..d07a5f1197 100644 --- a/pages/common/wpscan.md +++ b/pages/common/wpscan.md @@ -31,6 +31,6 @@ `wpscan --url {{url}} --usernames {{username|path/to/usernames.txt}} --passwords {{path/to/passwords.txt}} threads {{20}}` -- Scan a WordPress website, collecting vulnerability data from the WPVulnDB (https://wpvulndb.com/): +- Scan a WordPress website, collecting vulnerability data from the WPVulnDB (): `wpscan --url {{url}} --api-token {{token}}` diff --git a/pages/common/wuzz.md b/pages/common/wuzz.md index 87753143d9..2641b7f0a3 100644 --- a/pages/common/wuzz.md +++ b/pages/common/wuzz.md @@ -3,7 +3,7 @@ > Tool to interactively inspect HTTP requests and responses. > More information: . -- Start wuzz: +- Start `wuzz`: `wuzz` diff --git a/pages/common/x_x.md b/pages/common/x_x.md index 3472d77809..50fe1742b6 100644 --- a/pages/common/x_x.md +++ b/pages/common/x_x.md @@ -1,6 +1,6 @@ # x_x -> View Excel and CSV files from the command-line. +> View Excel and CSV files. > More information: . - View an XLSX or CSV file: diff --git a/pages/common/xml-escape.md b/pages/common/xml-escape.md index 7bd4a9f961..990ccdbf4f 100644 --- a/pages/common/xml-escape.md +++ b/pages/common/xml-escape.md @@ -9,7 +9,7 @@ - Escape special XML characters from `stdin`: -`echo "{{}}" | xml escape` +`echo "{{}}" | xml escape` - Display help for the `escape` subcommand: diff --git a/pages/common/xml-select.md b/pages/common/xml-select.md index 321e2827c5..ce1fb4e1de 100644 --- a/pages/common/xml-select.md +++ b/pages/common/xml-select.md @@ -8,7 +8,7 @@ `xml select --template --match "{{XPATH1}}" --value-of "{{XPATH2}}" {{path/to/input.xml|URI}}` -- Match "XPATH1" and print the value of "XPATH2" as text with new-lines: +- Match "XPATH1" and print the value of "XPATH2" as text with new-lines: `xml select --text --template --match "{{XPATH1}}" --value-of "{{XPATH2}}" --nl {{path/to/input.xml|URI}}` diff --git a/pages/common/xml-unescape.md b/pages/common/xml-unescape.md index 78158b1ec1..99a4732a3c 100644 --- a/pages/common/xml-unescape.md +++ b/pages/common/xml-unescape.md @@ -9,7 +9,7 @@ - Unescape special XML characters from `stdin`: -`echo "{{<a1>}}" | xml unescape` +`echo "{{<a1>}}" | xml unescape` - Display help for the `unescape` subcommand: diff --git a/pages/common/xmlstarlet.md b/pages/common/xmlstarlet.md new file mode 100644 index 0000000000..7654440858 --- /dev/null +++ b/pages/common/xmlstarlet.md @@ -0,0 +1,37 @@ +# xmlstarlet + +> A command-line XML/XSLT toolkit. +> Note: You will likely need to know XPath: . +> More information: . + +- Format an XML document and print to `stdout`: + +`xmlstarlet format {{path/to/file.xml}}` + +- XML document can also be piped from `stdin`: + +`{{cat path/to/file.xml}} | xmlstarlet format` + +- Print all nodes that match a given XPath: + +`xmlstarlet select --template --copy-of {{xpath}} {{path/to/file.xml}}` + +- Insert an attribute to all matching nodes, and print to `stdout` (source file is unchanged): + +`xmlstarlet edit --insert {{xpath}} --type attr --name {{attribute_name}} --value {{attribute_value}} {{path/to/file.xml}}` + +- Update the value of all matching nodes in place (source file is changed): + +`xmlstarlet edit --inplace --update {{xpath}} --value {{new_value}} {{file.xml}}` + +- Delete all matching nodes in place (source file is changed): + +`xmlstarlet edit --inplace --delete {{xpath}} {{file.xml}}` + +- Escape or unescape special XML characters in a given string: + +`xmlstarlet [un]escape {{string}}` + +- List a given directory as XML (omit argument to list current directory): + +`xmlstarlet ls {{path/to/directory}}` diff --git a/pages/common/xsp.md b/pages/common/xsp.md new file mode 100644 index 0000000000..0be80ed56c --- /dev/null +++ b/pages/common/xsp.md @@ -0,0 +1,12 @@ +# xsp + +> Mono ASP.NET Web Server. +> More information: . + +- Listen on all interfaces (`0.0.0.0`) and port `8080`: + +`xsp` + +- Listen on a specific IP address and port: + +`xsp --address {{127.0.0.1}} --port {{8000}}` diff --git a/pages/common/xz.md b/pages/common/xz.md index 4a73aaf121..c5b027597a 100644 --- a/pages/common/xz.md +++ b/pages/common/xz.md @@ -1,31 +1,31 @@ # xz -> Compress or decompress .xz and .lzma files. -> More information: . +> Compress or decompress `.xz` and `.lzma` files. +> More information: . -- Compress a file to the xz file format: +- Compress a file using xz: `xz {{path/to/file}}` -- Decompress a xz file: +- Decompress an xz file: -`xz -d {{file.xz}}` +`xz --decompress {{path/to/file.xz}}` -- Compress a file to the LZMA file format: +- Compress a file using lzma: `xz --format={{lzma}} {{path/to/file}}` -- Decompress an LZMA file: +- Decompress an lzma file: -`xz -d --format={{lzma}} {{file.lzma}}` +`xz --decompress --format={{lzma}} {{path/to/file.lzma}}` -- Decompress a file and write to `stdout`: +- Decompress a file and write to `stdout` (implies `--keep`): -`xz -dc {{file.xz}}` +`xz --decompress --stdout {{path/to/file.xz}}` - Compress a file, but don't delete the original: -`xz -k {{path/to/file}}` +`xz --keep {{path/to/file}}` - Compress a file using the fastest compression: diff --git a/pages/common/xzcmp.md b/pages/common/xzcmp.md new file mode 100644 index 0000000000..79a59f2f4c --- /dev/null +++ b/pages/common/xzcmp.md @@ -0,0 +1,9 @@ +# xzcmp + +> Invokes `cmp` on files compressed with `xz`, `lzma`, `gzip`, `bzip2`, `lzop`, or `zstd`. +> All options specified are passed directly to `cmp`. +> More information: . + +- Compare two specific files: + +`xzcmp {{path/to/file1}} {{path/to/file2}}` diff --git a/pages/common/xzdiff.md b/pages/common/xzdiff.md index d494df03c4..02a7fa751a 100644 --- a/pages/common/xzdiff.md +++ b/pages/common/xzdiff.md @@ -1,7 +1,7 @@ # xzdiff -> Invokes the diff command on files compressed with xz, lzma, gzip, bzip2, lzop, or zstd. -> All options specified are passed directly to diff. +> Invokes `diff` on files compressed with `xz`, `lzma`, `gzip`, `bzip2`, `lzop`, or `zstd`. +> All options specified are passed directly to `diff`. > More information: . - Compare files: @@ -23,7 +23,3 @@ - Compare files using paginated results: `xzdiff --paginate {{path/to/file1}} {{path/to/file2}}` - -- Compare directories recursively (shows names for differing files/directories as well as changes made to files): - -`diff --recursive {{path/to/file1}} {{path/to/file2}}` diff --git a/pages/common/xzegrep.md b/pages/common/xzegrep.md new file mode 100644 index 0000000000..e6d70c1975 --- /dev/null +++ b/pages/common/xzegrep.md @@ -0,0 +1,8 @@ +# xzegrep + +> This command is an alias of `xzgrep --extended-regexp`. +> See also: `egrep`. + +- View documentation for the original command: + +`tldr xzgrep` diff --git a/pages/common/xzfgrep.md b/pages/common/xzfgrep.md new file mode 100644 index 0000000000..c12c694a25 --- /dev/null +++ b/pages/common/xzfgrep.md @@ -0,0 +1,8 @@ +# xzfgrep + +> This command is an alias of `xzgrep --fixed-strings`. +> See also: `fgrep`. + +- View documentation for the original command: + +`tldr xzgrep` diff --git a/pages/common/xzgrep.md b/pages/common/xzgrep.md new file mode 100644 index 0000000000..bb23407ea8 --- /dev/null +++ b/pages/common/xzgrep.md @@ -0,0 +1,33 @@ +# xzgrep + +> Search files possibly compressed with `xz`, `lzma`, `gzip`, `bzip2`, `lzop`, or `zstd` using regular expressions. +> See also: `grep`. +> More information: . + +- Search for a pattern within a file: + +`xzgrep "{{search_pattern}}" {{path/to/file}}` + +- Search for an exact string (disables regular expressions): + +`xzgrep --fixed-strings "{{exact_string}}" {{path/to/file}}` + +- Search for a pattern in all files showing line numbers of matches: + +`xzgrep --line-number "{{search_pattern}}" {{path/to/file}}` + +- Use extended regular expressions (supports `?`, `+`, `{}`, `()` and `|`), in case-insensitive mode: + +`xzgrep --extended-regexp --ignore-case "{{search_pattern}}" {{path/to/file}}` + +- Print 3 lines of context around, before, or after each match: + +`xzgrep --{{context|before-context|after-context}}={{3}} "{{search_pattern}}" {{path/to/file}}` + +- Print file name and line number for each match with color output: + +`xzgrep --with-filename --line-number --color=always "{{search_pattern}}" {{path/to/file}}` + +- Search for lines matching a pattern, printing only the matched text: + +`xzgrep --only-matching "{{search_pattern}}" {{path/to/file}}` diff --git a/pages/common/xzless.md b/pages/common/xzless.md index fb83766f8a..ab234f68e4 100644 --- a/pages/common/xzless.md +++ b/pages/common/xzless.md @@ -1,9 +1,17 @@ # xzless -> Display text from `.xz` and `.lzma` files. +> Display text from `xz` and `lzma` compressed files. > See also: `less`. > More information: . -- Open a compressed file: +- View a compressed file: -`xzless {{path/to/archive.xz}}` +`xzless {{path/to/file}}` + +- View a compressed file and display line numbers: + +`xzless --LINE-NUMBERS {{path/to/file}}` + +- View a compressed file and quit if the entire file can be displayed on the first screen: + +`xzless --quit-if-one-screen {{path/to/file}}` diff --git a/pages/common/xzmore.md b/pages/common/xzmore.md new file mode 100644 index 0000000000..1edae1aee2 --- /dev/null +++ b/pages/common/xzmore.md @@ -0,0 +1,9 @@ +# xzmore + +> Display text from `xz` or `lzma` compressed files. +> Almost equivalent to `xzless`, except it respects the `PAGER` environment variable, uses `more` by default and you cannot pass options to the pager. +> More information: . + +- View a compressed file: + +`xzmore {{path/to/file}}` diff --git a/pages/common/yacc.md b/pages/common/yacc.md new file mode 100644 index 0000000000..3573db5bf1 --- /dev/null +++ b/pages/common/yacc.md @@ -0,0 +1,17 @@ +# yacc + +> Generate an LALR parser (in C) with a given formal grammar specification file. +> See also: `bison`. +> More information: . + +- Create a file `y.tab.c` containing the C parser code and compile the grammar file with all necessary constant declarations for values. (Constant declarations file `y.tab.h` is created only when the `-d` flag is used): + +`yacc -d {{path/to/grammar_file.y}}` + +- Compile a grammar file containing the description of the parser and a report of conflicts generated by ambiguities in the grammar: + +`yacc -d {{path/to/grammar_file.y}} -v` + +- Compile a grammar file, and prefix output filenames with `prefix` instead of `y`: + +`yacc -d {{path/to/grammar_file.y}} -v -b {{prefix}}` diff --git a/pages/common/yard.md b/pages/common/yard.md new file mode 100644 index 0000000000..a846f8577d --- /dev/null +++ b/pages/common/yard.md @@ -0,0 +1,16 @@ +# yard + +> Documentation tool for Ruby. +> More information: . + +- Create the documentation: + +`yard` + +- Create the documentation and save it to one file: + +`yard --one-file` + +- List all undocumented objects: + +`yard stats --list-undoc` diff --git a/pages/common/yarn-why.md b/pages/common/yarn-why.md index 2c005e37e8..0c42bd3213 100644 --- a/pages/common/yarn-why.md +++ b/pages/common/yarn-why.md @@ -5,4 +5,4 @@ - Show why a Yarn package is installed: -`yarn-why {{package_name}}` +`yarn-why {{package}}` diff --git a/pages/common/yolo.md b/pages/common/yolo.md new file mode 100644 index 0000000000..a4c0005456 --- /dev/null +++ b/pages/common/yolo.md @@ -0,0 +1,12 @@ +# yolo + +> The YOLO command-line interface lets you simply train, validate or infer models on various tasks and versions. +> More information: . + +- Create a copy of the default configuration in your current working directory: + +`yolo task=init` + +- Train the object detection, instance segment, or classification model with the specified configuration file: + +`yolo task={{detect|segment|classify}} mode=train cfg={{path/to/config.yaml}}` diff --git a/pages/common/yt-dlp.md b/pages/common/yt-dlp.md index 91789b288f..d560237a4b 100644 --- a/pages/common/yt-dlp.md +++ b/pages/common/yt-dlp.md @@ -8,19 +8,19 @@ `yt-dlp "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"` +- List the available downloadable formats for a video: + +`yt-dlp --list-formats "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"` + - Download a video with a defined format, in this case the best mp4 video available (default is "bv\*+ba/b"): `yt-dlp --format "{{bv*[ext=mp4]+ba[ext=m4a]/b[ext=mp4]}}" "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"` -- Extract audio from videos (required ffmpeg or ffprobe): +- Extract audio from a video (requires ffmpeg or ffprobe): `yt-dlp --extract-audio "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"` -- Specify audio format of extracted audio (the default is "best"): - -`yt-dlp --extract-audio --audio-format {{mp3}} "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"` - -- Specify audio quality of extracted audio (between 0 (best) and 10 (worst), default = 5): +- Specify audio format and audio quality of extracted audio (between 0 (best) and 10 (worst), default = 5): `yt-dlp --extract-audio --audio-format {{mp3}} --audio-quality {{0}} "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"` diff --git a/pages/common/zcat.md b/pages/common/zcat.md index 374413b94f..c6ea9cc5fe 100644 --- a/pages/common/zcat.md +++ b/pages/common/zcat.md @@ -3,10 +3,10 @@ > Print data from gzip compressed files. > More information: . -- Print the uncompressed contents of a gzipped file to the standard output: +- Print the uncompressed contents of a gzipped file to `stdout`: `zcat {{file.txt.gz}}` -- Print compression details of a gzipped file to the standard output: +- Print compression details of a gzipped file to `stdout`: `zcat -l {{file.txt.gz}}` diff --git a/pages/common/zeisstopnm.md b/pages/common/zeisstopnm.md new file mode 100644 index 0000000000..c4993f2173 --- /dev/null +++ b/pages/common/zeisstopnm.md @@ -0,0 +1,12 @@ +# zeisstopnm + +> Convert a Zeiss confocal file to Netbpm format. +> More information: . + +- Convert a Zeiss cofocal file into either `.pgm` or `.ppm` format: + +`zeisstopnm {{path/to/file}}` + +- Convert a Zeiss cofocal file to Netbpm format while explicitly specifying the target file type: + +`zeisstopnm -{{pgm|ppm}} {{path/to/file}}` diff --git a/pages/common/zellij.md b/pages/common/zellij.md index 9c74aac739..026848f689 100644 --- a/pages/common/zellij.md +++ b/pages/common/zellij.md @@ -22,4 +22,4 @@ - Detach from the current session (inside a zellij session): -`Ctrl + N, D` +`Ctrl + O, D` diff --git a/pages/common/zotero.md b/pages/common/zotero.md new file mode 100644 index 0000000000..ac41dc5289 --- /dev/null +++ b/pages/common/zotero.md @@ -0,0 +1,20 @@ +# zotero + +> Manage your bibliographies. +> More information: . + +- Run with the GUI: + +`zotero` + +- Run in headless mode: + +`zotero --headless` + +- Run with a specific profile: + +`zotero -P {{profile}}` + +- Run the Migration Assistant: + +`zotero --migration` diff --git a/pages/common/zsh.md b/pages/common/zsh.md index 67b6bd98b8..60e12e73c0 100644 --- a/pages/common/zsh.md +++ b/pages/common/zsh.md @@ -1,22 +1,30 @@ # zsh > Z SHell, a Bash-compatible command-line interpreter. -> See also `histexpand` for history expansion. +> See also: `bash`, `histexpand`. > More information: . - Start an interactive shell session: `zsh` -- Execute a command and then exit: +- Execute specific [c]ommands: -`zsh -c "{{command}}"` +`zsh -c "{{echo Hello world}}"` -- Execute a script: +- Execute a specific script: `zsh {{path/to/script.zsh}}` -- Execute a script, printing each command before executing it: +- Check a specific script for syntax errors without executing it: + +`zsh --no-exec {{path/to/script.zsh}}` + +- Execute specific commands from `stdin`: + +`{{echo Hello world}} | zsh` + +- Execute a specific script, printing each command in the script before executing it: `zsh --xtrace {{path/to/script.zsh}}` diff --git a/pages/common/zstd.md b/pages/common/zstd.md index 4b8d7838f8..4e51ae93de 100644 --- a/pages/common/zstd.md +++ b/pages/common/zstd.md @@ -9,11 +9,11 @@ - Decompress a file: -`zstd -d {{path/to/file}}.zst` +`zstd --decompress {{path/to/file.zst}}` - Decompress to `stdout`: -`zstd -dc {{path/to/file}}.zst` +`zstd --decompress --stdout {{path/to/file.zst}}` - Compress a file specifying the compression level, where 1=fastest, 19=slowest and 3=default: diff --git a/pages/common/zstdcat.md b/pages/common/zstdcat.md new file mode 100644 index 0000000000..3a9d3d5840 --- /dev/null +++ b/pages/common/zstdcat.md @@ -0,0 +1,7 @@ +# zstdcat + +> This command is an alias of `zstd --decompress --stdout`. + +- View documentation for the original command: + +`tldr zstd` diff --git a/pages/common/zstdmt.md b/pages/common/zstdmt.md new file mode 100644 index 0000000000..817f33d1ec --- /dev/null +++ b/pages/common/zstdmt.md @@ -0,0 +1,7 @@ +# zstdmt + +> This command is an alias of `zstd --threads 0` (which sets the number of working threads to the number of physical CPU cores). + +- View documentation for the original command: + +`tldr zstd` diff --git a/pages/linux/aa-complain.md b/pages/linux/aa-complain.md new file mode 100644 index 0000000000..d2bdc9b148 --- /dev/null +++ b/pages/linux/aa-complain.md @@ -0,0 +1,13 @@ +# aa-complain + +> Set an AppArmor policy to complain mode. +> See also: `aa-disable`, `aa-enforce`, `aa-status`. +> More information: . + +- Set policy to complain mode: + +`sudo aa-complain {{path/to/profile}}` + +- Set policies to complain mode: + +`sudo aa-complain --dir {{path/to/profiles}}` diff --git a/pages/linux/aa-disable.md b/pages/linux/aa-disable.md new file mode 100644 index 0000000000..a0d691c280 --- /dev/null +++ b/pages/linux/aa-disable.md @@ -0,0 +1,13 @@ +# aa-disable + +> Disable AppArmor security policy. +> See also: `aa-complain`, `aa-enforce`, `aa-status`. +> More information: . + +- Disable profile: + +`sudo aa-disable {{path/to/profile}}` + +- Disable profiles: + +`sudo aa-disable --dir {{path/to/profiles}}` diff --git a/pages/linux/aa-enforce.md b/pages/linux/aa-enforce.md new file mode 100644 index 0000000000..d8b978e9de --- /dev/null +++ b/pages/linux/aa-enforce.md @@ -0,0 +1,13 @@ +# aa-enforce + +> Set an AppArmor profile to enforce mode. +> See also: `aa-complain`, `aa-disable`, `aa-status`. +> More information: . + +- Enable profile: + +`sudo aa-enforce {{path/to/profile}}` + +- Enable profiles: + +`sudo aa-enforce --dir {{path/to/profile}}` diff --git a/pages/linux/aa-status.md b/pages/linux/aa-status.md new file mode 100644 index 0000000000..f3a2cab552 --- /dev/null +++ b/pages/linux/aa-status.md @@ -0,0 +1,25 @@ +# aa-status + +> List currently loaded AppArmor modules. +> See also: `aa-complain`, `aa-disable`, `aa-enforce`. +> More information: . + +- Check status: + +`sudo aa-status` + +- Display the number of loaded policies: + +`sudo aa-status --profiled` + +- Display the number of loaded enforicing policies: + +`sudo aa-status --enforced` + +- Display the number of loaded non-enforcing policies: + +`sudo aa-status --complaining` + +- Display the number of loaded enforcing policies that kill tasks: + +`sudo aa-status --kill` diff --git a/pages/linux/abroot.md b/pages/linux/abroot.md new file mode 100644 index 0000000000..99cf309971 --- /dev/null +++ b/pages/linux/abroot.md @@ -0,0 +1,37 @@ +# abroot + +> Utility providing full immutability and atomicity by transacting between 2 root partition states (A⟺B). +> Updates are performed using OCI images, to ensure that the system is always in a consistent state. +> More information: . + +- Add packages to the local image (Note: after executing this command, you need to apply these changes.): + +`sudo abroot pkg add {{package}}` + +- Remove packages from the local image (Note: after executing this command, you need to apply these changes.): + +`sudo abroot pkg remove {{package}}` + +- List packages in the local image: + +`sudo abroot pkg list` + +- Apply changes in the local image (Note: you need to reboot your system for these changes to be applied): + +`sudo abroot pkg apply` + +- Rollback your system to previous state: + +`sudo abroot rollback` + +- Edit/View kernel parameters: + +`sudo abroot kargs {{edit|show}}` + +- Display status: + +`sudo abroot status` + +- Display help: + +`abroot --help` diff --git a/pages/linux/acountry.md b/pages/linux/acountry.md index 96012d9b78..7abc849e14 100644 --- a/pages/linux/acountry.md +++ b/pages/linux/acountry.md @@ -3,7 +3,7 @@ > Print the country where an IPv4 address or hostname is located. > More information: . -- Print the country where an IPv4 address or host is located: +- Print a country where an IPv4 address or host is located: `acountry {{example.com}}` diff --git a/pages/linux/adig.md b/pages/linux/adig.md index 7f66419e99..b15c317551 100644 --- a/pages/linux/adig.md +++ b/pages/linux/adig.md @@ -1,6 +1,6 @@ # adig -> Prints information received from Domain Name System (DNS) servers. +> Print information received from Domain Name System (DNS) servers. > More information: . - Display A (default) record from DNS for hostname(s): @@ -11,14 +11,14 @@ `adig -d {{example.com}}` -- Connect to [s]pecified DNS server: +- Connect to a specific DNS [s]erver: `adig -s {{1.2.3.4}} {{example.com}}` -- Use specified TCP port to connect to DNS server: +- Use a specific TCP port to connect to a DNS server: `adig -T {{port}} {{example.com}}` -- Use specified UDP port to connect to DNS server: +- Use a specific UDP port to connect to a DNS server: `adig -U {{port}} {{example.com}}` diff --git a/pages/linux/apache2ctl.md b/pages/linux/apache2ctl.md index f641321d36..8254def05a 100644 --- a/pages/linux/apache2ctl.md +++ b/pages/linux/apache2ctl.md @@ -1,6 +1,6 @@ # apache2ctl -> The CLI tool to administrate HTTP web server Apache. +> Administrate the Apache HTTP web server. > This command comes with Debian based OSes, for RHEL based ones see `httpd`. > More information: . diff --git a/pages/linux/apt-file.md b/pages/linux/apt-file.md index 89dfba7f9c..f8d23267e9 100644 --- a/pages/linux/apt-file.md +++ b/pages/linux/apt-file.md @@ -9,12 +9,12 @@ - Search for packages that contain the specified file or path: -`apt-file {{search|find}} {{part/of/filename}}` +`apt-file {{search|find}} {{partial_path/to/file}}` - List the contents of a specific package: -`apt-file {{show|list}} {{package_name}}` +`apt-file {{show|list}} {{package}}` -- Search for packages that match the regular expression given in `pattern`: +- Search for packages that match the `regular_expression`: `apt-file {{search|find}} --regexp {{regular_expression}}` diff --git a/pages/linux/apt-mark.md b/pages/linux/apt-mark.md index a7198665fd..34f6196415 100644 --- a/pages/linux/apt-mark.md +++ b/pages/linux/apt-mark.md @@ -5,15 +5,15 @@ - Mark a package as automatically installed: -`sudo apt-mark auto {{package_name}}` +`sudo apt-mark auto {{package}}` - Hold a package at its current version and prevent updates to it: -`sudo apt-mark hold {{package_name}}` +`sudo apt-mark hold {{package}}` - Allow a package to be updated again: -`sudo apt-mark unhold {{package_name}}` +`sudo apt-mark unhold {{package}}` - Show manually installed packages: diff --git a/pages/linux/apx-pkgmanagers.md b/pages/linux/apx-pkgmanagers.md new file mode 100644 index 0000000000..9c40afd076 --- /dev/null +++ b/pages/linux/apx-pkgmanagers.md @@ -0,0 +1,21 @@ +# apx pkgmanagers + +> Manage package managers in `apx`. +> Note: user-created package manager configurations are stored in `~/.local/share/apx/pkgmanagers`. +> More information: . + +- Interactively create a new package manager configuration: + +`apx pkgmanagers create` + +- List all available package manager confirgurations: + +`apx pkgmanagers list` + +- Remove a package manager configuration: + +`apx pkgmanagers rm --name {{string}}` + +- Display information about a specific package manager: + +`apx pkgmanagers show {{name}}` diff --git a/pages/linux/apx-stacks.md b/pages/linux/apx-stacks.md new file mode 100644 index 0000000000..5a9d70446d --- /dev/null +++ b/pages/linux/apx-stacks.md @@ -0,0 +1,29 @@ +# apx stacks + +> Manage stacks in `apx`. +> Note: user-created stack configurations are stored in `~/.local/share/apx/stacks`. +> More information: . + +- Interactively create a new stack configuration: + +`apx stacks new` + +- Interactively update a stack configuration: + +`apx stacks update {{name}}` + +- List all available stack configurations: + +`apx stacks list` + +- Remove a specified stack configuration: + +`apx stacks rm --name {{string}}` + +- Import a stack configuration: + +`apx stacks import --input {{path/to/stack.yml}}` + +- Export the stack configuration (Note: the output flag is optional, it is exported to the current working directory by default): + +`apx stacks export --name {{string}} --output {{path/to/output_file}}` diff --git a/pages/linux/apx-subsystems.md b/pages/linux/apx-subsystems.md new file mode 100644 index 0000000000..2d136d0842 --- /dev/null +++ b/pages/linux/apx-subsystems.md @@ -0,0 +1,29 @@ +# apx subsystems + +> Manage subsystems in `apx`. +> Subsystems are containers that can be created based on pre-existing stacks. +> More information: . + +- Interactively create a new subsystem: + +`apx subsystems new` + +- List all available subsystems: + +`apx subsystems list` + +- Reset a specific subsystem to its initial state: + +`apx subsystems reset --name {{string}}` + +- [f]orce reset a specific subsystem: + +`apx subsystems reset --name {{string}} --force` + +- Remove a specific subsystem: + +`apx subsystems rm --name {{string}}` + +- [f]orce remove a specific subsystem: + +`apx subsystems rm --name {{string}} --force` diff --git a/pages/linux/apx.md b/pages/linux/apx.md index 9475e4e697..f2ff5861eb 100644 --- a/pages/linux/apx.md +++ b/pages/linux/apx.md @@ -1,33 +1,16 @@ # apx -> Package management utility for Vanilla OS. -> Install packages inside managed containers or directly inside the host. +> Package management utility with support for multiple sources, allowing you to install packages in subsystems. > More information: . -- Install a package in the system and initialize the container: +- View documentation for managing package managers: -`sudo apx install --sys {{package}} && apx init` +`tldr apx pkgmanagers` -- Install package(s) in the system or install AUR package(s) inside a container: +- View documentation for managing stacks: -`sudo apx install --{{sys|aur}} {{package1 package2 ...}}` +`tldr apx stacks` -- Run an installed package from AUR: +- View documentation for managing subsystems: -`apx --aur run {{package}}` - -- Update the list of available packages in the system: - -`sudo apx --sys update` - -- Upgrade all installed packages in the system to their newest available version: - -`sudo apx --sys upgrade` - -- Remove package(s) in the system or from the AUR container: - -`sudo apx --{{sys|aur}} remove {{package1 package2 ...}}` - -- Enter the container to install packages using `apt` (Use `exit` inside the container to exit it): - -`apx enter` +`tldr apx subsystems` diff --git a/pages/linux/archlinux-java.md b/pages/linux/archlinux-java.md index 717e10fbac..cb5f4f988c 100644 --- a/pages/linux/archlinux-java.md +++ b/pages/linux/archlinux-java.md @@ -1,12 +1,16 @@ # archlinux-java -> A helper script that provides functionalities for Java environments. -> More information: . +> Switch between installed Java environments. +> More information: . - List installed Java environments: `archlinux-java status` +- Return the short name of the current default Java environment: + +`archlinux-java get` + - Set the default Java environment: `archlinux-java set {{java_environment}}` @@ -15,6 +19,6 @@ `archlinux-java unset` -- Set the default Java environment automatically: +- Fix an invalid/broken default Java environment configuration: `archlinux-java fix` diff --git a/pages/linux/arithmetic.md b/pages/linux/arithmetic.md index 001c31fcd5..5a238f39f3 100644 --- a/pages/linux/arithmetic.md +++ b/pages/linux/arithmetic.md @@ -1,7 +1,7 @@ # arithmetic > Quiz on simple arithmetic problems. -> More information: . +> More information: . - Start an arithmetic quiz: diff --git a/pages/linux/arpspoof.md b/pages/linux/arpspoof.md new file mode 100644 index 0000000000..4c9dfbe31b --- /dev/null +++ b/pages/linux/arpspoof.md @@ -0,0 +1,16 @@ +# arpspoof + +> Forge ARP replies to intercept packets. +> More information: . + +- Poison all hosts to intercept packets on [i]nterface for the host: + +`sudo arpspoof -i {{wlan0}} {{host_ip}}` + +- Poison [t]arget to intercept packets on [i]nterface for the host: + +`sudo arpspoof -i {{wlan0}} -t {{target_ip}} {{host_ip}}` + +- Poison both [t]arget and host to intercept packets on [i]nterface for the host: + +`sudo arpspoof -i {{wlan0}} -r -t {{target_ip}} {{host_ip}}` diff --git a/pages/linux/aspell.md b/pages/linux/aspell.md index 7a83563923..2163a11ec0 100644 --- a/pages/linux/aspell.md +++ b/pages/linux/aspell.md @@ -7,7 +7,7 @@ `aspell check {{path/to/file}}` -- List misspelled words from standard input: +- List misspelled words from `stdin`: `cat {{path/to/file}} | aspell list` @@ -19,6 +19,6 @@ `aspell --lang={{cs}}` -- List misspelled words from standard input and ignore words from personal word list: +- List misspelled words from `stdin` and ignore words from personal word list: `cat {{path/to/file}} | aspell --personal={{personal-word-list.pws}} list` diff --git a/pages/linux/aura.md b/pages/linux/aura.md index 34ac65449c..1fe182935c 100644 --- a/pages/linux/aura.md +++ b/pages/linux/aura.md @@ -5,11 +5,11 @@ - Search for packages from the official repositories and AUR: -`aura --aursync --both --search {{package_name|search_regex}}` +`aura --aursync --both --search {{keyword|regular_expression}}` - Install a package from the AUR: -`aura --aursync {{package_name}}` +`aura --aursync {{package}}` - Update all AUR packages in a verbose mode and remove all make dependencies: @@ -17,7 +17,7 @@ - Install a package from the official repositories: -`aura --sync {{package_name}}` +`aura --sync {{package}}` - Synchronize and update all packages from the official repositories: @@ -25,11 +25,11 @@ - Downgrade a package using the package cache: -`aura --downgrade {{package_name}}` +`aura --downgrade {{package}}` - Remove a package and its dependencies: -`aura --remove --recursive --unneeded {{package_name}}` +`aura --remove --recursive --unneeded {{package}}` - Remove orphan packages (installed as dependencies but not required by any package): diff --git a/pages/linux/aurman.md b/pages/linux/aurman.md index cf74a87000..6dc4ba48dc 100644 --- a/pages/linux/aurman.md +++ b/pages/linux/aurman.md @@ -14,15 +14,15 @@ - Install a new package: -`aurman --sync {{package_name}}` +`aurman --sync {{package}}` - Install a new package without show changes of `PKGBUILD` files: -`aurman --sync --noedit {{package_name}}` +`aurman --sync --noedit {{package}}` - Install a new package without prompting: -`aurman --sync --noedit --noconfirm {{package_name}}` +`aurman --sync --noedit --noconfirm {{package}}` - Search the package database for a keyword from the official repositories and AUR: @@ -30,7 +30,7 @@ - Remove a package and its dependencies: -`aurman --remove --recursive --nosave {{package_name}}` +`aurman --remove --recursive --nosave {{package}}` - Clear the package cache (use two `--clean` flags to clean all packages): diff --git a/pages/linux/authconfig.md b/pages/linux/authconfig.md index 2c932070da..8351a62aaa 100644 --- a/pages/linux/authconfig.md +++ b/pages/linux/authconfig.md @@ -1,6 +1,6 @@ # authconfig -> A CLI interface for configuring system authentication resources. +> Configure system authentication resources. > More information: . - Display the current configuration (or dry run): diff --git a/pages/linux/auto-cpufreq.md b/pages/linux/auto-cpufreq.md new file mode 100644 index 0000000000..80fd9994bc --- /dev/null +++ b/pages/linux/auto-cpufreq.md @@ -0,0 +1,8 @@ +# auto-cpufreq + +> Automatic CPU speed & power optimizer. +> More information: . + +- Run `auto-cpufreq` in a specific mode: + +`sudo auto-cpufreq --{{monitor|live|update|remove|stats|force=governor}}` diff --git a/pages/linux/autorandr.md b/pages/linux/autorandr.md index 109e94aba1..ee604e41b0 100644 --- a/pages/linux/autorandr.md +++ b/pages/linux/autorandr.md @@ -5,16 +5,20 @@ - Save the current screen layout: -`autorandr -s {{profile_name}}` +`autorandr --save {{profile_name}}` - Show the saved profiles: `autorandr` -- Change the profile: +- Load the first detected profile: -`autorandr -l {{profile_name}}` +`autorandr --change` + +- Load a specific profile: + +`autorandr --load {{profile_name}}` - Set the default profile: -`autorandr -d {{profile_name}}` +`autorandr --default {{profile_name}}` diff --git a/pages/linux/avahi-browse.md b/pages/linux/avahi-browse.md index f220f6d0fe..065b9936c7 100644 --- a/pages/linux/avahi-browse.md +++ b/pages/linux/avahi-browse.md @@ -4,11 +4,15 @@ > Avahi is compatible with Bonjour (Zeroconf) found in Apple devices. > More information: . -- List all services available on the local network along with their addresses and ports while ignoring local ones: +- List services available on the local network along with their addresses and ports, ignoring ones on the local machine: `avahi-browse --all --resolve --ignore-local` -- List all domains: +- Quickly list services in the local network in SSV format for scripts: + +`avahi-browse --all --terminate --parsable` + +- List domains in the neighbourhood: `avahi-browse --browse-domains` diff --git a/pages/linux/avahi-resolve.md b/pages/linux/avahi-resolve.md new file mode 100644 index 0000000000..1eea3d4af4 --- /dev/null +++ b/pages/linux/avahi-resolve.md @@ -0,0 +1,12 @@ +# avahi-resolve + +> Translate between host names and IP Addresses. +> More information: . + +- Resolve a local service to its IPv4: + +`avahi-resolve -4 --name {{service.local}}` + +- Resolve an IP to a hostname, verbosely: + +`avahi-resolve --verbose --address {{IP}}` diff --git a/pages/linux/avifenc.md b/pages/linux/avifenc.md index da9398fa44..d95c86b103 100644 --- a/pages/linux/avifenc.md +++ b/pages/linux/avifenc.md @@ -5,8 +5,8 @@ - Convert a specific PNG image to AVIF: -`avifenc {{path/to/image.png}} {{path/to/image.avif}}` +`avifenc {{path/to/input.png}} {{path/to/output.avif}}` -- Encode with a specific speed, where 0=slowest, 10=fastest, and 6=default: +- Encode with a specific speed (6=default, 0=slowest and 10=fastest): -`avifenc --speed {{2}} {{path/to/image.png}} {{path/to/image.avif}}` +`avifenc --speed {{2}} {{path/to/input.png}} {{path/to/output.avif}}` diff --git a/pages/linux/bcachefs.md b/pages/linux/bcachefs.md new file mode 100644 index 0000000000..675b39cea6 --- /dev/null +++ b/pages/linux/bcachefs.md @@ -0,0 +1,28 @@ +# bcachefs + +> Manage `bcachefs` filesystems/devices. +> More information: . + +- Format a partition with `bcachefs`: + +`sudo bcachefs format {{path/to/partition}}` + +- Mount a `bcachefs` filesystem: + +`sudo bcachefs mount {{path/to/partition}} {{path/to/mountpoint}}` + +- Create a RAID 0 filesystem where an SSD acts as a cache and an HDD acts as a long-term storage: + +`sudo bcachefs format --label=ssd.ssd1 {{path/to/ssd/partition}} --label=hdd.hdd1 {{path/to/hdd/partition}} --replicas=1 --foreground_target=ssd --promote_target=ssd --background_target=hdd` + +- Mount a multidevice filesystem: + +`sudo bcachefs mount {{path/to/partition1}}:{{path/to/partition2}} {{path/to/mountpoint}}` + +- Display disk usage: + +`bcachefs fs usage --human-readable {{path/to/mountpoint}}` + +- Display help: + +`bcachefs` diff --git a/pages/linux/bchunk.md b/pages/linux/bchunk.md new file mode 100644 index 0000000000..0e37a13016 --- /dev/null +++ b/pages/linux/bchunk.md @@ -0,0 +1,16 @@ +# bchunk + +> Convert CD images to a set of `.iso` and `.cdr` tracks. +> More information: . + +- Convert binary CD into a standard iso9960 image file: + +`bchunk {{path/to/image.bin}} {{path/to/image.cue}} {{path/to/output}}` + +- Convert with verbose mode: + +`bchunk -v {{path/to/image.bin}} {{path/to/image.cue}} {{path/to/output}}` + +- Output audio files in WAV format: + +`bchunk -w {{path/to/image.bin}} {{path/to/image.cue}} {{path/to/output}}` diff --git a/pages/linux/bluetoothctl.md b/pages/linux/bluetoothctl.md index 2caf93e90f..a2b8e99617 100644 --- a/pages/linux/bluetoothctl.md +++ b/pages/linux/bluetoothctl.md @@ -1,6 +1,6 @@ # bluetoothctl -> Manage Bluetooth devices from the command-line. +> Manage Bluetooth devices. > More information: . - Enter the `bluetoothctl` shell: diff --git a/pages/common/bootctl.md b/pages/linux/bootctl.md similarity index 86% rename from pages/common/bootctl.md rename to pages/linux/bootctl.md index ac674d8d1c..1e234e474d 100644 --- a/pages/common/bootctl.md +++ b/pages/linux/bootctl.md @@ -5,7 +5,11 @@ - Show information about the system firmware and the bootloaders: -`sudo bootctl status` +`bootctl status` + +- Show all available bootloader entries: + +`bootctl list` - Set a flag to boot into the system firmware on the next boot (similar to `sudo systemctl reboot --firmware-setup`): @@ -13,11 +17,7 @@ - Specify the path to the EFI system partition (defaults to `/efi/`, `/boot/` or `/boot/efi`): -`sudo bootctl --esp-path={{/path/to/efi_system_partition/}}` - -- Show all available bootloader entries: - -`sudo bootctl list` +`bootctl --esp-path={{/path/to/efi_system_partition/}}` - Install `systemd-boot` into the EFI system partition: diff --git a/pages/linux/braa.md b/pages/linux/braa.md new file mode 100644 index 0000000000..4bdbdf5e96 --- /dev/null +++ b/pages/linux/braa.md @@ -0,0 +1,16 @@ +# braa + +> Ultra-fast mass SNMP scanner allowing multiple hosts simultaneously. +> More information: . + +- Walk the SNMP tree of host with public string querying all OIDs under `.1.3.6`: + +`braa public@{{ip}}:{{.1.3.6.*}}` + +- Query the whole subnet `ip_range` for `system.sysLocation.0`: + +`braa public@{{ip_range}}:{{.1.3.6.1.2.1.1.6.0}}` + +- Attempt to set the value of `system.sysLocation.0` to a specific workgroup: + +`braa private@{{ip}}:{{.1.3.6.1.2.1.1.6.0}}=s'{{workgroup}}'` diff --git a/pages/linux/busctl.md b/pages/linux/busctl.md new file mode 100644 index 0000000000..194518d5a1 --- /dev/null +++ b/pages/linux/busctl.md @@ -0,0 +1,32 @@ +# busctl + +> Introspect and monitor the D-Bus bus. +> More information: . + +- Show all peers on the bus, by their service names: + +`busctl list` + +- Show process information and credentials of a bus service, a process, or the owner of the bus (if no parameter is specified): + +`busctl status {{service|pid}}` + +- Dump messages being exchanged. If no service is specified, show all messages on the bus: + +`busctl monitor {{service1 service2 ...}}` + +- Show an object tree of one or more services (or all services if no service is specified): + +`busctl tree {{service1 service2 ...}}` + +- Show interfaces, methods, properties and signals of the specified object on the specified service: + +`busctl introspect {{service}} {{path/to/object}}` + +- Retrieve the current value of one or more object properties: + +`busctl get-property {{service}} {{path/to/object}} {{interface_name}} {{property_name}}` + +- Invoke a method and show the response: + +`busctl call {{service}} {{path/to/object}} {{interface_name}} {{method_name}}` diff --git a/pages/linux/calcurse.md b/pages/linux/calcurse.md index 6f65347350..4727f3d244 100644 --- a/pages/linux/calcurse.md +++ b/pages/linux/calcurse.md @@ -3,7 +3,7 @@ > A text-based calendar and scheduling application for the command-line. > More information: . -- Start calcurse on interactive mode: +- Start `calcurse` on interactive mode: `calcurse` diff --git a/pages/linux/cam.md b/pages/linux/cam.md new file mode 100644 index 0000000000..5f8a7b6d3c --- /dev/null +++ b/pages/linux/cam.md @@ -0,0 +1,20 @@ +# cam + +> Frontend tool for `libcamera`. +> More information: . + +- List available cameras: + +`cam --list` + +- List controls of a camera: + +`cam --camera {{camera_index}} --list-controls` + +- Write frames to a folder: + +`cam --camera {{camera_index}} --capture={{frames_to_capture}} --file` + +- Display camera feed in a window: + +`cam --camera {{camera_index}} --capture --sdl` diff --git a/pages/linux/cat.md b/pages/linux/cat.md new file mode 100644 index 0000000000..5f1334ff78 --- /dev/null +++ b/pages/linux/cat.md @@ -0,0 +1,32 @@ +# cat + +> Print and concatenate files. +> More information: . + +- Print the contents of a file to `stdout`: + +`cat {{path/to/file}}` + +- Concatenate several files into an output file: + +`cat {{path/to/file1 path/to/file2 ...}} > {{path/to/output_file}}` + +- Append several files to an output file: + +`cat {{path/to/file1 path/to/file2 ...}} >> {{path/to/output_file}}` + +- Copy the contents of a file into an output file in [u]nbuffered mode: + +`cat -u {{/dev/tty12}} > {{/dev/tty13}}` + +- Write `stdin` to a file: + +`cat - > {{path/to/file}}` + +- [n]umber all output lines: + +`cat -n {{path/to/file}}` + +- Display non-printable and whitespace characters (with `M-` prefix if non-ASCII): + +`cat -v -t -e {{path/to/file}}` diff --git a/pages/linux/chronyc.md b/pages/linux/chronyc.md index 64f187c4b6..abd2e6c665 100644 --- a/pages/linux/chronyc.md +++ b/pages/linux/chronyc.md @@ -3,7 +3,7 @@ > Query the Chrony NTP daemon. > More information: . -- Start chronyc in interactive mode: +- Start `chronyc` in interactive mode: `chronyc` diff --git a/pages/linux/chsh.md b/pages/linux/chsh.md deleted file mode 100644 index def8fa9fa3..0000000000 --- a/pages/linux/chsh.md +++ /dev/null @@ -1,20 +0,0 @@ -# chsh - -> Change the user's login shell. -> More information: . - -- Change the current user's login shell interactively: - -`chsh` - -- Change the current user's login shell: - -`chsh --shell {{path/to/shell}}` - -- Change the login shell for a given user: - -`chsh --shell {{path/to/shell}} {{username}}` - -- List available shells: - -`chsh --list-shells` diff --git a/pages/linux/collectd.md b/pages/linux/collectd.md index b2fc04d10f..89545ee4f3 100644 --- a/pages/linux/collectd.md +++ b/pages/linux/collectd.md @@ -15,7 +15,7 @@ `collectd -T` -- Start collectd: +- Start `collectd`: `collectd` diff --git a/pages/linux/compress.md b/pages/linux/compress.md new file mode 100644 index 0000000000..8e6d2fff19 --- /dev/null +++ b/pages/linux/compress.md @@ -0,0 +1,28 @@ +# compress + +> Compress files using the Unix `compress` command. +> More information: . + +- Compress specific files: + +`compress {{path/to/file1 path/to/file2 ...}}` + +- Compress specific files, ignore non-existent ones: + +`compress -f {{path/to/file1 path/to/file2 ...}}` + +- Set maximum compression bits (9-16 bits): + +`compress -b {{bits}}` + +- Write to standard output (no files are changed): + +`compress -c {{path/to/file}}` + +- Decompress files (functions like `uncompress`): + +`compress -d {{path/to/file}}` + +- Display compression percentage: + +`compress -v {{path/to/file}}` diff --git a/pages/linux/coproc.md b/pages/linux/coproc.md new file mode 100644 index 0000000000..01c4a57fd9 --- /dev/null +++ b/pages/linux/coproc.md @@ -0,0 +1,32 @@ +# coproc + +> Bash builtin for creating interactive asynchronous subshells. +> More information: . + +- Run a subshell asynchronously: + +`coproc { {{command1; command2; ...}}; }` + +- Create a coprocess with a specific name: + +`coproc {{name}} { {{command1; command2; ...}}; }` + +- Write to a specific coprocess `stdin`: + +`echo "{{input}}" >&"${{{name}}[1]}"` + +- Read from a specific coprocess `stdout`: + +`read {{variable}} <&"${{{name}}[0]}"` + +- Create a coprocess which repeatedly reads `stdin` and runs some commands on the input: + +`coproc {{name}} { while read line; do {{command1; command2; ...}}; done }` + +- Create a coprocess which repeatedly reads `stdin`, runs a pipeline on the input, and writes the output to `stdout`: + +`coproc {{name}} { while read line; do echo "$line" | {{command1 | command2 | ...}} | cat /dev/fd/0; done }` + +- Create and use a coprocess running `bc`: + +`coproc BC { bc --mathlib; }; echo "1/3" >&"${BC[1]}"; read output <&"${BC[0]}"; echo "$output"` diff --git a/pages/linux/cp.md b/pages/linux/cp.md index fe7f3ecd48..ccb722da72 100644 --- a/pages/linux/cp.md +++ b/pages/linux/cp.md @@ -19,6 +19,10 @@ `cp -vr {{path/to/source_directory}} {{path/to/target_directory}}` +- Copy multiple files at once to a directory: + +`cp -t {{path/to/destination_directory}} {{path/to/file1 path/to/file2 ...}}` + - Copy text files to another location, in interactive mode (prompts user before overwriting): `cp -i {{*.txt}} {{path/to/target_directory}}` diff --git a/pages/linux/cpulimit.md b/pages/linux/cpulimit.md index 492f83fdfb..1f1e883f8c 100644 --- a/pages/linux/cpulimit.md +++ b/pages/linux/cpulimit.md @@ -13,7 +13,7 @@ - Launch a given program and limit it to only use 50% of the CPU: -`cpulimit --limit {{50}} -- {{program arg1 arg2 ...}}` +`cpulimit --limit {{50}} -- {{program argument1 argument2 ...}}` - Launch a program, limit its CPU usage to 50% and run cpulimit in the background: diff --git a/pages/linux/dbclient.md b/pages/linux/dbclient.md new file mode 100644 index 0000000000..07b3714a8a --- /dev/null +++ b/pages/linux/dbclient.md @@ -0,0 +1,24 @@ +# dbclient + +> Lightweight Dropbear Secure Shell client. +> More information: . + +- Connect to a remote host: + +`dbclient {{user}}@{{host}}` + +- Connect to a remote host on [p]ort 2222: + +`dbclient {{user}}@{{host}} -p 2222` + +- Connect to a remote host using a specific [i]dentity key in dropbear format: + +`dbclient -i {{path/to/key_file}} {{user}}@{{host}}` + +- Run a command on the remote host with a [t]ty allocation allowing interaction with the remote command: + +`dbclient {{user}}@{{host}} -t {{command}} {{argument1 argument2 ...}}` + +- Connect and forward [A]gent connections to remote host: + +`dbclient -A {{user}}@{{host}}` diff --git a/pages/linux/dd.md b/pages/linux/dd.md new file mode 100644 index 0000000000..0439211646 --- /dev/null +++ b/pages/linux/dd.md @@ -0,0 +1,32 @@ +# dd + +> Convert and copy a file. +> More information: . + +- Make a bootable USB drive from an isohybrid file (such like `archlinux-xxx.iso`) and show the progress: + +`dd if={{path/to/file.iso}} of={{/dev/usb_drive}} status=progress` + +- Clone a drive to another drive with 4 MiB block, ignore error and show the progress: + +`dd if={{/dev/source_drive}} of={{/dev/dest_drive}} bs={{4M}} conv={{noerror}} status=progress` + +- Generate a file of 100 random bytes by using kernel random driver: + +`dd if=/dev/urandom of={{path/to/random_file}} bs={{100}} count={{1}}` + +- Benchmark the write performance of a disk: + +`dd if=/dev/zero of={{path/to/file_1GB}} bs={{1024}} count={{1000000}}` + +- Generate a system backup into an IMG file and show the progress: + +`dd if={{/dev/drive_device}} of={{path/to/file.img}} status=progress` + +- Restore a drive from an IMG file and show the progress: + +`dd if={{path/to/file.img}} of={{/dev/drive_device}} status=progress` + +- Check the progress of an ongoing dd operation (run this command from another shell): + +`kill -USR1 $(pgrep ^dd)` diff --git a/pages/linux/debchange.md b/pages/linux/debchange.md index 4d087052cf..2fc2d134f9 100644 --- a/pages/linux/debchange.md +++ b/pages/linux/debchange.md @@ -1,7 +1,7 @@ # debchange > Tool for maintenance of the debian/changelog file in a Debian source package. -> More information: . +> More information: . - Add a new version for a non-maintainer upload to the changelog: diff --git a/pages/linux/debman.md b/pages/linux/debman.md index 44b004e027..3d93792a02 100644 --- a/pages/linux/debman.md +++ b/pages/linux/debman.md @@ -3,14 +3,14 @@ > Read man pages from uninstalled packages. > More information: . -- Read a man page for a command that is provided by a specified package name: +- Read a man page for a command that is provided by a specified package: -`debman -p {{package_name}} {{command_name}}` +`debman -p {{package}} {{command}}` - Specify a package version to download: -`debman -p {{package_name}}={{version}} {{command_name}}` +`debman -p {{package}}={{version}} {{command}}` - Read a man page in a `.deb` file: -`debman -f {{path/to/filename.deb}} {{command_name}}` +`debman -f {{path/to/filename.deb}} {{command}}` diff --git a/pages/linux/debuild.md b/pages/linux/debuild.md index cd3824506b..882aff344f 100644 --- a/pages/linux/debuild.md +++ b/pages/linux/debuild.md @@ -1,7 +1,7 @@ # debuild > Tool to build a Debian package from source. -> More information: . +> More information: . - Build the package in the current directory: diff --git a/pages/linux/delpart.md b/pages/linux/delpart.md new file mode 100644 index 0000000000..ef18fd8e7a --- /dev/null +++ b/pages/linux/delpart.md @@ -0,0 +1,8 @@ +# delpart + +> Ask the Linux kernel to forget about a partition. +> More information: . + +- Tell the kernel to forget about the first partition of `/dev/sda`: + +`sudo delpart {{/dev/sda}} {{1}}` diff --git a/pages/linux/dget.md b/pages/linux/dget.md index 65f84610da..a8adf4ab5e 100644 --- a/pages/linux/dget.md +++ b/pages/linux/dget.md @@ -1,11 +1,11 @@ # dget > Download Debian packages. -> More information: . +> More information: . - Download a binary package: -`dget {{package_name}}` +`dget {{package}}` - Download and extract a package source from its `.dsc` file: diff --git a/pages/linux/diff3.md b/pages/linux/diff3.md index bbd226e35d..879402b06c 100644 --- a/pages/linux/diff3.md +++ b/pages/linux/diff3.md @@ -5,8 +5,8 @@ - Compare files: -`diff3 {{file1}} {{file2}} {{file3}}` +`diff3 {{path/to/file1}} {{path/to/file2}} {{path/to/file3}}` - Show all changes, outlining conflicts: -`diff3 --show-all {{file1}} {{file2}} {{file3}}` +`diff3 --show-all {{path/to/file1}} {{path/to/file2}} {{path/to/file3}}` diff --git a/pages/linux/dirbuster.md b/pages/linux/dirbuster.md new file mode 100644 index 0000000000..c474088a47 --- /dev/null +++ b/pages/linux/dirbuster.md @@ -0,0 +1,24 @@ +# dirbuster + +> Brute force directories and filenames on servers. +> More information: . + +- Start in GUI mode: + +`dirbuster -u {{http://example.com}}` + +- Start in headless (no GUI) mode: + +`dirbuster -H -u {{http://example.com}}` + +- Set the file extension list: + +`dirbuster -e {{txt,html}}` + +- Enable verbose output: + +`dirbuster -v` + +- Set the report location: + +`dirbuster -r {{path/to/report.txt}}` diff --git a/pages/linux/distrobox-create.md b/pages/linux/distrobox-create.md index 6650aeecb2..7b00b50268 100644 --- a/pages/linux/distrobox-create.md +++ b/pages/linux/distrobox-create.md @@ -1,13 +1,13 @@ # distrobox-create -> Create Distrobox containers with an input name and image. -> The created container will be tightly integrated with the host, allowing sharing of the HOME directory of the user, external storage, external usb devices and graphical apps (X11/Wayland), and audio. -> More information: . +> Create a distrobox container. See also: `tldr distrobox`. +> The container created will be tightly integrated with the host, allowing sharing of the user's HOME directory, external storage, external USB devices, graphical apps (X11/Wayland), and audio. +> More information: . -- Create a distrobox using the Alpine image: +- Create a distrobox container using the Ubuntu image: -`distrobox-create {{container_name}} --image alpine` +`distrobox-create {{container_name}} --image {{ubuntu:latest}}` -- Clone a distrobox: +- Clone a distrobox container: `distrobox-create --clone {{container_name}} {{cloned_container_name}}` diff --git a/pages/linux/distrobox-enter.md b/pages/linux/distrobox-enter.md index 105f4e4df4..94aecbfda2 100644 --- a/pages/linux/distrobox-enter.md +++ b/pages/linux/distrobox-enter.md @@ -1,13 +1,17 @@ # distrobox-enter -> Run a command in a Distrobox container. -> Default command executed is your SHELL, but you can specify different shells or entire commands to execute. If used inside a script, an application, or a service, you can specify the --headless mode to disable tty and interactivity. -> More information: . +> Enter a distrobox container. See also: `tldr distrobox`. +> Default command executed is your SHELL, but you can specify different shells or entire commands to execute. If used inside a script, an application, or a service, you can use the `--headless` mode to disable the tty and interactivity. +> More information: . -- Enter a distrobox and run `sh -l`: +- Enter a distrobox container: -`distrobox-enter container-name -- sh -l` +`distrobox-enter {{container_name}}` -- Enter a distrobox without instantiating a tty: +- Enter a distrobox container and run a command at login: -`distrobox-enter -H container-name -- uptime -p` +`distrobox-enter {{container_name}} -- {{sh -l}}` + +- Enter a distrobox container without instantiating a tty: + +`distrobox-enter --name {{container_name}} -- {{uptime -p}}` diff --git a/pages/linux/distrobox-export.md b/pages/linux/distrobox-export.md new file mode 100644 index 0000000000..cd8c8ae994 --- /dev/null +++ b/pages/linux/distrobox-export.md @@ -0,0 +1,25 @@ +# distrobox-export + +> Export app/service/binary from container to host OS. +> Subcommand of `distrobox`. See also: `tldr distrobox`. +> More information: . + +- Export an app from the container to the host (the desktop entry/icon will show up in your host system's application list): + +`distrobox-export --app {{package}} --extra-flags "--foreground"` + +- Export a binary from the container to the host: + +`distrobox-export --bin {{path/to/binary}} --export-path {{path/to/binary_on_host}}` + +- Export a binary from the container to the host (i.e.`$HOME/.local/bin`) : + +`distrobox-export --bin {{path/to/binary}} --export-path {{path/to/export}}` + +- Export a service from the container to the host (`--sudo` will run the service as root inside the container): + +`distrobox-export --service {{package}} --extra-flags "--allow-newer-config" --sudo` + +- Unexport/delete an exported application: + +`distrobox-export --app {{package}} --delete` diff --git a/pages/linux/distrobox-host-exec.md b/pages/linux/distrobox-host-exec.md new file mode 100644 index 0000000000..5ac9ac410e --- /dev/null +++ b/pages/linux/distrobox-host-exec.md @@ -0,0 +1,13 @@ +# distrobox-host-exec + +> Execute a command on the host from inside a distrobox container. +> Subcommand of `distrobox`. See also: `tldr distrobox`. +> More information: . + +- Execute command on the host system from inside the distrobox container: + +`distrobox-host-exec "{{command}}"` + +- Execute the `ls` command on the host system from inside the container: + +`distrobox-host-exec ls` diff --git a/pages/linux/distrobox-list.md b/pages/linux/distrobox-list.md index f353bba419..8bdf5f65c6 100644 --- a/pages/linux/distrobox-list.md +++ b/pages/linux/distrobox-list.md @@ -1,7 +1,8 @@ # distrobox-list -> List available Distrobox containers. It detects them and lists them separately from the rest of normal podman or Docker containers. -> More information: . +> List all distrobox containers. See also: `tldr distrobox`. +> Distrobox containers are listed separately from the rest of normal podman or Docker containers. +> More information: . - List all distrobox containers: @@ -9,4 +10,4 @@ - List all distrobox containers with verbose information: -`distrobox-list -v` +`distrobox-list --verbose` diff --git a/pages/linux/distrobox-rm.md b/pages/linux/distrobox-rm.md index 6183c08896..cd41263da3 100644 --- a/pages/linux/distrobox-rm.md +++ b/pages/linux/distrobox-rm.md @@ -1,12 +1,13 @@ # distrobox-rm -> Delete Distrobox containers. -> More information: . +> Remove a distrobox container. +> Subcommand of `distrobox`. See also: `tldr distrobox`. +> More information: . -- Remove a distrobox: +- Remove a distrobox container (Tip: Stop the container before removing it): `distrobox-rm {{container_name}}` -- Remove a distrobox forcefully: +- Remove a distrobox container forcefully: `distrobox-rm {{container_name}} --force` diff --git a/pages/linux/distrobox-stop.md b/pages/linux/distrobox-stop.md new file mode 100644 index 0000000000..95abd58c06 --- /dev/null +++ b/pages/linux/distrobox-stop.md @@ -0,0 +1,13 @@ +# distrobox-stop + +> Stop a distrobox container. +> Subcommand of `distrobox`. See also: `tldr distrobox`. +> More information: . + +- Stop a distrobox container: + +`distrobox-stop {{container_name}}` + +- Stop a distrobox container non-interactively (without confirmation): + +`distrobox-stop --name {{container_name}} --yes` diff --git a/pages/linux/distrobox-upgrade.md b/pages/linux/distrobox-upgrade.md new file mode 100644 index 0000000000..1727adeb89 --- /dev/null +++ b/pages/linux/distrobox-upgrade.md @@ -0,0 +1,17 @@ +# distrobox-upgrade + +> Upgrade one or multiple distrobox containers. +> Subcommand of `distrobox`. See also: `tldr distrobox`. +> More information: . + +- Upgrade a container using the container's native package manager: + +`distrobox-upgrade {{container_name}}` + +- Upgrade all containers using the container's native package managers: + +`distrobox-upgrade --all` + +- Upgrade specific containers via the container's native package manager: + +`distrobox-upgrade {{container1 container2 ...}}` diff --git a/pages/linux/distrobox.md b/pages/linux/distrobox.md new file mode 100644 index 0000000000..4963ee4147 --- /dev/null +++ b/pages/linux/distrobox.md @@ -0,0 +1,37 @@ +# distrobox + +> Use any Linux distribution inside your terminal in a container. Install & use packages inside it while tightly integrating with the host OS, sharing storage (`home` directory) and hardware. +> It uses Podman or Docker to create your containers. +> More information: . + +- View documentation for creating containers: + +`tldr distrobox-create` + +- View documentation for listing container's information: + +`tldr distrobox-list` + +- View documentation for entering the container: + +`tldr distrobox-enter` + +- View documentation for executing a command on the host from inside a container: + +`tldr distrobox-host-exec` + +- View documentation for exporting app/service/binary from the container to the host: + +`tldr distrobox-export` + +- View documentation for upgrading containers: + +`tldr distrobox-upgrade` + +- View documentation for stopping the containers: + +`tldr distrobox-stop` + +- View documentation for removing the containers: + +`tldr distrobox-rm` diff --git a/pages/linux/dmesg.md b/pages/linux/dmesg.md index e561bea4ce..bf775d0e38 100644 --- a/pages/linux/dmesg.md +++ b/pages/linux/dmesg.md @@ -1,6 +1,6 @@ # dmesg -> Write the kernel messages to standard output. +> Write the kernel messages to `stdout`. > More information: . - Show kernel messages: diff --git a/pages/linux/dnf.md b/pages/linux/dnf.md index 8007f007d6..d166170e45 100644 --- a/pages/linux/dnf.md +++ b/pages/linux/dnf.md @@ -10,7 +10,7 @@ - Search packages via keywords: -`dnf search {{keywords}}` +`dnf search {{keyword1 keyword2 ...}}` - Display details about a package: @@ -18,19 +18,19 @@ - Install a new package (use `-y` to confirm all prompts automatically): -`sudo dnf install {{package}}` +`sudo dnf install {{package1 package2 ...}}` - Remove a package: -`sudo dnf remove {{package}}` +`sudo dnf remove {{package1 package2 ...}}` - List installed packages: `dnf list --installed` -- Find which packages provide a given file: +- Find which packages provide a given command: -`dnf provides {{file}}` +`dnf provides {{command}}` - View all past operations: diff --git a/pages/linux/dolphin.md b/pages/linux/dolphin.md index c22b9a708a..022a89c545 100644 --- a/pages/linux/dolphin.md +++ b/pages/linux/dolphin.md @@ -1,29 +1,29 @@ # dolphin -> KDE file manager. +> KDE's file manager to manage files and directories. > More information: . -- Launch Dolphin: +- Launch the file manager: `dolphin` -- Launch Dolphin and display a specific directory: +- Open specific directories: -`dolphin {{path/to/directory}}` +`dolphin {{path/to/directory1 path/to/directory2 ...}}` -- Launch Dolphin with a specific file or directory selected: +- Open with specific files or directories selected: -`dolphin --select {{path/to/file_or_directory}}` +`dolphin --select {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` -- Launch Dolphin in a separated window: +- Open a new window: `dolphin --new-window` -- Launch Dolphin in split view: +- Open specific directories in split view: -`dolphin --split` +`dolphin --split {{path/to/directory1}} {{path/to/directory2}}` -- Start the Dolphin daemon (only required to use the DBus interface): +- Launch the daemon (only required to use the DBus interface): `dolphin --daemon` diff --git a/pages/linux/dpkg-reconfigure.md b/pages/linux/dpkg-reconfigure.md new file mode 100644 index 0000000000..4795af7081 --- /dev/null +++ b/pages/linux/dpkg-reconfigure.md @@ -0,0 +1,8 @@ +# dpkg-reconfigure + +> Reconfigure an already installed package. +> More information: . + +- Reconfigure one or more packages: + +`dpkg-reconfigure {{package1 package2 ...}}` diff --git a/pages/linux/dpkg.md b/pages/linux/dpkg.md index 4e80a4ea93..6008361126 100644 --- a/pages/linux/dpkg.md +++ b/pages/linux/dpkg.md @@ -11,7 +11,7 @@ - Remove a package: -`dpkg -r {{package_name}}` +`dpkg -r {{package}}` - List installed packages: @@ -19,7 +19,7 @@ - List a package's contents: -`dpkg -L {{package_name}}` +`dpkg -L {{package}}` - List contents of a local package file: @@ -27,4 +27,4 @@ - Find out which package owns a file: -`dpkg -S {{filename}}` +`dpkg -S {{path/to/file}}` diff --git a/pages/linux/dracut.md b/pages/linux/dracut.md new file mode 100644 index 0000000000..1a2191f3d3 --- /dev/null +++ b/pages/linux/dracut.md @@ -0,0 +1,21 @@ +# dracut + +> Generate initramfs images to boot the Linux kernel. +> Dracut uses options from configuration files in `/etc/dracut.conf`, `/etc/dracut.conf.d/*.conf` and `/usr/lib/dracut/dracut.conf.d/*.conf` by default. +> More information: . + +- Generate an initramfs image for the current kernel without overriding any options: + +`dracut` + +- Generate an initramfs image for the current kernel and overwrite the existing one: + +`dracut --force` + +- Generate an initramfs image for a specific kernel: + +`dracut --kver {{kernel_version}}` + +- Show a list of available modules: + +`dracut --list-modules` diff --git a/pages/linux/dropbearconvert.md b/pages/linux/dropbearconvert.md new file mode 100644 index 0000000000..466997a3c4 --- /dev/null +++ b/pages/linux/dropbearconvert.md @@ -0,0 +1,12 @@ +# dropbearconvert + +> Convert between Dropbear and OpenSSH private key formats. +> More information: . + +- Convert an OpenSSH private key to the Dropbear format: + +`dropbearconvert openssh dropbear {{path/to/input_key}} {{path/to/output_key}}` + +- Convert a Dropbear private key to the OpenSSH format: + +`dropbearconvert dropbear openssh {{path/to/input_key}} {{path/to/output_key}}` diff --git a/pages/linux/dropbearkey.md b/pages/linux/dropbearkey.md new file mode 100644 index 0000000000..5992d24921 --- /dev/null +++ b/pages/linux/dropbearkey.md @@ -0,0 +1,20 @@ +# dropbearkey + +> Generate SSH keys in Dropbear format. +> More information: . + +- Generate an SSH key of [t]ype ed25519 and write it to key [f]ile: + +`dropbearkey -t {{ed25519}} -f {{path/to/key_file}}` + +- Generate an SSH key of [t]ype ecdsa and write it to key [f]ile: + +`dropbearkey -t {{ecdsa}} -f {{path/to/key_file}}` + +- Generate an SSH key of [t]ype RSA with 4096-bit key [s]ize and write it to key [f]ile: + +`dropbearkey -t {{rsa}} -s {{4096}} -f {{path/to/key_file}}` + +- Print the private key fingerprint and public key in key [f]ile: + +`dropbearkey -y -f {{path/to/key_file}}` diff --git a/pages/linux/eix.md b/pages/linux/eix.md index 71957d8688..8991e49d5e 100644 --- a/pages/linux/eix.md +++ b/pages/linux/eix.md @@ -6,11 +6,11 @@ - Search for a package: -`eix {{package_name}}` +`eix {{query}}` - Search for installed packages: -`eix --installed {{package_name}}` +`eix --installed {{query}}` - Search in package descriptions: diff --git a/pages/linux/emerge.md b/pages/linux/emerge.md index 87ff76ad8e..55a15bc57a 100644 --- a/pages/linux/emerge.md +++ b/pages/linux/emerge.md @@ -18,11 +18,11 @@ - Install a new package, with confirmation: -`emerge -av {{package_name}}` +`emerge -av {{package}}` - Remove a package, with confirmation: -`emerge -Cav {{package_name}}` +`emerge -Cav {{package}}` - Remove orphaned packages (that were installed only as dependencies): diff --git a/pages/linux/engrampa.md b/pages/linux/engrampa.md index 6f48e64b60..324df9ea92 100644 --- a/pages/linux/engrampa.md +++ b/pages/linux/engrampa.md @@ -4,7 +4,7 @@ > See also: `zip`, `tar`. > More information: . -- Start engrampa: +- Start Engrampa: `engrampa` diff --git a/pages/linux/envycontrol.md b/pages/linux/envycontrol.md new file mode 100644 index 0000000000..f0b7c477fb --- /dev/null +++ b/pages/linux/envycontrol.md @@ -0,0 +1,28 @@ +# envycontrol + +> GPU switching utility for Nvidia Optimus laptops. +> More information: . + +- Switch between different GPU modes: + +`sudo envycontrol -s {{nvidia|integrated|hybrid}}` + +- Specify your display manager manually: + +`envycontrol --dm` + +- Check current GPU mode: + +`sudo envycontrol --query` + +- Reset settings: + +`sudo envycontrol --reset` + +- Display version: + +`envycontrol --version` + +- Display help: + +`envycontrol --help` diff --git a/pages/linux/eopkg.md b/pages/linux/eopkg.md index e7f0352f5d..b94037ef08 100644 --- a/pages/linux/eopkg.md +++ b/pages/linux/eopkg.md @@ -5,7 +5,7 @@ - Install a specific package: -`sudo eopkg install {{package_name}}` +`sudo eopkg install {{package}}` - Update all packages: diff --git a/pages/linux/equery.md b/pages/linux/equery.md index 3641bfd4a5..18bdcffbb3 100644 --- a/pages/linux/equery.md +++ b/pages/linux/equery.md @@ -9,16 +9,16 @@ - Search for installed packages in the Portage tree and in overlays: -`equery list -po {{package_name}}` +`equery list -po {{package1 package2 ...}}` - List all packages that depend on a given package: -`equery depends {{package_name}}` +`equery depends {{package}}` - List all packages that a given package depends on: -`equery depgraph {{package_name}}` +`equery depgraph {{package}}` - List all files installed by a package: -`equery files --tree {{package_name}}` +`equery files --tree {{package}}` diff --git a/pages/linux/extrepo.md b/pages/linux/extrepo.md new file mode 100644 index 0000000000..905eee7a49 --- /dev/null +++ b/pages/linux/extrepo.md @@ -0,0 +1,21 @@ +# extrepo + +> Manage external Debian repositories. +> It is used to manage external repositories in Debian. +> More information: . + +- Search for a given package: + +`extrepo search {{package}}` + +- Enable the repository: + +`sudo extrepo enable {{repository_name}}` + +- Disable the repository: + +`sudo extrepo disable {{repository_name}}` + +- Update the repository: + +`sudo extrepo update {{repository_name}}` diff --git a/pages/linux/farge.md b/pages/linux/farge.md new file mode 100644 index 0000000000..517a5bb9cf --- /dev/null +++ b/pages/linux/farge.md @@ -0,0 +1,24 @@ +# farge + +> Display the color of a specific pixel on the screen in either hexadecimal or RGB formats. +> More information: . + +- Display a small preview window of a pixel's color with it's hexadecimal value, and copy this value to the clipboard: + +`farge` + +- Copy a pixel's hexadecimal value to the clipboard without displaying a preview window: + +`farge --no-preview` + +- Output a pixel's hexadecimal value to `stdout`, and copy this value to the clipboard: + +`farge --stdout` + +- Output a pixel's RGB value to `stdout`, and copy this value to the clipboard: + +`farge --rgb --stdout` + +- Display a pixel's hexadecimal value as a notification which expires in 5000 milliseconds, and copy this value to the clipboard: + +`farge --notify --expire-time 5000` diff --git a/pages/linux/fixfiles.md b/pages/linux/fixfiles.md new file mode 100644 index 0000000000..f4dd0ab13d --- /dev/null +++ b/pages/linux/fixfiles.md @@ -0,0 +1,36 @@ +# fixfiles + +> Fix file SELinux security contexts. +> More information: . + +- If specified with onboot, this fixfiles will record the current date in the `/.autorelabel` file, so that it can be used later to speed up labeling. If used with restore, the restore will only affect files that were modified today: + +`fixfiles -B` + +- [F]orce reset of context to match `file_context` for customizable files: + +`fixfiles -F` + +- Clear `/tmp` directory without confirmation: + +`fixfiles -f` + +- Use the [R]pm database to discover all files within specific packages and restore the file contexts: + +`fixfiles -R {{rpm_package1,rpm_package2 ...}}` + +- Run a diff on the `PREVIOUS_FILECONTEXT` file to the [C]urrently installed one, and restore the context of all affected files: + +`fixfiles -C PREVIOUS_FILECONTEXT` + +- Only act on files created after a specific date which will be passed to find `--newermt` command: + +`fixfiles -N {{YYYY-MM-DD HH:MM}}` + +- Bind [M]ount filesystems before relabeling them, this allows fixing the context of files or directories that have been mounted over: + +`fixfiles -M` + +- Modify [v]erbosity from progress to verbose and run `restorecon` with `-v` instead of `-p`: + +`fixfiles -v` diff --git a/pages/linux/flameshot.md b/pages/linux/flameshot.md index 13f6f1a4cb..f41399a381 100644 --- a/pages/linux/flameshot.md +++ b/pages/linux/flameshot.md @@ -24,7 +24,7 @@ `flameshot screen --number {{2}}` -- Create a screenshot and print it to the standard output: +- Create a screenshot and print it to `stdout`: `flameshot gui --raw` diff --git a/pages/linux/fluidsynth.md b/pages/linux/fluidsynth.md new file mode 100644 index 0000000000..d5800ada82 --- /dev/null +++ b/pages/linux/fluidsynth.md @@ -0,0 +1,8 @@ +# fluidsynth + +> Synthesize audio from MIDI files. +> More information: . + +- Play a MIDI file: + +`fluidsynth --audio-driver={{pipewire|pulseaudio}} {{path/to/soundfont.sf2}} {{path/to/file.midi}}` diff --git a/pages/linux/fold.md b/pages/linux/fold.md new file mode 100644 index 0000000000..60cb1de7b5 --- /dev/null +++ b/pages/linux/fold.md @@ -0,0 +1,16 @@ +# fold + +> Folds long lines for fixed-width output devices. +> More information: . + +- Fold lines in a fixed width: + +`fold --width {{width}} {{path/to/file}}` + +- Count width in bytes (the default is to count in columns): + +`fold --bytes --width {{width_in_bytes}} {{path/to/file}}` + +- Break the line after the rightmost blank within the width limit: + +`fold --spaces --width {{width}} {{path/to/file}}` diff --git a/pages/linux/gbp.md b/pages/linux/gbp.md index 155ad139f9..ee549e4c80 100644 --- a/pages/linux/gbp.md +++ b/pages/linux/gbp.md @@ -15,7 +15,7 @@ `DIST={{bullseye}} ARCH={{amd64}} gbp buildpackage -jauto -us -uc --git-builder={{git-pbuilder}}` -- Specify a package to be a source-only upload in the `.changes` file (see https://wiki.debian.org/SourceOnlyUpload): +- Specify a package to be a source-only upload in the `.changes` file (see ): `gbp buildpackage -jauto -us -uc --changes-options={{-S}}` diff --git a/pages/linux/genisoimage.md b/pages/linux/genisoimage.md new file mode 100644 index 0000000000..81a7d6529c --- /dev/null +++ b/pages/linux/genisoimage.md @@ -0,0 +1,12 @@ +# genisoimage + +> Pre-mastering program to generate ISO9660/Joliet/HFS hybrid filesystems. +> More information: . + +- Create an ISO image from the given source directory: + +`genisoimage -o {{myimage.iso}} {{path/to/source_directory}}` + +- Create an ISO image with files larger than 2GiB by reporting a smaller apparent size for ISO9660 filesystems: + +`genisoimage -o -allow-limited-size {{myimage.iso}} {{path/to/source_directory}}` diff --git a/pages/linux/getconf.md b/pages/linux/getconf.md new file mode 100644 index 0000000000..5bd6b4e302 --- /dev/null +++ b/pages/linux/getconf.md @@ -0,0 +1,24 @@ +# getconf + +> Get configuration values from your Linux system. +> More information: . + +- List [a]ll configuration values available: + +`getconf -a` + +- List the configuration values for a specific directory: + +`getconf -a {{path/to/directory}}` + +- Check if your linux system is a 32-bit or 64-bit: + +`getconf LONG_BIT` + +- Check how many processes the current user can run at once: + +`getconf CHILD_MAX` + +- List every configuration value and then find patterns with the grep command (i.e every value with MAX in it): + +`getconf -a | grep MAX` diff --git a/pages/linux/getopt.md b/pages/linux/getopt.md index ec41facf9e..5811d91cc0 100644 --- a/pages/linux/getopt.md +++ b/pages/linux/getopt.md @@ -1,6 +1,6 @@ # getopt -> Parse command line arguments. +> Parse command-line arguments. > More information: . - Parse optional `verbose`/`version` flags with shorthands: diff --git a/pages/linux/gnome-calculator.md b/pages/linux/gnome-calculator.md index 985f1db475..3d40955b10 100644 --- a/pages/linux/gnome-calculator.md +++ b/pages/linux/gnome-calculator.md @@ -7,7 +7,7 @@ `gnome-calculator` -- Solve the specified equation on the command-line without launching the desktop application: +- Solve the specified equation without launching the desktop application: `gnome-calculator --solve {{2^5 * 2 + 5}}` diff --git a/pages/linux/gnome-software.md b/pages/linux/gnome-software.md index b5cc8e10d9..072639c903 100644 --- a/pages/linux/gnome-software.md +++ b/pages/linux/gnome-software.md @@ -11,9 +11,9 @@ `gnome-software --mode {{updates|updated|installed|overview}}` -- Launch the GNOME Software GUI if it's not open, and view the specified package: +- Launch the GNOME Software GUI if it's not open and view the details of the specified package: -`gnome-software --details {{package_name}}` +`gnome-software --details {{package}}` - Display the version: diff --git a/pages/linux/goobook.md b/pages/linux/goobook.md index 24fc7ef9c2..bb5ada5503 100644 --- a/pages/linux/goobook.md +++ b/pages/linux/goobook.md @@ -1,12 +1,12 @@ # goobook -> Access Google contacts from `mutt` or the command line. +> Access Google contacts from `mutt` or the command-line. > More information: . - Allow `goobook` to access Google contacts using OAuth2: `goobook authenticate` -- Dump all contacts to XML (stdout): +- Dump all contacts to XML (`stdout`): `goobook dump_contacts` diff --git a/pages/linux/grim.md b/pages/linux/grim.md new file mode 100644 index 0000000000..d03049c876 --- /dev/null +++ b/pages/linux/grim.md @@ -0,0 +1,28 @@ +# grim + +> Grab images (Screenshots) from a Wayland compositor. +> More information: . + +- Screenshot all outputs: + +`grim` + +- Screenshot a specific output: + +`grim -o {{path/to/output_file}}` + +- Screenshot a specific region: + +`grim -g "{{, x}}"` + +- Select a specific region and screenshot it, (using slurp): + +`grim -g "{{$(slurp)}}"` + +- Use a custom filename: + +`grim "{{path/to/file.png}}"` + +- Screenshot and copy to clipboard: + +`grim - | {{clipboard_manager}}` diff --git a/pages/linux/grub-file.md b/pages/linux/grub-file.md new file mode 100644 index 0000000000..c38c8c89d9 --- /dev/null +++ b/pages/linux/grub-file.md @@ -0,0 +1,28 @@ +# grub-file + +> Check if a file is of a specific bootable image type. +> More information: . + +- Check if a file is an ARM EFI image: + +`grub-file --is-arm-efi {{path/to/file}}` + +- Check if a file is an i386 EFI image: + +`grub-file --is-i386-efi {{path/to/file}}` + +- Check if a file is an x86_64 EFI image: + +`grub-file --is-x86_64-efi {{path/to/file}}` + +- Check if a file is an ARM image (Linux kernel): + +`grub-file --is-arm-linux {{path/to/file}}` + +- Check if a file is an x86 image (Linux kernel): + +`grub-file --is-x86-linux {{path/to/file}}` + +- Check if a file is an x86_64 XNU image (Mac OS X kernel): + +`grub-file --is-x86_64-xnu {{path/to/file}}` diff --git a/pages/linux/grub-reboot.md b/pages/linux/grub-reboot.md new file mode 100644 index 0000000000..97242b1e33 --- /dev/null +++ b/pages/linux/grub-reboot.md @@ -0,0 +1,12 @@ +# grub-reboot + +> Set the default boot entry for GRUB, for the next boot only. +> More information: . + +- Set the default boot entry to an entry number, name or identifier for the next boot: + +`sudo grub-reboot {{entry_number}}` + +- Set the default boot entry to an entry number, name or identifier for an alternative boot directory for the next boot: + +`sudo grub-reboot --boot-directory {{/path/to/boot_directory}} {{entry_number}}` diff --git a/pages/linux/grub-script-check.md b/pages/linux/grub-script-check.md index 9d13e69c9e..00fc60d148 100644 --- a/pages/linux/grub-script-check.md +++ b/pages/linux/grub-script-check.md @@ -1,7 +1,7 @@ # grub-script-check > The program `grub-script-check` takes a GRUB script file and checks it for syntax errors. -> It may take a path as a non-option argument. If none is supplied, it will read from standard input. +> It may take a path as a non-option argument. If none is supplied, it will read from `stdin`. > More information: . - Check a specific script file for syntax errors: diff --git a/pages/linux/grub-set-default.md b/pages/linux/grub-set-default.md new file mode 100644 index 0000000000..f1435d9ff0 --- /dev/null +++ b/pages/linux/grub-set-default.md @@ -0,0 +1,12 @@ +# grub-set-default + +> Set the default boot entry for GRUB. +> More information: . + +- Set the default boot entry to an entry number, name or identifier: + +`sudo grub-set-default {{entry_number}}` + +- Set the default boot entry to an entry number, name or identifier for an alternative boot directory: + +`sudo grub-set-default --boot-directory {{/path/to/boot_directory}} {{entry_number}}` diff --git a/pages/linux/gsettings.md b/pages/linux/gsettings.md index 8273d6ba45..222fcc1ff2 100644 --- a/pages/linux/gsettings.md +++ b/pages/linux/gsettings.md @@ -9,7 +9,7 @@ - Print the value of a key or the schema-provided default if the key has not been set in `dconf`: -`gsetings get {{org.example.schema}} {{example-key}}` +`gsettings get {{org.example.schema}} {{example-key}}` - Unset a key, so that its schema default value will be used: diff --git a/pages/linux/guix-package.md b/pages/linux/guix-package.md index 07b6881715..20eeba0147 100644 --- a/pages/linux/guix-package.md +++ b/pages/linux/guix-package.md @@ -5,11 +5,11 @@ - Install a new package: -`guix package -i {{package_name}}` +`guix package -i {{package}}` - Remove a package: -`guix package -r {{package_name}}` +`guix package -r {{package}}` - Search the package database for a regular expression: diff --git a/pages/linux/gummy.md b/pages/linux/gummy.md new file mode 100644 index 0000000000..a19674672f --- /dev/null +++ b/pages/linux/gummy.md @@ -0,0 +1,28 @@ +# gummy + +> Screen brightness/temperature manager for Linux/X11. +> More information: . + +- Set the screen temperature to 3000K: + +`gummy --temperature {{3000}}` + +- Set the screen backlight to 50%: + +`gummy --backlight {{50}}` + +- Set the screen pixel brightness to 45%: + +`gummy --brightness {{45}}` + +- Increase current screen pixel brightness by 10%: + +`gummy --brightness {{+10}}` + +- Decrease current screen pixel brightness by 10%: + +`gummy --brightness {{-10}}` + +- Set the temperature and pixel brightness for the second screen: + +`gummy --screen {{1}} --temperature {{3800}} --brightness {{65}}` diff --git a/pages/linux/gzexe.md b/pages/linux/gzexe.md new file mode 100644 index 0000000000..25dc92e9b4 --- /dev/null +++ b/pages/linux/gzexe.md @@ -0,0 +1,13 @@ +# gzexe + +> Compress executable files while keeping them executable. +> Back up the original file, appending `~` to its name and create a shell script that uncompresses and executes the binary inside it. +> More information: . + +- Compress an executable file in-place: + +`gzexe {{path/to/executable}}` + +- Decompress a compressed executable in-place (i.e. convert the shell script back to an uncompressed binary): + +`gzexe -d {{path/to/compressed_executable}}` diff --git a/pages/linux/halt.md b/pages/linux/halt.md index 0abe8d97d9..49ed7f4fb7 100644 --- a/pages/linux/halt.md +++ b/pages/linux/halt.md @@ -1,7 +1,7 @@ # halt > Halt the system. -> More information: . +> More information: . - Halt the system: diff --git a/pages/linux/handlr.md b/pages/linux/handlr.md new file mode 100644 index 0000000000..b16b1cd43c --- /dev/null +++ b/pages/linux/handlr.md @@ -0,0 +1,28 @@ +# handlr + +> Manage your default applications. +> More information: . + +- Open a URL in the default application: + +`handlr open {{https://example.com}}` + +- Open a PDF in the default PDF viewer: + +`handlr open {{path/to/file.pdf}}` + +- Set imv as the default application for PNG files: + +`handlr set {{.png}} {{imv.desktop}}` + +- Set MPV as the default application for all audio files: + +`handlr set {{'audio/*'}} {{mpv.desktop}}` + +- List all default apps: + +`handlr list` + +- Print the default application for PNG files: + +`handlr get {{.png}}` diff --git a/pages/linux/hardinfo.md b/pages/linux/hardinfo.md index 530d797614..e2b55c8020 100644 --- a/pages/linux/hardinfo.md +++ b/pages/linux/hardinfo.md @@ -3,11 +3,11 @@ > Show hardware information in GUI window. > More information: . -- Start hardinfo: +- Start `hardinfo`: `hardinfo` -- Print report to standard output: +- Print report to `stdout`: `hardinfo -r` diff --git a/pages/linux/head.md b/pages/linux/head.md new file mode 100644 index 0000000000..358fcff6ab --- /dev/null +++ b/pages/linux/head.md @@ -0,0 +1,20 @@ +# head + +> Output the first part of files. +> More information: . + +- Output the first few lines of a file: + +`head --lines {{count}} {{path/to/file}}` + +- Output the first few bytes of a file: + +`head --bytes {{count}} {{path/to/file}}` + +- Output everything but the last few lines of a file: + +`head --lines -{{count}} {{path/to/file}}` + +- Output everything but the last few bytes of a file: + +`head --bytes -{{count}} {{path/to/file}}` diff --git a/pages/linux/help.md b/pages/linux/help.md new file mode 100644 index 0000000000..a4fc489c30 --- /dev/null +++ b/pages/linux/help.md @@ -0,0 +1,28 @@ +# help + +> Display information about Bash builtin commands. +> More information: . + +- Display the full list of builtin commands: + +`help` + +- Print instructions on how to use the `while` loop construct: + +`help while` + +- Print instructions on how to use the `for` loop construct: + +`help for` + +- Print instructions on how to use `[[ ]]` for conditional commands: + +`help [[ ]]` + +- Print instruction on how to use `(( ))` to evaluate arithmetic expressions: + +`help \( \)` + +- Print instructions on how to use the `cd` command: + +`help cd` diff --git a/pages/linux/http-prompt.md b/pages/linux/http-prompt.md index 673bdc5b01..7efaa59fcb 100644 --- a/pages/linux/http-prompt.md +++ b/pages/linux/http-prompt.md @@ -3,7 +3,7 @@ > An interactive command-line HTTP client featuring autocomplete and syntax highlighting. > More information: . -- Launch a session targeting the default URL of http://localhost:8000 or the previous session: +- Launch a session targeting the default URL of or the previous session: `http-prompt` diff --git a/pages/linux/httpie.md b/pages/linux/httpie.md index 2cdb7d2ffe..4c8ecaf979 100644 --- a/pages/linux/httpie.md +++ b/pages/linux/httpie.md @@ -1,6 +1,6 @@ # httpie -> A user friendly command-line HTTP tool. +> A user friendly HTTP tool. > More information: . - Send a GET request (default method with no request data): diff --git a/pages/linux/hwinfo.md b/pages/linux/hwinfo.md new file mode 100644 index 0000000000..d3c5fd6662 --- /dev/null +++ b/pages/linux/hwinfo.md @@ -0,0 +1,24 @@ +# hwinfo + +> Probe for the hardware present in the system. +> More information: . + +- Get graphics card information: + +`hwinfo --gfxcard` + +- Get network device information: + +`hwinfo --network` + +- List disks and CD-ROM drives, abbreviating the output: + +`hwinfo --short --disk --cdrom` + +- Write all hardware information to a file: + +`hwinfo --all --log {{path/to/file}}` + +- Display help: + +`hwinfo --help` diff --git a/pages/linux/i3-scrot.md b/pages/linux/i3-scrot.md index 18b2207e60..1b4226a702 100644 --- a/pages/linux/i3-scrot.md +++ b/pages/linux/i3-scrot.md @@ -26,7 +26,7 @@ - Capture a screenshot of a specific selection and copy it to the clipboard: -`i3-scrot --select-to-clibpoard` +`i3-scrot --select-to-clipboard` - Capture a screenshot of the active window after a delay of 5 seconds: diff --git a/pages/linux/ico.md b/pages/linux/ico.md new file mode 100644 index 0000000000..e494fa96d4 --- /dev/null +++ b/pages/linux/ico.md @@ -0,0 +1,20 @@ +# ico + +> Displays an animation of a polyhedron. +> More information: . + +- Display the wireframe of an icosahedron that changes its position every 0.1 seconds: + +`ico -sleep {{0.1}}` + +- Display a solid icosahedron with red faces on a blue background: + +`ico -faces -noedges -colors {{red}} -bg {{blue}}` + +- Display the wireframe of a cube with size 100x100 that moves by +1+2 per frame: + +`ico -obj {{cube}} -size {{100x100}} -delta {{+1+2}}` + +- Display the inverted wireframe of an icosahedron with line width 10 using 5 threads: + +`ico -i -lw {{10}} -threads {{5}}` diff --git a/pages/linux/id3v2.md b/pages/linux/id3v2.md new file mode 100644 index 0000000000..8ad66833f7 --- /dev/null +++ b/pages/linux/id3v2.md @@ -0,0 +1,24 @@ +# id3v2 + +> Manages id3v2 tags, converts and lists id3v1. +> More information: . + +- List all genres: + +`id3v2 ‐‐list‐genres` + +- List all tags of specific files: + +`id3v2 --list-tags {{path/to/file1 path/to/file2 ...}}` + +- Delete all `id3v2` or `id3v1` tags of specific files: + +`id3v2 {{--delete‐v2|--delete‐v1}} {{path/to/file1 path/to/file2 ...}}` + +- Display help: + +`id3v2 --help` + +- Display version: + +`id3v2 ‐‐version` diff --git a/pages/linux/ifmetric.md b/pages/linux/ifmetric.md new file mode 100644 index 0000000000..e84dd94ad0 --- /dev/null +++ b/pages/linux/ifmetric.md @@ -0,0 +1,12 @@ +# ifmetric + +> An IPv4 route metrics manipulation tool. +> More information: . + +- Set the priority of the specified network interface (a higher number indicates lower priority): + +`sudo ifmetric {{interface}} {{value}}` + +- Reset the priority of the specified network interface: + +`sudo ifmetric {{interface}} {{0}}` diff --git a/pages/linux/ikaros.md b/pages/linux/ikaros.md new file mode 100644 index 0000000000..c2b1f40fea --- /dev/null +++ b/pages/linux/ikaros.md @@ -0,0 +1,16 @@ +# ikaros + +> Vanilla OS Tool for managing drivers for your device. +> More information: . + +- Interactively install drivers for your device: + +`ikaros install {{device}}` + +- Automatically install the recommended drivers for your device: + +`ikaros auto-install {{device}}` + +- List devices: + +`ikaros list-devices` diff --git a/pages/linux/img2txt.md b/pages/linux/img2txt.md new file mode 100644 index 0000000000..46f0db5485 --- /dev/null +++ b/pages/linux/img2txt.md @@ -0,0 +1,24 @@ +# img2txt + +> Convert images to colour ASCII characters and output them to text-based coloured files. +> More information: . + +- Set output column count to a specific value: + +`img2txt --width={{10}}` + +- Set output line count to a specific value: + +`img2txt --height={{5}}` + +- Set output font width to a specific value: + +`img2txt --font-width={{12}}` + +- Set output font height to a specific value: + +`img2txt --font-height={{14}}` + +- Set image brightness to a specific value: + +`img2txt --brightness={{2}}` diff --git a/pages/linux/insmod.md b/pages/linux/insmod.md new file mode 100644 index 0000000000..e972b4ef78 --- /dev/null +++ b/pages/linux/insmod.md @@ -0,0 +1,8 @@ +# insmod + +> Dynamically load modules into the Linux Kernel. +> More information: . + +- Insert a kernel module into the Linux kernel: + +`insmod {{path/to/module.ko}}` diff --git a/pages/linux/instaloader.md b/pages/linux/instaloader.md new file mode 100644 index 0000000000..59434c37cb --- /dev/null +++ b/pages/linux/instaloader.md @@ -0,0 +1,37 @@ +# instaloader + +> Download pictures, videos, captions, and other metadata from Instagram. +> Note: You will need to provide Instagram login information if you want high-quality media downloads. +> More information: . + +- Download a profile: + +`instaloader {{profile_name}}` + +- Download highlights: + +`instaloader --highlights {{profile_name}}` + +- Download posts with geotags (if available), suppressing any user interaction: + +`instaloader --quiet --geotags {{profile_name}}` + +- Specify a user agent for HTTP requests: + +`instaloader --user-agent {{user_agent}} {{profile_name}}` + +- Specify login info and download posts (useful for private profiles): + +`instaloader --login {{username}} --password {{password}} {{profile_name}}` + +- Skip a target if the first downloaded file has been found (useful for updating Instagram archives): + +`instaloader --fast-update {{profile_name}}` + +- Download stories and IGTV videos (login required): + +`instaloader --login {{username}} --password {{password}} --stories --igtv {{profile_name}}` + +- Download all types of posts (login required): + +`instaloader --login {{username}} --password {{password}} --stories --igtv --highlights {{profile_name}}` diff --git a/pages/linux/ip.md b/pages/linux/ip.md index 8d0333f151..417b7062ad 100644 --- a/pages/linux/ip.md +++ b/pages/linux/ip.md @@ -1,6 +1,6 @@ # ip -> Show / manipulate routing, devices, policy routing and tunnels. +> Show/manipulate routing, devices, policy routing and tunnels. > Some subcommands such as `ip address` have their own usage documentation. > More information: . diff --git a/pages/linux/ip6tables-restore.md b/pages/linux/ip6tables-restore.md new file mode 100644 index 0000000000..d2dd067325 --- /dev/null +++ b/pages/linux/ip6tables-restore.md @@ -0,0 +1,7 @@ +# ip6tables-restore + +> This command is an alias of `iptables-restore` for the IPv6 firewall. + +- View documentation for the original command: + +`tldr iptables-restore` diff --git a/pages/linux/ip6tables-save.md b/pages/linux/ip6tables-save.md new file mode 100644 index 0000000000..41d424cfcc --- /dev/null +++ b/pages/linux/ip6tables-save.md @@ -0,0 +1,7 @@ +# ip6tables-save + +> This command is an alias of `iptables-save` for the IPv6 firewall. + +- View documentation for the original command: + +`tldr iptables-save` diff --git a/pages/linux/ip6tables.md b/pages/linux/ip6tables.md new file mode 100644 index 0000000000..44d7275e85 --- /dev/null +++ b/pages/linux/ip6tables.md @@ -0,0 +1,7 @@ +# ip6tables + +> This command is an alias of `iptables` for the IPv6 firewall. + +- View documentation for the original command: + +`tldr iptables` diff --git a/pages/linux/iptables-restore.md b/pages/linux/iptables-restore.md new file mode 100644 index 0000000000..2aa4a5050d --- /dev/null +++ b/pages/linux/iptables-restore.md @@ -0,0 +1,9 @@ +# iptables-restore + +> Restore the `iptables` IPv4 configuration. +> Use `ip6tables-restore` to do the same for IPv6. +> More information: . + +- Restore the `iptables` configuration from a file: + +`sudo iptables-restore {{path/to/file}}` diff --git a/pages/linux/iptables-save.md b/pages/linux/iptables-save.md new file mode 100644 index 0000000000..655aaa6887 --- /dev/null +++ b/pages/linux/iptables-save.md @@ -0,0 +1,17 @@ +# iptables-save + +> Save the `iptables` IPv4 configuration. +> Use `ip6tables-save` to to the same for IPv6. +> More information: . + +- Print the `iptables` configuration: + +`sudo iptables-save` + +- Print the `iptables` configuration of a specific [t]able: + +`sudo iptables-save --table {{table}}` + +- Save the `iptables` configuration to a [f]ile: + +`sudo iptables-save --file {{path/to/file}}` diff --git a/pages/linux/iptables.md b/pages/linux/iptables.md index 8a182af391..f30b0dff5c 100644 --- a/pages/linux/iptables.md +++ b/pages/linux/iptables.md @@ -1,36 +1,29 @@ # iptables -> Program that allows configuration of tables, chains and rules provided by the Linux kernel firewall. -> More information: . +> Configure tables, chains and rules of the Linux kernel IPv4 firewall. +> Use `ip6tables` to set rules for IPv6 traffic. See also: `iptables-save`, `iptables-restore`. +> More information: . -- View chains, rules, and packet/byte counters for the filter table: +- View chains, rules, packet/byte counters and line numbers for the filter table: -`sudo iptables -vnL` +`sudo iptables --verbose --numeric --list --line-numbers` -- Set chain policy rule: +- Set chain [P]olicy rule: -`sudo iptables -P {{chain}} {{rule}}` +`sudo iptables --policy {{chain}} {{rule}}` -- Append rule to chain policy for IP: +- [A]ppend rule to chain policy for IP: -`sudo iptables -A {{chain}} -s {{ip}} -j {{rule}}` +`sudo iptables --append {{chain}} --source {{ip}} --jump {{rule}}` -- Append rule to chain policy for IP considering protocol and port: +- [A]ppend rule to chain policy for IP considering [p]rotocol and port: -`sudo iptables -A {{chain}} -s {{ip}} -p {{protocol}} --dport {{port}} -j {{rule}}` +`sudo iptables --append {{chain}} --source {{ip}} --protocol {{tcp|udp|icmp|...}} --dport {{port}} --jump {{rule}}` - Add a NAT rule to translate all traffic from the `192.168.0.0/24` subnet to the host's public IP: -`sudo iptables -t {{nat}} -A {{POSTROUTING}} -s {{192.168.0.0/24}} -j {{MASQUERADE}}` +`sudo iptables --table {{nat}} --append {{POSTROUTING}} --source {{192.168.0.0/24}} --jump {{MASQUERADE}}` -- Delete chain rule: +- [D]elete chain rule: -`sudo iptables -D {{chain}} {{rule_line_number}}` - -- Save iptables configuration of a given table to a file: - -`sudo iptables-save -t {{tablename}} > {{path/to/iptables_file}}` - -- Restore iptables configuration from a file: - -`sudo iptables-restore < {{path/to/iptables_file}}` +`sudo iptables --delete {{chain}} {{rule_line_number}}` diff --git a/pages/linux/iwctl.md b/pages/linux/iwctl.md index 693d18cd84..09c969a649 100644 --- a/pages/linux/iwctl.md +++ b/pages/linux/iwctl.md @@ -1,6 +1,6 @@ # iwctl -> A command-line tool for controlling the iwd network supplicant. +> Control the `iwd` network supplicant. > More information: . - Start the interactive mode, in this mode you can enter the commands directly, with autocompletion: diff --git a/pages/linux/jobs.md b/pages/linux/jobs.md index 8db55e3bbf..5d09dddf70 100644 --- a/pages/linux/jobs.md +++ b/pages/linux/jobs.md @@ -1,6 +1,7 @@ # jobs -> BASH builtin for viewing information about processes spawned by the current shell. +> Shell builtin for viewing information about processes spawned by the current shell. +> Options other than `-l` and `-p` are exclusive to `bash`. > More information: . - View jobs spawned by the current shell: @@ -15,7 +16,7 @@ `jobs -n` -- Display process ID of process group leader: +- Display only process IDs: `jobs -p` diff --git a/pages/linux/just-js.md b/pages/linux/just.js.md similarity index 100% rename from pages/linux/just-js.md rename to pages/linux/just.js.md diff --git a/pages/linux/kernel-install.md b/pages/linux/kernel-install.md new file mode 100644 index 0000000000..8bcd7de521 --- /dev/null +++ b/pages/linux/kernel-install.md @@ -0,0 +1,16 @@ +# kernel-install + +> Add and remove kernel and initrd images to and from `/boot`. +> More information: . + +- Add kernel and initramfs images to bootloader partition: + +`sudo kernel-install add {{kernel-version}} {{kernel-image}} {{path/to/initrd-file ...}}` + +- Remove kernel from the bootloader partition: + +`sudo kernel-install remove {{kernel-version}}` + +- Show various paths and parameters that have been configured or auto-detected: + +`sudo kernel-install inspect {{kernel-image}}` diff --git a/pages/linux/keyctl.md b/pages/linux/keyctl.md index 766c2a6816..5f3f59b8fb 100644 --- a/pages/linux/keyctl.md +++ b/pages/linux/keyctl.md @@ -15,7 +15,7 @@ `keyctl add {{type_keyring}} {{key_name}} {{key_value}} {{target_keyring}}` -- Store a key with its value from standard input: +- Store a key with its value from `stdin`: `echo -n {{key_value}} | keyctl padd {{type_keyring}} {{key_name}} {{target_keyring}}` diff --git a/pages/linux/konsave.md b/pages/linux/konsave.md new file mode 100644 index 0000000000..47441c63b5 --- /dev/null +++ b/pages/linux/konsave.md @@ -0,0 +1,32 @@ +# konsave + +> Save and apply your Linux customizations with just one command. +> More information: . + +- Save the current configuration as a profile: + +`konsave --save {{profile_name}}` + +- Apply a profile: + +`konsave --apply {{profile_name}}` + +- Save the current configuration as a profile, overwriting existing profiles if they exist with the same name: + +`konsave -s {{profile_name}} --force` + +- List all profiles: + +`konsave --list` + +- Remove a profile: + +`konsave --remove {{profile_name}}` + +- Export a profile as a `.knsv` to the home directory: + +`konsave --export-profile {{profile_name}}` + +- Import a `.knsv` profile: + +`konsave --import-profile {{path/to/profile_name.knsv}}` diff --git a/pages/linux/kscreen-doctor.md b/pages/linux/kscreen-doctor.md index 338b4104ce..ca772558b3 100644 --- a/pages/linux/kscreen-doctor.md +++ b/pages/linux/kscreen-doctor.md @@ -1,6 +1,6 @@ # kscreen-doctor -> Change and manipulate the screen setup from the command-line. +> Change and manipulate the screen setup. > More information: . - Show display output information: diff --git a/pages/linux/larasail.md b/pages/linux/larasail.md index f3d4496dc7..9e82178e68 100644 --- a/pages/linux/larasail.md +++ b/pages/linux/larasail.md @@ -1,6 +1,6 @@ # larasail -> A CLI tool for managing Laravel on Digital Ocean servers. +> Manage Laravel on Digital Ocean servers. > More information: . - Set up the server with Laravel dependencies using the default PHP version: diff --git a/pages/linux/lastcomm.md b/pages/linux/lastcomm.md index 82a15df64e..f3a1ae1aef 100644 --- a/pages/linux/lastcomm.md +++ b/pages/linux/lastcomm.md @@ -1,7 +1,7 @@ # lastcomm > Show last commands executed. -> More information: . +> More information: . - Print information about all the commands in the acct (record file): diff --git a/pages/linux/lchage.md b/pages/linux/lchage.md new file mode 100644 index 0000000000..ab42f986d1 --- /dev/null +++ b/pages/linux/lchage.md @@ -0,0 +1,20 @@ +# lchage + +> Display or change user password policy. +> More information: . + +- Disable password expiration for the user: + +`sudo lchage --date -1 {{username}}` + +- Display the password policy for the user: + +`sudo lchage --list {{username}}` + +- Require password change for the user a certain number of days after the last password change: + +`sudo lchage --maxdays {{number_of_days}} {{username}}` + +- Start warning the user a certain number of days before the password expires: + +`sudo lchage --warndays {{number_of_days}} {{username}}` diff --git a/pages/linux/lex.md b/pages/linux/lex.md new file mode 100644 index 0000000000..cfa5621949 --- /dev/null +++ b/pages/linux/lex.md @@ -0,0 +1,17 @@ +# lex + +> Lexical analyzer generator. +> Given the specification for a lexical analyzer, generates C code implementing it. +> More information: . + +- Generate an analyzer from a Lex file: + +`lex {{analyzer.l}}` + +- Specify the output file: + +`lex {{analyzer.l}} --outfile {{analyzer.c}}` + +- Compile a C file generated by Lex: + +`cc {{path/to/lex.yy.c}} --output {{executable}}` diff --git a/pages/linux/lftp.md b/pages/linux/lftp.md index 9e50727d3c..b8e349d82e 100644 --- a/pages/linux/lftp.md +++ b/pages/linux/lftp.md @@ -5,7 +5,7 @@ - Connect to an FTP server: -`lftp {{ftp.example.com}}` +`lftp --user {{username}} {{ftp.example.com}}` - Download multiple files (glob expression): diff --git a/pages/linux/light.md b/pages/linux/light.md index 5ce1bdf61f..57b7df977c 100644 --- a/pages/linux/light.md +++ b/pages/linux/light.md @@ -1,6 +1,6 @@ # light -> CLI to control the backlight of your screen. +> Control the backlight of your screen. > More information: . - Get the current backlight value in percent: diff --git a/pages/linux/locate.md b/pages/linux/locate.md index 65f16ef5a1..4571dc0410 100644 --- a/pages/linux/locate.md +++ b/pages/linux/locate.md @@ -9,7 +9,7 @@ - Look for a file by its exact filename (a pattern containing no globbing characters is interpreted as `*pattern*`): -`locate */{{filename}}` +`locate '*/{{filename}}'` - Recompute the database. You need to do it if you want to find recently added files: diff --git a/pages/linux/logsave.md b/pages/linux/logsave.md index 5ae60a0529..168a6415ba 100644 --- a/pages/linux/logsave.md +++ b/pages/linux/logsave.md @@ -7,7 +7,7 @@ `logsave {{path/to/logfile}} {{command}}` -- Take input from standard input and save it in a log file: +- Take input from `stdin` and save it in a log file: `logsave {{logfile}} -` diff --git a/pages/linux/lsinitrd.md b/pages/linux/lsinitrd.md new file mode 100644 index 0000000000..0b93c69b3b --- /dev/null +++ b/pages/linux/lsinitrd.md @@ -0,0 +1,25 @@ +# lsinitrd + +> Show the contents of an initramfs image. +> See also: `dracut`. +> More information: . + +- Show the contents of the initramfs image for the current kernel: + +`lsinitrd` + +- Show the contents of the initramfs image for the specified kernel: + +`lsinitrd --kver {{kernel_version}}` + +- Show the contents of the specified initramfs image: + +`lsinitrd {{path/to/initramfs.img}}` + +- List modules included in the initramfs image: + +`lsinitrd --mod` + +- Unpack the initramfs to the current directory: + +`lsinitrd --unpack` diff --git a/pages/linux/lsusb.md b/pages/linux/lsusb.md index 91ef726552..4a285ce2c2 100644 --- a/pages/linux/lsusb.md +++ b/pages/linux/lsusb.md @@ -17,7 +17,7 @@ - List detailed information about a USB device: -`lsusb -D {{device}}` +`lsusb --verbose -s {{bus}}:{{device number}}` - List devices with a specified vendor and product ID only: diff --git a/pages/linux/lz.md b/pages/linux/lz.md new file mode 100644 index 0000000000..49cb7a926f --- /dev/null +++ b/pages/linux/lz.md @@ -0,0 +1,8 @@ +# lz + +> List all files inside a '.tar.gz' compressed archive. +> More information: . + +- List all files inside a compressed archive: + +`lz {{path/to/file.tar.gz}}` diff --git a/pages/linux/machinectl.md b/pages/linux/machinectl.md new file mode 100644 index 0000000000..330b4a6efe --- /dev/null +++ b/pages/linux/machinectl.md @@ -0,0 +1,21 @@ +# machinectl + +> Control the systemd machine manager. +> Execute operations on virtual machines, containers and images. +> More information: . + +- Start a machine as a service using `systemd-nspawn`: + +`sudo machinectl start {{machine_name}}` + +- Stop a running machine: + +`sudo machinectl stop {{machine_name}}` + +- Display a list of running machines: + +`machinectl list` + +- Open an interactive shell inside the machine: + +`sudo machinectl shell {{machine_name}}` diff --git a/pages/linux/mdbook.md b/pages/linux/mdbook.md index 15919da012..841dce19d7 100644 --- a/pages/linux/mdbook.md +++ b/pages/linux/mdbook.md @@ -3,11 +3,11 @@ > Create online books by writing Markdown files. > More information: . -- Create a mdbook project in the current directory: +- Create an mdbook project in the current directory: `mdbook init` -- Create a mdbook project in a specific directory: +- Create an mdbook project in a specific directory: `mdbook init {{path/to/directory}}` @@ -15,7 +15,7 @@ `mdbook clean` -- Serve a book at `http://localhost:3000`, auto build when file changes: +- Serve a book at , auto build when file changes: `mdbook serve` diff --git a/pages/linux/mediamtx.md b/pages/linux/mediamtx.md new file mode 100644 index 0000000000..d5c93521e1 --- /dev/null +++ b/pages/linux/mediamtx.md @@ -0,0 +1,16 @@ +# mediamtx + +> Real-time media server and proxy. +> More information: . + +- Run MediaMTX: + +`mediamtx` + +- Run MediaMTX with a custom config location: + +`mediamtx {{path/to/config}}.yml` + +- Start MediaMTX as a daemon: + +`systemctl start mediamtx` diff --git a/pages/linux/mimetype.md b/pages/linux/mimetype.md index 4e0df0d7a9..c3c882be4b 100644 --- a/pages/linux/mimetype.md +++ b/pages/linux/mimetype.md @@ -17,7 +17,7 @@ - Determine the MIME type of `stdin` (does not check a filename): -`{{some_command}} | mimetype --stdin` +`{{command}} | mimetype --stdin` - Display debug information about how the MIME type was determined: diff --git a/pages/linux/mkhomedir_helper.md b/pages/linux/mkhomedir_helper.md new file mode 100644 index 0000000000..11ae840977 --- /dev/null +++ b/pages/linux/mkhomedir_helper.md @@ -0,0 +1,16 @@ +# mkhomedir_helper + +> Create the user's home directory after creating the user. +> More information: . + +- Create a home directory for a user based on `/etc/skel` with umask 022: + +`sudo mkhomedir_helper {{username}}` + +- Create a home directory for a user based on `/etc/skel` with all permissions for owner (0) and read permission for group (3): + +`sudo mkhomedir_helper {{username}} {{037}}` + +- Create a home directory for a user based on a custom skeleton: + +`sudo mkhomedir_helper {{username}} {{umask}} {{path/to/skeleton_directory}}` diff --git a/pages/linux/mkosi.md b/pages/linux/mkosi.md new file mode 100644 index 0000000000..608b3bbc17 --- /dev/null +++ b/pages/linux/mkosi.md @@ -0,0 +1,25 @@ +# mkosi + +> Tool for building modern, legacy-free Linux images. +> Part of `systemd`. +> More information: . + +- Show current build configuration to verify what would be built: + +`mkosi summary` + +- Build an image with default settings (if no distribution is selected, the distribution of the host system is used): + +`mkosi build --distribution {{fedora|debian|ubuntu|arch|opensuse|...}}` + +- Build an image and run an interactive shell in a systemd-nspawn container of the image: + +`mkosi shell` + +- Boot an image in a virtual machine using QEMU (only supported for disk images or CPIO images when a kernel is provided): + +`mkosi qemu` + +- Display help: + +`mkosi help` diff --git a/pages/linux/mksquashfs.md b/pages/linux/mksquashfs.md new file mode 100644 index 0000000000..efe7bba98a --- /dev/null +++ b/pages/linux/mksquashfs.md @@ -0,0 +1,24 @@ +# mksquashfs + +> Create or append files and directories to squashfs filesystems. +> More information: . + +- Create or append files and directories to a squashfs filesystem (compressed using `gzip` by default): + +`mksquashfs {{path/to/file_or_directory1 path/to/file_or_directory2 ...}} {{filesystem.squashfs}}` + +- Create or append files and directories to a squashfs filesystem, using a specific [comp]ression algorithm: + +`mksquashfs {{path/to/file_or_directory1 path/to/file_or_directory2 ...}} {{filesystem.squashfs}} -comp {{gzip|lzo|lz4|xz|zstd|lzma}}` + +- Create or append files and directories to a squashfs filesystem, [e]xcluding some of them: + +`mksquashfs {{path/to/file_or_directory1 path/to/file_or_directory2 ...}} {{filesystem.squashfs}} -e {{file|directory1 file|directory2 ...}}` + +- Create or append files and directories to a squashfs filesystem, [e]xcluding those ending with `.gz`: + +`mksquashfs {{path/to/file_or_directory1 path/to/file_or_directory2 ...}} {{filesystem.squashfs}} -wildcards -e "{{*.gz}}"` + +- Create or append files and directories to a squashfs filesystem, [e]xcluding those matching a regular expression: + +`mksquashfs {{path/to/file_or_directory1 path/to/file_or_directory2 ...}} {{filesystem.squashfs}} -regex -e "{{regular_expression}}"` diff --git a/pages/linux/mkswap.md b/pages/linux/mkswap.md index 6dcabd9272..02773cf532 100644 --- a/pages/linux/mkswap.md +++ b/pages/linux/mkswap.md @@ -1,20 +1,17 @@ # mkswap -> Sets up a Linux swap area on a device or in a file. +> Set up a Linux swap area on a device or in a file. +> Note: `path/to/file` can either point to a regular file or a swap partition. > More information: . -- Setup a given partition as swap area: - -`sudo mkswap {{/dev/sdb7}}` - -- Use a given file as swap area: +- Set up a given swap area: `sudo mkswap {{path/to/file}}` - Check a partition for bad blocks before creating the swap area: -`sudo mkswap -c {{/dev/sdb7}}` +`sudo mkswap -c {{path/to/file}}` -- Specify a label for the file (to allow `swapon` to use the label): +- Specify a label for the partition (to allow `swapon` to use the label): -`sudo mkswap -L {{swap1}} {{path/to/file}}` +`sudo mkswap -L {{label}} {{/dev/sda1}}` diff --git a/pages/linux/mktemp.md b/pages/linux/mktemp.md index 999e7c693d..d94a3b2316 100644 --- a/pages/linux/mktemp.md +++ b/pages/linux/mktemp.md @@ -1,16 +1,28 @@ # mktemp > Create a temporary file or directory. -> More information: . +> More information: . -- Create an empty temporary file and print the absolute path to it: +- Create an empty temporary file and print its absolute path: `mktemp` -- Create an empty temporary file with a given suffix and print the absolute path to file: +- Use a custom directory (defaults to `$TMPDIR`, or `/tmp`): -`mktemp --suffix "{{.ext}}"` +`mktemp --tmpdir={{/path/to/tempdir}}` -- Create a temporary directory and print the absolute path to it: +- Use a custom path template (`X`s are replaced with random alphanumeric characters): + +`mktemp {{/tmp/example.XXXXXXXX}}` + +- Use a custom file name template: + +`mktemp -t {{example.XXXXXXXX}}` + +- Create an empty temporary file with the given suffix and print its absolute path: + +`mktemp --suffix {{.ext}}` + +- Create an empty temporary directory and print its absolute path: `mktemp --directory` diff --git a/pages/linux/mlabel.md b/pages/linux/mlabel.md new file mode 100644 index 0000000000..005c5af29b --- /dev/null +++ b/pages/linux/mlabel.md @@ -0,0 +1,8 @@ +# mlabel + +> Set an MS-DOS volume label for FAT and VFAT filesystems. +> More information: . + +- Set a filesystem label: + +`mlabel -i /dev/{{sda}} ::"{{new_label}}"` diff --git a/pages/linux/mmcli.md b/pages/linux/mmcli.md index 905061b19d..41bbf9e499 100644 --- a/pages/linux/mmcli.md +++ b/pages/linux/mmcli.md @@ -3,6 +3,18 @@ > Control and monitor the ModemManager. > More information: . +- List available modems: + +`mmcli --list-modems` + +- Print information about a modem: + +`mmcli --modem={{modem}}` + +- Enable a modem: + +`mmcli --modem={{modem}} --enable` + - List SMS messages available on the modem: `sudo mmcli --modem={{modem}} --messaging-list-sms` diff --git a/pages/linux/mmdebstrap.md b/pages/linux/mmdebstrap.md new file mode 100644 index 0000000000..8922bddcc0 --- /dev/null +++ b/pages/linux/mmdebstrap.md @@ -0,0 +1,17 @@ +# mmdebstrap + +> Create a Debian chroot. +> Alternative to `debootstrap`. +> More information: . + +- Create a Debian Stable directory chroot: + +`sudo mmdebstrap stable {{path/to/debian-root/}}` + +- Create a Debian Bookworm tarball chroot using a mirror: + +`mmdebstrap bookworm {{path/to/debian-bookworm.tar}} {{http://mirror.example.org/debian}}` + +- Create a Debian Sid tarball chroot with additional packages: + +`mmdebstrap sid {{path/to/debian-sid.tar}} --include={{pkg1,pkg2}}` diff --git a/pages/linux/module.md b/pages/linux/module.md index 46858c737f..3dba844fcf 100644 --- a/pages/linux/module.md +++ b/pages/linux/module.md @@ -26,3 +26,7 @@ - Unload all loaded modules: `module purge` + +- Specify user-created modules: + +`module use {{path/to/modulefiles}}` diff --git a/pages/linux/mokutil.md b/pages/linux/mokutil.md new file mode 100644 index 0000000000..0d78caed97 --- /dev/null +++ b/pages/linux/mokutil.md @@ -0,0 +1,33 @@ +# mokutil + +> Configure Secure Boot Machine Owner Keys (MOK). +> Some operations, such as enabling and disabling Secure Boot or enrolling keys require a reboot. +> More information: . + +- Show if Secure Boot is enabled: + +`mokutil --sb-state` + +- Enable Secure Boot: + +`mokutil --enable-validation` + +- Disable Secure Boot: + +`mokutil --disable-validation` + +- List enrolled keys: + +`mokutil --list-enrolled` + +- Enroll a new key: + +`mokutil --import {{path/to/key.der}}` + +- List the keys to be enrolled: + +`mokutil --list-new` + +- Set shim verbosity: + +`mokutil --set-verbosity true` diff --git a/pages/linux/mount.cifs.md b/pages/linux/mount.cifs.md new file mode 100644 index 0000000000..addba7bcbe --- /dev/null +++ b/pages/linux/mount.cifs.md @@ -0,0 +1,17 @@ +# mount.cifs + +> Mount SMB (Server Message Block) or CIFS (Common Internet File System) shares. +> Note: you can also do the same thing by passing the `-t cifs` option to `mount`. +> More information: . + +- Connect using the specified username or `$USER` by default (you will be prompted for a password): + +`mount.cifs -o user={{username}} //{{server}}/{{share_name}} {{mountpoint}}` + +- Connect as the guest user (without a password): + +`mount.cifs -o guest //{{server}}/{{share_name}} {{mountpoint}}` + +- Set ownership information for the mounted directory: + +`mount.cifs -o uid={{user_id|username}},gid={{group_id|groupname}} //{{server}}/{{share_name}} {{mountpoint}}` diff --git a/pages/linux/mount.smb3.md b/pages/linux/mount.smb3.md new file mode 100644 index 0000000000..b55a85704f --- /dev/null +++ b/pages/linux/mount.smb3.md @@ -0,0 +1,8 @@ +# mount.smb3 + +> This command is an alias of `mount.cifs`. +> Note: for SMB versions before 3 you have to use `mount.cifs` instead. + +- View documentation for the original command: + +`tldr mount.cifs` diff --git a/pages/linux/mpicc.md b/pages/linux/mpicc.md new file mode 100644 index 0000000000..80098b9cf9 --- /dev/null +++ b/pages/linux/mpicc.md @@ -0,0 +1,17 @@ +# mpicc + +> Open MPI C wrapper compiler. +> The wrappers are simply thin shells on top of a C compiler, they add the relevant compiler and linker flags to the command-line that are necessary to compile/link Open MPI programs, and then invoke the underlying C compiler to actually perform the command. +> More information: . + +- Compile a source code file into an object file: + +`mpicc -c {{path/to/file.c}}` + +- Link an object file and make an executable: + +`mpicc -o {{executable}} {{path/to/object_file.o}}` + +- Compile and link source code in a single command: + +`mpicc -o {{executable}} {{path/to/file.c}}` diff --git a/pages/linux/nala.md b/pages/linux/nala.md new file mode 100644 index 0000000000..3752c11bf0 --- /dev/null +++ b/pages/linux/nala.md @@ -0,0 +1,37 @@ +# nala + +> Package management Utility. +> Wrapper for the `apt` package manager. +> More information: . + +- Install a package, or update it to the latest available version: + +`sudo nala install {{package}}` + +- Remove a package: + +`sudo nala remove {{package}}` + +- Remove a package and its configuration files: + +`nala purge {{package}}` + +- Search package names and descriptions using a word, regex (default) or glob: + +`nala search "{{pattern}}"` + +- Update the list of available packages and upgrade the system: + +`sudo nala upgrade` + +- Remove all unused packages and dependencies from your system: + +`sudo nala autoremove` + +- Fetch fast mirrors to improve download speeds: + +`sudo nala fetch` + +- Display the history of all transactions: + +`nala history` diff --git a/pages/linux/nemo.md b/pages/linux/nemo.md index 8603487eb6..c67fc8e0ce 100644 --- a/pages/linux/nemo.md +++ b/pages/linux/nemo.md @@ -1,16 +1,24 @@ # nemo -> File manager and graphical shell for Cinnamon. -> More information: . +> Manages files and directories in Cinnamon desktop environment. +> More information: . -- Open a new window showing the user's home directory: +- Open the current user home directory: `nemo` -- Open a new window showing the current directory: +- Open specific directories in separate windows: -`nemo .` +`nemo {{path/to/directory1 path/to/directory2 ...}}` -- Close all open nemo windows: +- Open specific directories in tabs: + +`nemo --tabs {{path/to/directory1 path/to/directory2 ...}}` + +- Open a directory with a specific window size: + +`nemo --geometry={{600}}x{{400}} {{path/to/directory}}` + +- Close all windows: `nemo --quit` diff --git a/pages/linux/nethogs.md b/pages/linux/nethogs.md index 54bddba2d3..095773c466 100644 --- a/pages/linux/nethogs.md +++ b/pages/linux/nethogs.md @@ -3,7 +3,7 @@ > Monitor bandwidth usage per process. > More information: . -- Start nethogs as root (default device is eth0): +- Start NetHogs as root (default device is `eth0`): `sudo nethogs` diff --git a/pages/linux/networkctl.md b/pages/linux/networkctl.md new file mode 100644 index 0000000000..e7ee2ad97d --- /dev/null +++ b/pages/linux/networkctl.md @@ -0,0 +1,33 @@ +# networkctl + +> Query the status of network links. +> Manage the network configuration using `systemd-networkd`. +> More information: . + +- Show a list of existing links and their status: + +`networkctl list` + +- Show an overall network status: + +`networkctl status` + +- Bring network devices up: + +`networkctl up {{interface1 interface2 ...}}` + +- Bring network devices down: + +`networkctl down {{interface1 interface2 ...}}` + +- Renew dynamic configurations (e.g. IP addresses received from a DHCP server): + +`networkctl renew {{interface1 interface2 ...}}` + +- Reload configuration files (.netdev and .network): + +`networkctl reload` + +- Reconfigure network interfaces (if you edited the config, you need to call `networkctl reload` first): + +`networkctl reconfigure {{interface1 interface2 ...}}` diff --git a/pages/linux/nitch.md b/pages/linux/nitch.md new file mode 100644 index 0000000000..7cc1b9054e --- /dev/null +++ b/pages/linux/nitch.md @@ -0,0 +1,16 @@ +# nitch + +> A small and incredibly fast system fetch written fully in Nim. +> More information: . + +- Display system information (hostname, kernel, uptime, etc.): + +`nitch` + +- Display [h]elp: + +`nitch --help` + +- Display [v]ersion: + +`nitch --version` diff --git a/pages/linux/nm-online.md b/pages/linux/nm-online.md new file mode 100644 index 0000000000..3710f10a06 --- /dev/null +++ b/pages/linux/nm-online.md @@ -0,0 +1,12 @@ +# nm-online + +> Ask NetworkManager whether the network is connected. +> More information: . + +- Find out whether the network is connected and print the result to `stdout`: + +`nm-online` + +- Wait `n` seconds for a connection (30 by default): + +`nm-online --timeout {{n}}` diff --git a/pages/linux/nmcli-agent.md b/pages/linux/nmcli-agent.md index 228ba4860e..dcc88740b9 100644 --- a/pages/linux/nmcli-agent.md +++ b/pages/linux/nmcli-agent.md @@ -1,17 +1,17 @@ # nmcli agent -> Run nmcli as a NetworkManager secret agent or polkit agent. +> Run `nmcli` as a NetworkManager secret agent or polkit agent. > This subcommand can also be called with `nmcli a`. > More information: . -- Register nmcli as a secret agent and listen for secret requests: +- Register `nmcli` as a secret agent and listen for secret requests: `nmcli agent secret` -- Register nmcli as a polkit agent and listen for authorization requests: +- Register `nmcli` as a polkit agent and listen for authorization requests: `nmcli agent polkit` -- Register nmcli as a secret agent and a polkit agent: +- Register `nmcli` as a secret agent and a polkit agent: `nmcli agent all` diff --git a/pages/linux/nmcli-connection.md b/pages/linux/nmcli-connection.md index 84220c9f43..1466f35d18 100644 --- a/pages/linux/nmcli-connection.md +++ b/pages/linux/nmcli-connection.md @@ -1,6 +1,6 @@ # nmcli connection -> Connection management with NetworkManager. +> Manage connections with NetworkManager. > This subcommand can also be called with `nmcli c`. > More information: . @@ -8,7 +8,7 @@ `nmcli connection` -- Activate a connection by specifying a UUID: +- Activate a connection: `nmcli connection up uuid {{uuid}}` @@ -28,6 +28,6 @@ `nmcli connection add ifname {{interface_name}} type {{ethernet}} ip4 {{10.0.0.7/8}} gw4 {{10.0.0.1}} ipv4.dns {{10.0.0.1}} ipv6.method {{ignore}}` -- Create a VPN connection using OpenVPN from a OVPN file: +- Create a VPN connection using OpenVPN from an OVPN file: `nmcli connection import type {{openvpn}} file {{path/to/vpn_config.ovpn}}` diff --git a/pages/linux/nmcli-device.md b/pages/linux/nmcli-device.md index 16aba36d75..0d1625dfa3 100644 --- a/pages/linux/nmcli-device.md +++ b/pages/linux/nmcli-device.md @@ -1,6 +1,6 @@ # nmcli device -> Hardware device management with NetworkManager. +> Manage network interfaces and establish new Wi-Fi connections using NetworkManager. > This subcommand can also be called with `nmcli d`. > More information: . @@ -12,10 +12,10 @@ `nmcli device wifi` -- Connect to the Wi-Fi network with a specified name and password: +- Connect to a Wi-Fi network with the specified SSID (you will be prompted for a password): -`nmcli device wifi connect {{ssid}} password {{password}}` +`nmcli --ask device wifi connect {{ssid}}` -- Print password and QR code for the current Wi-Fi network: +- Print the password and QR code for the current Wi-Fi network: `nmcli device wifi show-password` diff --git a/pages/linux/nmcli-radio.md b/pages/linux/nmcli-radio.md index 8c5c9d96bf..682bf6422c 100644 --- a/pages/linux/nmcli-radio.md +++ b/pages/linux/nmcli-radio.md @@ -1,29 +1,29 @@ # nmcli radio -> Show radio switches status or enable and disable switches. +> Show the status of radio switches or enable/disable them using NetworkManager. > This subcommand can also be called with `nmcli r`. > More information: . -- Show status of Wi-Fi in NetworkManager: +- Show status of Wi-Fi: `nmcli radio wifi` -- Turn Wi-Fi on or off in NetworkManager: +- Turn Wi-Fi on or off: `nmcli radio wifi {{on|off}}` -- Show status of WWAN in NetworkManager: +- Show status of WWAN: `nmcli radio wwan` -- Turn WWAN on or off in NetworkManager: +- Turn WWAN on or off: `nmcli radio wwan {{on|off}}` -- Show status of both switches in NetworkManager: +- Show status of both switches: `nmcli radio all` -- Turn both switches on or off in NetworkManager: +- Turn both switches on or off: `nmcli radio all {{on|off}}` diff --git a/pages/linux/nmcli.md b/pages/linux/nmcli.md index 354401136f..4570bdd08d 100644 --- a/pages/linux/nmcli.md +++ b/pages/linux/nmcli.md @@ -1,21 +1,32 @@ # nmcli -> A command-line tool for controlling NetworkManager. -> Some subcommands such as `nmcli monitor` have their own usage documentation. +> Manage the network configuration using NetworkManager. > More information: . -- Run an `nmcli` subcommand: +- View documentation for running `nmcli` as a NetworkManager secret/polkit agent: -`nmcli {{agent|connection|device|general|help|monitor|networking|radio}} {{command_options}}` +`tldr nmcli agent` -- Display the current version of NetworkManager: +- View documentation for managing network connections: -`nmcli --version` +`tldr nmcli connection` -- Display help: +- View documentation for managing network interfaces and establishing new Wi-Fi connections: -`nmcli --help` +`tldr nmcli device` -- Display help for a subcommand: +- View documentation for managing general settings of NetworkManager: -`nmcli {{subcommand}} --help` +`tldr nmcli general` + +- View documentation for NetworkManager's activity monitor: + +`tldr nmcli monitor` + +- View documentation for enabling/disabling and checking the status of networking: + +`tldr nmcli networking` + +- View documentation for managing radio switches: + +`tldr nmcli radio` diff --git a/pages/linux/nmon.md b/pages/linux/nmon.md index c3d7d5faa5..b5be7277c7 100644 --- a/pages/linux/nmon.md +++ b/pages/linux/nmon.md @@ -3,7 +3,7 @@ > A system administrator, tuner, and benchmark tool. > More information: . -- Start nmon: +- Start `nmon`: `nmon` diff --git a/pages/linux/nmtui-connect.md b/pages/linux/nmtui-connect.md new file mode 100644 index 0000000000..5b0894a2e5 --- /dev/null +++ b/pages/linux/nmtui-connect.md @@ -0,0 +1,7 @@ +# nmtui-connect + +> This command is an alias of `nmtui connect`. + +- View documentation for the original command: + +`tldr nmtui` diff --git a/pages/linux/nmtui-edit.md b/pages/linux/nmtui-edit.md new file mode 100644 index 0000000000..deeb332430 --- /dev/null +++ b/pages/linux/nmtui-edit.md @@ -0,0 +1,7 @@ +# nmtui-edit + +> This command is an alias of `nmtui edit`. + +- View documentation for the original command: + +`tldr nmtui` diff --git a/pages/linux/nmtui-hostname.md b/pages/linux/nmtui-hostname.md new file mode 100644 index 0000000000..1ba8c9cde3 --- /dev/null +++ b/pages/linux/nmtui-hostname.md @@ -0,0 +1,7 @@ +# nmtui-hostname + +> This command is an alias of `nmtui hostname`. + +- View documentation for the original command: + +`tldr nmtui` diff --git a/pages/linux/obabel.md b/pages/linux/obabel.md new file mode 100644 index 0000000000..81ff99e5e4 --- /dev/null +++ b/pages/linux/obabel.md @@ -0,0 +1,20 @@ +# obabel + +> Translate chemistry-related data. +> More information: . + +- Convert a .mol file to XYZ coordinates: + +`obabel {{path/to/file.mol}} -O {{path/to/output_file.xyz}}` + +- Convert a SMILES string to a 500x500 picture: + +`obabel -:"{{SMILES}} -O {{path/to/output_file.png}} -xp 500` + +- Convert a file of SMILES string to separate 3D .mol files: + +`obabel {{path/to/file.smi}} -O {{path/to/output_file.mol}} --gen3D -m` + +- Render multiple inputs into one picture: + +`obabel {{path/to/file1}} {{path/to/file2}} -O {{path/to/output_file.png}}` diff --git a/pages/linux/oomctl.md b/pages/linux/oomctl.md new file mode 100644 index 0000000000..5afd843ade --- /dev/null +++ b/pages/linux/oomctl.md @@ -0,0 +1,8 @@ +# oomctl + +> Analyze the state stored in `systemd-oomd`. +> More information: . + +- Show the current state of the cgroups and system contexts stored by `systemd-oomd`: + +`oomctl dump` diff --git a/pages/linux/optimus-manager.md b/pages/linux/optimus-manager.md new file mode 100644 index 0000000000..61b24313d2 --- /dev/null +++ b/pages/linux/optimus-manager.md @@ -0,0 +1,12 @@ +# optimus-manager + +> GPU switching utility for Nvidia Optimus laptops. +> More information: . + +- Switch between different GPU modes: + +`optimus-manager --switch {{nvidia|integrated|hybrid}}` + +- Clean up: + +`optimus-manager --cleanup` diff --git a/pages/linux/ostree.md b/pages/linux/ostree.md new file mode 100644 index 0000000000..d786966259 --- /dev/null +++ b/pages/linux/ostree.md @@ -0,0 +1,33 @@ +# ostree + +> Version control for binary files similar to git but optimized for operating system root filesystems. +> OSTree is the foundation for immutable image-based operating systems such as Fedora Silverblue, Fedora IoT or Fedora CoreOS. +> More information: . + +- Initialize a repository of the files in `$PWD` with metadata in `$PWD/{{path/to/repo}}`: + +`ostree init --repo {{path/to/repo}}` + +- Create a commit (snapshot) of the files: + +`ostree commit --repo {{path/to/repo}} --branch {{branch_name}}` + +- Show files in commit: + +`ostree ls --repo {{path/to/repo}} {{commit_id}}` + +- Show metadata of commit: + +`ostree show --repo {{path/to/repo}} {{commit_id}}` + +- Show list of commits: + +`ostree log --repo {{path/to/repo}} {{branch_name}}` + +- Show repo summary: + +`ostree summary --repo {{path/to/repo}} --view` + +- Show available refs (branches): + +`ostree refs --repo {{path/to/repo}}` diff --git a/pages/linux/pacaur.md b/pages/linux/pacaur.md index 72457c56e4..e8a366a172 100644 --- a/pages/linux/pacaur.md +++ b/pages/linux/pacaur.md @@ -13,11 +13,11 @@ - Install a new package (includes AUR): -`pacaur -S {{package_name}}` +`pacaur -S {{package}}` - Remove a package and its dependencies (includes AUR packages): -`pacaur -Rs {{package_name}}` +`pacaur -Rs {{package}}` - Search the package database for a keyword (includes AUR): diff --git a/pages/linux/pacman-database.md b/pages/linux/pacman-database.md index e96bc979bf..79e61c841d 100644 --- a/pages/linux/pacman-database.md +++ b/pages/linux/pacman-database.md @@ -2,15 +2,16 @@ > Operate on the Arch Linux package database. > Modify certain attributes of the installed packages. +> See also: `pacman`. > More information: . - Mark a package as implicitly installed: -`sudo pacman --database --asdeps {{package_name}}` +`sudo pacman --database --asdeps {{package}}` - Mark a package as explicitly installed: -`sudo pacman --database --asexplicit {{package_name}}` +`sudo pacman --database --asexplicit {{package}}` - Check that all the package dependencies are installed: diff --git a/pages/linux/pacman-deptest.md b/pages/linux/pacman-deptest.md index 6ff4aa0edf..4c83c67524 100644 --- a/pages/linux/pacman-deptest.md +++ b/pages/linux/pacman-deptest.md @@ -1,11 +1,12 @@ # pacman --deptest > Check each dependency specified and return a list of dependencies that are not currently satisfied on the system. +> See also: `pacman`. > More information: . - Print the package names of the dependencies that aren't installed: -`pacman --deptest {{package_name1}} {{package_name2}}` +`pacman --deptest {{package1 package2 ...}}` - Check if the installed package satisfies the given minimum version: diff --git a/pages/linux/pacman-files.md b/pages/linux/pacman-files.md index b9757d37f7..4a50804873 100644 --- a/pages/linux/pacman-files.md +++ b/pages/linux/pacman-files.md @@ -1,7 +1,7 @@ # pacman --files > Arch Linux package manager utility. -> See also `pkgfile`. +> See also: `pacman`, `pkgfile`. > More information: . - Update the package database: @@ -22,11 +22,7 @@ - List the files owned by a specific package: -`pacman --files --list {{package_name}}` - -- List only the absolute path to the files: - -`pacman --query --list --quiet {{package_name}}` +`pacman --files --list {{package}}` - Display help: diff --git a/pages/linux/pacman-key.md b/pages/linux/pacman-key.md index 3674c6e162..aaf563bf19 100644 --- a/pages/linux/pacman-key.md +++ b/pages/linux/pacman-key.md @@ -1,6 +1,7 @@ # pacman-key > Wrapper script for GnuPG used to manage pacman's keyring. +> See also: `pacman`. > More information: . - Initialize the pacman keyring: diff --git a/pages/linux/pacman-mirrors.md b/pages/linux/pacman-mirrors.md index a0c2d54b75..c9876e671c 100644 --- a/pages/linux/pacman-mirrors.md +++ b/pages/linux/pacman-mirrors.md @@ -2,6 +2,7 @@ > Generate a pacman mirrorlist for Manjaro Linux. > Every run of pacman-mirrors requires you to synchronize your database and update your system using `sudo pacman -Syyu`. +> See also: `pacman`. > More information: . - Generate a mirrorlist using the default settings: diff --git a/pages/linux/pacman-query.md b/pages/linux/pacman-query.md index 5b3a0c59eb..084ec9989a 100644 --- a/pages/linux/pacman-query.md +++ b/pages/linux/pacman-query.md @@ -1,6 +1,7 @@ # pacman --query > Arch Linux package manager utility. +> See also: `pacman`. > More information: . - List installed packages and versions: @@ -17,11 +18,11 @@ - Display information about an installed package: -`pacman --query --info {{package_name}}` +`pacman --query --info {{package}}` - List files owned by a package: -`pacman --query --list {{package_name}}` +`pacman --query --list {{package}}` - List orphan packages (installed as dependencies but not required by any package): diff --git a/pages/linux/pacman-remove.md b/pages/linux/pacman-remove.md index 3c2f12b0be..83f21d0a07 100644 --- a/pages/linux/pacman-remove.md +++ b/pages/linux/pacman-remove.md @@ -1,19 +1,20 @@ # pacman --remove > Arch Linux package manager utility. +> See also: `pacman`. > More information: . - Remove a package and its dependencies: -`sudo pacman --remove --recursive {{package_name}}` +`sudo pacman --remove --recursive {{package}}` - Remove a package and both its dependencies and configuration files: -`sudo pacman --remove --recursive --nosave {{package_name}}` +`sudo pacman --remove --recursive --nosave {{package}}` - Remove a package without prompting: -`sudo pacman --remove --noconfirm {{package_name}}` +`sudo pacman --remove --noconfirm {{package}}` - Remove orphan packages (installed as dependencies but not required by any package): @@ -21,11 +22,11 @@ - Remove a package and all packages that depend on it: -`sudo pacman --remove --cascade {{package_name}}` +`sudo pacman --remove --cascade {{package}}` - List packages that would be affected (does not remove any packages): -`pacman --remove --print {{package_name}}` +`pacman --remove --print {{package}}` - Display help for this subcommand: diff --git a/pages/linux/pacman-sync.md b/pages/linux/pacman-sync.md index dffe02cac3..7c8c6e952a 100644 --- a/pages/linux/pacman-sync.md +++ b/pages/linux/pacman-sync.md @@ -1,11 +1,12 @@ # pacman --sync > Arch Linux package manager utility. +> See also: `pacman`. > More information: . - Install a new package: -`sudo pacman --sync {{package_name}}` +`sudo pacman --sync {{package}}` - Synchronize and update all packages (add `--downloadonly` to download the packages and not update them): @@ -13,7 +14,7 @@ - Update all packages and install a new one without prompting: -`sudo pacman --sync --refresh --sysupgrade --noconfirm {{package_name}}` +`sudo pacman --sync --refresh --sysupgrade --noconfirm {{package}}` - Search the package database for a regular expression or keyword: @@ -21,7 +22,7 @@ - Display information about a package: -`pacman --sync --info {{package_name}}` +`pacman --sync --info {{package}}` - Overwrite conflicting files during a package update: @@ -29,7 +30,7 @@ - Synchronize and update all packages, but ignore a specific package (can be used more than once): -`sudo pacman --sync --refresh --sysupgrade --ignore {{package_name}}` +`sudo pacman --sync --refresh --sysupgrade --ignore {{package}}` - Remove not installed packages and unused repositories from the cache (use two `--clean` flags to clean all packages): diff --git a/pages/linux/pacman-upgrade.md b/pages/linux/pacman-upgrade.md index 1a4a2a3436..b9be250362 100644 --- a/pages/linux/pacman-upgrade.md +++ b/pages/linux/pacman-upgrade.md @@ -1,6 +1,7 @@ # pacman --upgrade > Arch Linux package manager utility. +> See also: `pacman`. > More information: . - Install one or more packages from files: diff --git a/pages/linux/pacman.md b/pages/linux/pacman.md index 4d8d9a25d0..1a203bde2c 100644 --- a/pages/linux/pacman.md +++ b/pages/linux/pacman.md @@ -1,7 +1,7 @@ # pacman > Arch Linux package manager utility. -> Some subcommands such as `pacman sync` have their own usage documentation. +> See also: `pacman-database`, `pacman-deptest`, `pacman-files`, `pacman-key`, `pacman-mirrors`, `pacman-query`, `pacman-remove`, `pacman-sync`, `pacman-upgrade`. > For equivalent commands in other package managers, see . > More information: . @@ -11,15 +11,15 @@ - Install a new package: -`sudo pacman -S {{package_name}}` +`sudo pacman -S {{package}}` - Remove a package and its dependencies: -`sudo pacman -Rs {{package_name}}` +`sudo pacman -Rs {{package}}` -- Search the package database for a regular expression or keyword: +- Search the database for packages containing a specific file: -`pacman -Ss "{{search_pattern}}"` +`pacman -F "{{file_name}}"` - List installed packages and versions: diff --git a/pages/linux/pacstall.md b/pages/linux/pacstall.md index 5c4c9d6954..e9bb983371 100644 --- a/pages/linux/pacstall.md +++ b/pages/linux/pacstall.md @@ -5,15 +5,15 @@ - Search the package database for a package name: -`pacstall --search {{package_name}}` +`pacstall --search {{query}}` - Install a package: -`pacstall --install {{package_name}}` +`pacstall --install {{package}}` - Remove a package: -`pacstall --remove {{package_name}}` +`pacstall --remove {{package}}` - Add a repository to the database (only GitHub and GitLab are supported): @@ -29,7 +29,7 @@ - Display information about a package: -`pacstall --query-info {{package_name}}` +`pacstall --query-info {{package}}` - List all installed packages: diff --git a/pages/linux/paru.md b/pages/linux/paru.md index 35f4a7e499..607e25d924 100644 --- a/pages/linux/paru.md +++ b/pages/linux/paru.md @@ -17,12 +17,12 @@ - Get information about a package: -`paru -Si {{package_name}}` +`paru -Si {{package}}` - Download `PKGBUILD` and other package source files from the AUR or ABS: -`paru --getpkgbuild {{package_name}}` +`paru --getpkgbuild {{package}}` - Display the `PKGBUILD` file of a package: -`paru --getpkgbuild --print {{package_name}}` +`paru --getpkgbuild --print {{package}}` diff --git a/pages/linux/pdfcrop.md b/pages/linux/pdfcrop.md new file mode 100644 index 0000000000..592eee4a5a --- /dev/null +++ b/pages/linux/pdfcrop.md @@ -0,0 +1,28 @@ +# pdfcrop + +> Detect and remove margins in each page in a PDF file. +> More information: . + +- Automatically detect and remove the margin for each page in a PDF file: + +`pdfcrop {{path/to/input_file.pdf}} {{path/to/output_file.pdf}}` + +- Set the margins of each page to a specific value: + +`pdfcrop {{path/to/input_file.pdf}} --margins '{{left}} {{top}} {{right}} {{bottom}}' {{path/to/output_file.pdf}}` + +- Set the margins of each page to a specific value, using the same value for left, top, right and bottom: + +`pdfcrop {{path/to/input_file.pdf}} --margins {{300}} {{path/to/output_file.pdf}}` + +- Use a user-defined bounding box for cropping instead of automatically detecting it: + +`pdfcrop {{path/to/input_file.pdf}} --bbox '{{left}} {{top}} {{right}} {{bottom}}' {{path/to/output_file.pdf}}` + +- Use different user-defined bounding boxes for odd and even pages: + +`pdfcrop {{path/to/input_file.pdf}} --bbox-odd '{{left}} {{top}} {{right}} {{bottom}}' --bbox-even '{{left}} {{top}} {{right}} {{bottom}}' {{path/to/output_file.pdf}}` + +- Automatically detect margins using a lower resolution for improved performance: + +`pdfcrop {{path/to/input_file.pdf}} --resolution {{72}} {{path/to/output_file.pdf}}` diff --git a/pages/linux/pdftohtml.md b/pages/linux/pdftohtml.md new file mode 100644 index 0000000000..c5c818e864 --- /dev/null +++ b/pages/linux/pdftohtml.md @@ -0,0 +1,20 @@ +# pdftohtml + +> Convert PDF files into HTML, XML and PNG images. +> More information: . + +- Convert a PDF file to an HTML file: + +`pdftohtml {{path/to/file.pdf}} {{path/to/output_file.html}}` + +- Ignore images in the PDF file: + +`pdftohtml -i {{path/to/file.pdf}} {{path/to/output_file.html}}` + +- Generate a single HTML file that includes all PDF pages: + +`pdftohtml -s {{path/to/file.pdf}} {{path/to/output_file.html}}` + +- Convert a PDF file to an XML file: + +`pdftohtml -xml {{path/to/file.pdf}} {{path/to/output_file.xml}}` diff --git a/pages/linux/pi.md b/pages/linux/pi.md index 5e66e44760..2ab1bc5a71 100644 --- a/pages/linux/pi.md +++ b/pages/linux/pi.md @@ -1,6 +1,6 @@ # pi -> Compute decimal Archimedes' constant Pi on the command-line. +> Compute decimal Archimedes' constant Pi. > More information: . - Display 100 decimal digits of Archimedes' constant Pi: diff --git a/pages/linux/picom.md b/pages/linux/picom.md new file mode 100644 index 0000000000..47ef0788c1 --- /dev/null +++ b/pages/linux/picom.md @@ -0,0 +1,16 @@ +# picom + +> Standalone compositor for Xorg. +> More information: . + +- Enable `picom` during a session: + +`picom &` + +- Start `picom` as a background process: + +`picom -b` + +- Use a custom configuration file: + +`picom --config {{path/to/config_file}}` diff --git a/pages/linux/pinout.md b/pages/linux/pinout.md index 089388e299..74ce0dbc85 100644 --- a/pages/linux/pinout.md +++ b/pages/linux/pinout.md @@ -7,6 +7,6 @@ `pinout` -- Open https://pinout.xyz/ in the default browser: +- Open in the default browser: `pinout -x` diff --git a/pages/linux/pkgadd.md b/pages/linux/pkgadd.md index a26cac94a9..3aff5b5f9c 100644 --- a/pages/linux/pkgadd.md +++ b/pages/linux/pkgadd.md @@ -1,12 +1,12 @@ # pkgadd > Add a package to a CRUX system. -> More information: . +> More information: . - Install a local software package: -`pkgadd {{package_name}}` +`pkgadd {{package}}` - Update an already installed package from a local package: -`pkgadd -u {{package_name}}` +`pkgadd -u {{package}}` diff --git a/pages/linux/pkgctl-auth.md b/pages/linux/pkgctl-auth.md new file mode 100644 index 0000000000..6aec6c5660 --- /dev/null +++ b/pages/linux/pkgctl-auth.md @@ -0,0 +1,12 @@ +# pkgctl auth + +> Authenticate `pkgctl` with services like GitLab. +> More information: . + +- Authenticate `pkgctl` with the GitLab instance: + +`pkgctl auth login` + +- View authentication status: + +`pkgctl auth status` diff --git a/pages/linux/pkgctl-build.md b/pages/linux/pkgctl-build.md new file mode 100644 index 0000000000..9329d9d4bb --- /dev/null +++ b/pages/linux/pkgctl-build.md @@ -0,0 +1,12 @@ +# pkgctl build + +> Build packages inside a clean `chroot`. +> More information: . + +- Automatically choose the right build script to build packages in a clean `chroot`: + +`pkgctl build` + +- Manually build packages in a clean `chroot`: + +`pkgctl build --arch {{architecture}} --repo {{repository}} --clean` diff --git a/pages/linux/pkgctl-db-update.md b/pages/linux/pkgctl-db-update.md new file mode 100644 index 0000000000..d9808e83c9 --- /dev/null +++ b/pages/linux/pkgctl-db-update.md @@ -0,0 +1,8 @@ +# pkgctl db update + +> Update the pacman database as final release step for packages that have been transfered and staged on . +> More information: . + +- Update the binary repository as final release step: + +`pkgctl db update` diff --git a/pages/linux/pkgctl-diff.md b/pages/linux/pkgctl-diff.md new file mode 100644 index 0000000000..92ed3aa593 --- /dev/null +++ b/pages/linux/pkgctl-diff.md @@ -0,0 +1,21 @@ +# pkgctl diff + +> Compare package files using different modes. +> See also: `pkgctl`. +> More information: . + +- Compare package files in tar content [l]ist different mode (default): + +`pkgctl diff --list {{path/to/file|pkgname}}` + +- Compare package files in [d]iffoscope different mode: + +`pkgctl diff --diffoscope {{path/to/file|pkgname}}` + +- Compare package files in `.PKGINFO` different mode: + +`pkgctl diff --pkginfo {{path/to/file|pkgname}}` + +- Compare package files in `.BUILDINFO` different mode: + +`pkgctl diff --buildinfo {{path/to/file|pkgname}}` diff --git a/pages/linux/pkgctl-release.md b/pages/linux/pkgctl-release.md new file mode 100644 index 0000000000..1cf519f8fb --- /dev/null +++ b/pages/linux/pkgctl-release.md @@ -0,0 +1,8 @@ +# pkgctl release + +> Release step to commit, tag and upload build artifacts. +> More information: . + +- Release a build artifact: + +`pkgctl release --repo {{repository}} --message {{commit_message}}` diff --git a/pages/linux/pkgctl-repo.md b/pages/linux/pkgctl-repo.md new file mode 100644 index 0000000000..8582140f1e --- /dev/null +++ b/pages/linux/pkgctl-repo.md @@ -0,0 +1,25 @@ +# pkgctl repo + +> Manage Git packaging repositories and their configuration for Arch Linux. +> See also: `pkgctl`. +> More information: . + +- Clone a package repository (requires setting an SSH key in your Arch Linux GitLab account): + +`pkgctl repo clone {{pkgname}}` + +- Clone a package repository over HTTPS: + +`pkgctl repo clone --protocol=https {{pkgname}}` + +- Create a new GitLab package repository and clone it after creation (requires valid GitLab API authentication): + +`pkgctl repo create {{pkgbase}}` + +- Switch a package repository to a specified version: + +`pkgctl repo switch {{version}} {{pkgbase}}` + +- Open a package repository's website: + +`pkgctl repo web {{pkgbase}}` diff --git a/pages/linux/pkgctl.md b/pages/linux/pkgctl.md new file mode 100644 index 0000000000..66513ef99f --- /dev/null +++ b/pages/linux/pkgctl.md @@ -0,0 +1,32 @@ +# pkgctl + +> Unified command-line frontend for Arch Linux devtools. +> More information: . + +- View documentation for authenticating `pkgctl` with services like GitLab: + +`tldr pkgctl auth` + +- View documentation for building packages inside a clean `chroot`: + +`tldr pkgctl build` + +- View documentation for updating the binary repository as final release step: + +`tldr pkgctl db update` + +- View documentation for comparing package files using different modes: + +`tldr pkgctl diff` + +- View documentation for releasing build artifacts: + +`tldr pkgctl release` + +- View documentation for managing Git packaging repositories and their configuration: + +`tldr pkgctl repo` + +- Display version: + +`pkgctl version` diff --git a/pages/linux/pkgfile.md b/pages/linux/pkgfile.md index 42a2aecc4b..4c12deff16 100644 --- a/pages/linux/pkgfile.md +++ b/pages/linux/pkgfile.md @@ -14,11 +14,11 @@ - List all files provided by a package: -`pkgfile --list {{package_name}}` +`pkgfile --list {{package}}` -- List only files provided by a package located within the `bin` or `sbin` directory: +- List executables provided by a package: -`pkgfile --list --binaries {{package_name}}` +`pkgfile --list --binaries {{package}}` - Search for a package that owns a specific file using case-insensitive matching: diff --git a/pages/linux/pkginfo.md b/pages/linux/pkginfo.md index 297384b018..df429a0673 100644 --- a/pages/linux/pkginfo.md +++ b/pages/linux/pkginfo.md @@ -9,7 +9,7 @@ - List files owned by a package: -`pkginfo -l {{package_name}}` +`pkginfo -l {{package}}` - List the owner(s) of files matching a pattern: diff --git a/pages/linux/pkgmk.md b/pages/linux/pkgmk.md index f08e322f4c..087f8b638f 100644 --- a/pages/linux/pkgmk.md +++ b/pages/linux/pkgmk.md @@ -1,7 +1,7 @@ # pkgmk > Make a binary package for use with pkgadd on CRUX. -> More information: . +> More information: . - Make and download a package: diff --git a/pages/linux/pkgrm.md b/pages/linux/pkgrm.md index e217af1fb9..24852bbcc1 100644 --- a/pages/linux/pkgrm.md +++ b/pages/linux/pkgrm.md @@ -1,8 +1,8 @@ # pkgrm > Remove a package from a CRUX system. -> More information: . +> More information: . - Remove an installed package: -`pkgrm {{package_name}}` +`pkgrm {{package}}` diff --git a/pages/linux/postconf.md b/pages/linux/postconf.md new file mode 100644 index 0000000000..ae03290648 --- /dev/null +++ b/pages/linux/postconf.md @@ -0,0 +1,29 @@ +# postconf + +> Postfix configuration utility. +> This command displays the values of the `main.cf` configuration parameters by default and warns about possible mistyped parameter names. It can also change the `main.cf` configuration parameter values. +> More information: . + +- Specify the directory of the `main.cf` configuration file instead of the default configuration directory: + +`postconf -c {{path/to/configuration_directory}}` + +- Edit the `main.cf` configuration file and update parameter settings with the "name=value" pairs: + +`postconf -e` + +- Print the default parameter settings of the `main.cf` instead of the actual settings: + +`postconf -d` + +- Display parameters only from the specified class. The class can be one of builtin, service, user or all: + +`postconf -C {{class}}` + +- List available SASL plug-in types for the Postfix SMTP server. The plug-in type is selected with the `smtpd_sasl_type` configuration parameter by specifying `cyrus` or `dovecot` as the name: + +`postconf -a` + +- List the names of all supported lookup table types. Lookup tables are specified as `type:name` in configuration files where the type can be `btree`, `cdb`, `hash`, `mysql`, etc: + +`postconf -m` diff --git a/pages/linux/powertop.md b/pages/linux/powertop.md index b1a3190459..0d5757fbff 100644 --- a/pages/linux/powertop.md +++ b/pages/linux/powertop.md @@ -14,3 +14,7 @@ - Tune to optimal settings: `sudo powertop --auto-tune` + +- Generate a report for a specified number of seconds (instead of 20 by default): + +`sudo powertop --time={{5}}` diff --git a/pages/linux/pridecat.md b/pages/linux/pridecat.md index 3becb71134..ccbf3c70c7 100644 --- a/pages/linux/pridecat.md +++ b/pages/linux/pridecat.md @@ -3,7 +3,7 @@ > Like cat but more colorful :). > More information: . -- Print the contents of a file in pride colors to the standard output: +- Print the contents of a file in pride colors to `stdout`: `pridecat {{path/to/file}}` diff --git a/pages/linux/pro.md b/pages/linux/pro.md new file mode 100644 index 0000000000..4cdbbea5d4 --- /dev/null +++ b/pages/linux/pro.md @@ -0,0 +1,28 @@ +# pro + +> Manage Ubuntu Pro services. +> More information: . + +- Connect your system to the Ubuntu Pro support contract: + +`sudo pro attach` + +- Display the status of Ubuntu Pro services: + +`pro status` + +- Check if the system is affected by a specific vulnerability (and apply a fix if possible): + +`pro fix {{CVE-number}}` + +- Display the number of unsupported packages: + +`pro security-status` + +- List packages that are no longer available for download: + +`pro security-status --unavailable` + +- List third-party packages: + +`pro security-status --thirdparty` diff --git a/pages/linux/protonvpn-cli-connect.md b/pages/linux/protonvpn-cli-connect.md index 308ae015b1..bb1636454b 100644 --- a/pages/linux/protonvpn-cli-connect.md +++ b/pages/linux/protonvpn-cli-connect.md @@ -1,6 +1,6 @@ # protonvpn-cli connect -> Official client to connect to ProtonVPN from the command-line. +> Connect to ProtonVPN. > More information: . - Connect to ProtonVPN interactively: diff --git a/pages/linux/protonvpn-cli.md b/pages/linux/protonvpn-cli.md index 1112d83276..0e5bfb95da 100644 --- a/pages/linux/protonvpn-cli.md +++ b/pages/linux/protonvpn-cli.md @@ -1,6 +1,7 @@ # protonvpn-cli -> Official client for ProtonVPN service from the command-line. +> Official ProtonVPN client. +> See also: `protonvpn-cli-connect`. > More information: . - Log in to the ProtonVPN account: diff --git a/pages/linux/prt-get.md b/pages/linux/prt-get.md index 4a3ce5b9ca..879e0104ab 100644 --- a/pages/linux/prt-get.md +++ b/pages/linux/prt-get.md @@ -5,19 +5,19 @@ - Install a package: -`prt-get install {{package_name}}` +`prt-get install {{package}}` - Install a package with dependency handling: -`prt-get depinst {{package_name}}` +`prt-get depinst {{package}}` - Update a package manually: -`prt-get upgrade {{package_name}}` +`prt-get upgrade {{package}}` - Remove a package: -`prt-get remove {{package_name}}` +`prt-get remove {{package}}` - Upgrade the system from the local ports tree: @@ -25,7 +25,7 @@ - Search the ports tree: -`prt-get search {{package_name}}` +`prt-get search {{query}}` - Search for a file in a package: diff --git a/pages/linux/pstoedit.md b/pages/linux/pstoedit.md new file mode 100644 index 0000000000..fc0f5aae61 --- /dev/null +++ b/pages/linux/pstoedit.md @@ -0,0 +1,12 @@ +# pstoedit + +> Convert PDF files into various image formats. +> More information: . + +- Convert a PDF page to PNG or JPEG format: + +`pstoedit -page {{page_number}} -f magick {{path/to/file.pdf}} {{page.png|page.jpg]}}` + +- Convert multiple PDF pages to numbered images: + +`pstoedit -f magick {{path/to/file}} {{page%d.png|page%d.jpg}}` diff --git a/pages/linux/pw-link.md b/pages/linux/pw-link.md index 9e9173207a..b309a33a19 100644 --- a/pages/linux/pw-link.md +++ b/pages/linux/pw-link.md @@ -5,7 +5,7 @@ - List all audio output and input ports: -`pw-link --output --input'` +`pw-link --output --input` - Create a link between an output and an input port: diff --git a/pages/linux/pw-play.md b/pages/linux/pw-play.md index 51733bf88c..c83f024d77 100644 --- a/pages/linux/pw-play.md +++ b/pages/linux/pw-play.md @@ -1,12 +1,9 @@ # pw-play -> Shorthand tool for pw-cat --playback. +> Record audio files through pipewire. +> Shorthand for pw-cat --playback. > More information: . -- List all available playback targets: - -`pw-play --list-targets` - - Play a wav sound file over the default target: `pw-play {{path/to/file.wav}}` diff --git a/pages/linux/pyrit.md b/pages/linux/pyrit.md new file mode 100644 index 0000000000..03d063381b --- /dev/null +++ b/pages/linux/pyrit.md @@ -0,0 +1,36 @@ +# pyrit + +> WPA/WPA2 cracking tool using computational power. +> More information: . + +- Display system cracking speed: + +`pyrit benchmark` + +- List available cores: + +`pyrit list_cores` + +- Set [e]SSID: + +`pyrit -e "{{ESSID}}" create_essid` + +- [r]ead and analyze a specific packet capture file: + +`pyrit -r {{path/to/file.cap|path/to/file.pcap}} analyze` + +- Read and [i]mport passwords to the current database: + +`pyrit -i {{path/to/file}} {{import_unique_passwords|unique_passwords|import_passwords}}` + +- Exp[o]rt passwords from database to a specific file: + +`pyrit -o {{path/to/file}} export_passwords` + +- Translate passwords with Pired Master Keys: + +`pyrit batch` + +- [r]ead the capture file and crack the password: + +`pyrit -r {{path/to/file}} attack_db` diff --git a/pages/linux/qm-cloud-init.md b/pages/linux/qm-cloud-init.md new file mode 100644 index 0000000000..18293c5cf3 --- /dev/null +++ b/pages/linux/qm-cloud-init.md @@ -0,0 +1,24 @@ +# qm cloud init + +> Configure cloudinit settings for virtual machines managed by Proxmox Virtual Environment (PVE). +> More information: . + +- Configure cloudinit settings for a specific user and set password for the user: + +`qm cloud-init {{vm_id}} -user={{user}} -password={{password}}` + +- Configure cloudinit settings for a specific user and set password for the user with a specific SSH key: + +`qm cloud-init {{vm_id}} -user={{user}} -password={{password}} -sshkey={{ssh_key}}` + +- Set the hostname for a specific virtual machine: + +`qm cloud-init {{vm_id}} -hostname={{hostname}}` + +- Configure the network interface settings for a specific virtual machine: + +`qm cloud-init {{vm_id}} -ipconfig {{ipconfig}}` + +- Configure a shell script to execute before `cloud-ini` is run on a virtual machine: + +`qm cloud-init {{vm_id}} -pre {{script}}` diff --git a/pages/linux/qm-cloudinit-dump.md b/pages/linux/qm-cloudinit-dump.md index bef3a77b9b..e6b3e561cb 100644 --- a/pages/linux/qm-cloudinit-dump.md +++ b/pages/linux/qm-cloudinit-dump.md @@ -5,4 +5,4 @@ - Generate a cloudinit file for a specific configuration type: -`qm cloudinit dump {{vmid}} {{meta|network|user}}` +`qm cloudinit dump {{virtual_machine_id}} {{meta|network|user}}` diff --git a/pages/linux/qm-disk-import.md b/pages/linux/qm-disk-import.md new file mode 100644 index 0000000000..561cfdbf1a --- /dev/null +++ b/pages/linux/qm-disk-import.md @@ -0,0 +1,9 @@ +# qm disk import + +> Import a disk image to a virtual machine as an unused disk. +> The supported image formats for `qemu-img`, such as raw, qcow2, qed, vdi, vmdk, and vhd must be used. +> More information: . + +- Import a VMDK/qcow2/raw disk image using a specific storage name: + +`qm importdisk {{vm_id}} {{path/to/disk}} {{storage_name}} --format {{qcow2|raw|vmdk}}` diff --git a/pages/linux/qm-disk-move.md b/pages/linux/qm-disk-move.md new file mode 100644 index 0000000000..73a04197fa --- /dev/null +++ b/pages/linux/qm-disk-move.md @@ -0,0 +1,12 @@ +# qm disk move + +> Move a virtual disk from one storage to another within the same Proxmox cluster. +> More information: . + +- Move a virtual disk: + +`qm disk move {{vm_id}} {{destination}} {{index}}` + +- Delete the previous copy of the virtual disk: + +`qm disk move -delete {{vm_id}} {{destination}} {{index}}` diff --git a/pages/linux/qm-disk-resize.md b/pages/linux/qm-disk-resize.md new file mode 100644 index 0000000000..a28b344ca0 --- /dev/null +++ b/pages/linux/qm-disk-resize.md @@ -0,0 +1,8 @@ +# qm disk resize + +> Resize a virtual machine disk in the Proxmox Virtual Environment (PVE). +> More information: . + +- Add `n` gigabytes to a virtual disk: + +`qm disk resize {{vm_id}} {{disk_name}} +{{n}}G` diff --git a/pages/linux/qm-guest-cmd.md b/pages/linux/qm-guest-cmd.md index fb41b6391f..6e22369655 100644 --- a/pages/linux/qm-guest-cmd.md +++ b/pages/linux/qm-guest-cmd.md @@ -5,4 +5,4 @@ - Execute a specific QEMU Guest Agent command: -`qm guest cmd {{vmid}} {{fsfreeze-freeze|fsfreeze-status|fsfreeze-thaw|fstrim|get-fsinfo|get-host-name|get-memory-block-info|get-memory-blocks|get-osinfo|get-time|get-timezone|get-users|get-vcpus|info|network-get-interfaces|ping|shutdown|suspend-disk|suspend-hybrid|suspend-ram}}` +`qm guest cmd {{virtual_machine_id}} {{fsfreeze-freeze|fsfreeze-status|fsfreeze-thaw|fstrim|get-fsinfo|...}}` diff --git a/pages/linux/qm-guest-exec.md b/pages/linux/qm-guest-exec.md new file mode 100644 index 0000000000..89d1f7d609 --- /dev/null +++ b/pages/linux/qm-guest-exec.md @@ -0,0 +1,20 @@ +# qm guest exec + +> Execute a specific command via a guest agent. +> More information: . + +- Execute a specific command via a guest agent: + +`qm guest exec {{vm_id}} {{command}} {{argument1 argument2 ...}}` + +- Execute a specific command via a guest agent asynchronously: + +`qm guest exec {{vm_id}} {{argument1 argument2 ...}} --synchronous 0` + +- Execute a specific command via a guest agent with a specified timeout of 10 seconds: + +`qm guest exec {{vm_id}} {{argument1 argument2...}} --timeout {{10}}` + +- Execute a specific command via a guest agent and forward input from STDIN until EOF to the guest agent: + +`qm guest exec {{vm_id}} {{argument1 argument2 ...}} --pass-stdin 1` diff --git a/pages/linux/qm-importdisk.md b/pages/linux/qm-importdisk.md new file mode 100644 index 0000000000..ee365d00a8 --- /dev/null +++ b/pages/linux/qm-importdisk.md @@ -0,0 +1,7 @@ +# qm importdisk + +> This command is an alias of `qm disk import`. + +- View documentation for the original command: + +`tldr qm disk import` diff --git a/pages/linux/qm-list.md b/pages/linux/qm-list.md new file mode 100644 index 0000000000..e294fd175a --- /dev/null +++ b/pages/linux/qm-list.md @@ -0,0 +1,12 @@ +# qm list + +> List all virtual machines. +> More information: . + +- List all virtual machines: + +`qm list` + +- List all virtual machines with a full status about the ones which are currently running: + +`qm list --full 1` diff --git a/pages/linux/qm-move-disk.md b/pages/linux/qm-move-disk.md new file mode 100644 index 0000000000..bf96e9e9a4 --- /dev/null +++ b/pages/linux/qm-move-disk.md @@ -0,0 +1,8 @@ +# qm move_disk + +> This command and `qm move-disk` is an alias of `qm disk move`. +> More information: . + +- View documentation for the original command: + +`tldr qm-disk-move` diff --git a/pages/linux/qm-resize.md b/pages/linux/qm-resize.md new file mode 100644 index 0000000000..56a2bd80d3 --- /dev/null +++ b/pages/linux/qm-resize.md @@ -0,0 +1,8 @@ +# qm resize + +> This command is an alias of `qm-disk-resize`. +> More information: . + +- View documentation for the original command: + +`tldr qm-disk-resize` diff --git a/pages/linux/qm-showcmd.md b/pages/linux/qm-showcmd.md new file mode 100644 index 0000000000..78998d1e39 --- /dev/null +++ b/pages/linux/qm-showcmd.md @@ -0,0 +1,16 @@ +# qm showcmd + +> Show command-line which is used to start the VM (debug info). +> More information: . + +- Show command-line for a specific virtual machine: + +`qm showcmd {{vm_id}}` + +- Put each option on a new line to enhance human readability: + +`qm showcmd --pretty {{true}} {{vm_id}}` + +- Fetch config values from a specific snapshot: + +`qm showcmd --snapshot {{string}} {{vm_id}}` diff --git a/pages/linux/qm-suspend.md b/pages/linux/qm-suspend.md new file mode 100644 index 0000000000..7d532817ff --- /dev/null +++ b/pages/linux/qm-suspend.md @@ -0,0 +1,17 @@ +# qm suspend + +> Suspends a virtual machine (VM) in the Proxmox Virtual Environment (PVE). +> Use `--skiplock` and `--skiplockstorage` flags with caution, as they may lead to data corruption in certain situations. +> More information: . + +- Suspend a virtual machine by id: + +`qm suspend {{vm_id}} {{integer}}` + +- Skip the lock check when suspending the VM: + +`qm suspend {{vm_id}} {{integer}} --skiplock` + +- Skip the lock check for storage when suspending the VM: + +`qm suspend {{vm_id}} {{integer}} --skiplockstorage` diff --git a/pages/linux/qm-template.md b/pages/linux/qm-template.md new file mode 100644 index 0000000000..c8d51fbb3d --- /dev/null +++ b/pages/linux/qm-template.md @@ -0,0 +1,8 @@ +# qm template + +> Create a Proxmox VM template. +> More information: . + +- Create a template out of a specific virtual machine: + +`qm template {{vm_id}}` diff --git a/pages/linux/qm-vncproxy.md b/pages/linux/qm-vncproxy.md index b82a6e8945..0da99b4ba0 100644 --- a/pages/linux/qm-vncproxy.md +++ b/pages/linux/qm-vncproxy.md @@ -1,6 +1,6 @@ # qm vncproxy -> Proxy Virtual Machine VNC (Virtual network computing) traffic to stdin/stdout. +> Proxy Virtual Machine VNC (Virtual network computing) traffic to `stdin` or `stdout`. > More information: . - Proxy a specific virtual machine: diff --git a/pages/linux/qtile.md b/pages/linux/qtile.md index d671cd2aed..c131c020e5 100644 --- a/pages/linux/qtile.md +++ b/pages/linux/qtile.md @@ -7,7 +7,7 @@ `qtile start` -- Check the configuration file for any compilation errors (default location is `~/.config/qtile/config.py`): +- Check the configuration file for any compilation errors (default location is `~/.config/qtile/config.py`): `qtile check` diff --git a/pages/linux/raspi-config.md b/pages/linux/raspi-config.md index c984620909..5b313f8d8d 100644 --- a/pages/linux/raspi-config.md +++ b/pages/linux/raspi-config.md @@ -3,6 +3,6 @@ > An `ncurses` terminal GUI to config a Raspberry Pi. > More information: . -- Start raspi-config: +- Start `raspi-config`: `sudo raspi-config` diff --git a/pages/linux/read.md b/pages/linux/read.md new file mode 100644 index 0000000000..9c9a8156a2 --- /dev/null +++ b/pages/linux/read.md @@ -0,0 +1,36 @@ +# read + +> Shell builtin for retrieving data from `stdin`. +> More information: . + +- Store data that you type from the keyboard: + +`read {{variable}}` + +- Store each of the next lines you enter as values of an array: + +`read -a {{array}}` + +- Specify the number of maximum characters to be read: + +`read -n {{character_count}} {{variable}}` + +- Use a specific character as a delimiter instead of a new line: + +`read -d {{new_delimiter}} {{variable}}` + +- Do not let backslash (\\) act as an escape character: + +`read -r {{variable}}` + +- Display a prompt before the input: + +`read -p "{{Enter your input here: }}" {{variable}}` + +- Do not echo typed characters (silent mode): + +`read -s {{variable}}` + +- Read `stdin` and perform an action on every line: + +`while read line; do echo "$line"; done` diff --git a/pages/linux/reboot.md b/pages/linux/reboot.md index 05d9511797..020944f3f6 100644 --- a/pages/linux/reboot.md +++ b/pages/linux/reboot.md @@ -11,7 +11,7 @@ `reboot --poweroff` -- Halt the system (same as `halt`): +- Halt (terminates all processes and shuts down the CPU) the system (same as `halt`): `reboot --halt` diff --git a/pages/linux/resolvectl.md b/pages/linux/resolvectl.md index b44fcfc3ec..14b450b6a2 100644 --- a/pages/linux/resolvectl.md +++ b/pages/linux/resolvectl.md @@ -1,6 +1,6 @@ # resolvectl -> Resolve domain names, IPV4 and IPv6 addresses, DNS resource records, and services. +> Resolve domain names, IPv4 and IPv6 addresses, DNS resource records, and services. > Introspect and reconfigure the DNS resolver. > More information: . @@ -12,11 +12,19 @@ `resolvectl query {{domain1 domain2 ...}}` -- Retrieve the domain of a specified IP: +- Retrieve the domain of a specified IP address: `resolvectl query {{ip_address}}` -- Retrieve an MX record of domain: +- Flush all local DNS caches: + +`resolvectl flush-caches` + +- Display DNS statistics (transactions, cache, and DNSSEC verdicts): + +`resolvectl statistics` + +- Retrieve an MX record of a domain: `resolvectl --legend={{no}} --type={{MX}} query {{domain}}` @@ -24,10 +32,6 @@ `resolvectl service _{{service}}._{{protocol}} {{name}}` -- Retrieve the public key from an email address from an OPENPGPKEY DNS record: - -`resolvectl opengpg {{email}}` - - Retrieve a TLS key: `resolvectl tlsa tcp {{domain}}:443` diff --git a/pages/linux/restorecon.md b/pages/linux/restorecon.md new file mode 100644 index 0000000000..466ca08b2e --- /dev/null +++ b/pages/linux/restorecon.md @@ -0,0 +1,25 @@ +# restorecon + +> Restore SELinux security context on files/directories according to persistent rules. +> See also: `semanage-fcontext`. +> More information: . + +- View the current security context of a file or directory: + +`ls -dlZ {{path/to/file_or_directory}}` + +- Restore the security context of a file or directory: + +`restorecon {{path/to/file_or_directory}}` + +- Restore the security context of a directory recursively, and show all changed labels: + +`restorecon -R -v {{path/to/directory}}` + +- Restore the security context of a directory recursively, using all available threads, and show progress: + +`restorecon -R -T {{0}} -p {{path/to/directory}}` + +- Preview the label changes that would happen without applying them: + +`restorecon -R -n -v {{path/to/directory}}` diff --git a/pages/linux/rm.md b/pages/linux/rm.md new file mode 100644 index 0000000000..784999769e --- /dev/null +++ b/pages/linux/rm.md @@ -0,0 +1,25 @@ +# rm + +> Remove files or directories. +> See also: `rmdir`. +> More information: . + +- Remove specific files: + +`rm {{path/to/file1 path/to/file2 ...}}` + +- Remove specific files ignoring nonexistent ones: + +`rm --force {{path/to/file1 path/to/file2 ...}}` + +- Remove specific files interactively prompting before each removal: + +`rm --interactive {{path/to/file1 path/to/file2 ...}}` + +- Remove specific files printing info about each removal: + +`rm --verbose {{path/to/file1 path/to/file2 ...}}` + +- Remove specific files and directories recursively: + +`rm --recursive {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` diff --git a/pages/linux/rmdir.md b/pages/linux/rmdir.md new file mode 100644 index 0000000000..ae0bdab868 --- /dev/null +++ b/pages/linux/rmdir.md @@ -0,0 +1,13 @@ +# rmdir + +> Remove directories without files. +> See also: `rm`. +> More information: . + +- Remove specific directories: + +`rmdir {{path/to/directory1 path/to/directory2 ...}}` + +- Remove specific nested directories recursively: + +`rmdir --parents {{path/to/directory1 path/to/directory2 ...}}` diff --git a/pages/linux/rmmod.md b/pages/linux/rmmod.md index a951b2b0f3..2af866a4ec 100644 --- a/pages/linux/rmmod.md +++ b/pages/linux/rmmod.md @@ -11,7 +11,7 @@ `sudo rmmod --verbose {{module_name}}` -- Remove a module from the kernel and send errors to syslog instead of standard error: +- Remove a module from the kernel and send errors to syslog instead of `stderr`: `sudo rmmod --syslog {{module_name}}` diff --git a/pages/linux/rpm.md b/pages/linux/rpm.md index be28e6f96f..7c2678cab1 100644 --- a/pages/linux/rpm.md +++ b/pages/linux/rpm.md @@ -14,7 +14,7 @@ - Forcibly install a package regardless of currently installed versions: -`rpm --upgrade {{package_name.rpm}} --force` +`rpm --upgrade {{path/to/package.rpm}} --force` - Identify owner of a file and show version of the package: @@ -26,7 +26,7 @@ - Show scriptlets from an RPM file: -`rpm --query --package --scripts {{package_name.rpm}}` +`rpm --query --package --scripts {{package.rpm}}` - Show changed, missing and/or incorrectly installed files of matching packages: @@ -34,4 +34,4 @@ - Display the changelog of a specific package: -`rpm --query --changelog {{package_name}}` +`rpm --query --changelog {{package}}` diff --git a/pages/linux/rtorrent.md b/pages/linux/rtorrent.md index 0dc25acbc4..3137bf6e2f 100644 --- a/pages/linux/rtorrent.md +++ b/pages/linux/rtorrent.md @@ -1,6 +1,6 @@ # rtorrent -> Download torrents over the command-line. +> Download torrents. > More information: . - Add a torrent file or magnet to be downloaded: diff --git a/pages/linux/run-mailcap.md b/pages/linux/run-mailcap.md index 078dce2d97..6de5878475 100644 --- a/pages/linux/run-mailcap.md +++ b/pages/linux/run-mailcap.md @@ -16,7 +16,7 @@ `run-mailcap --action=ACTION --debug {{filename}}` -- Ignore any "copiousoutput" directive and forward output to standard output: +- Ignore any "copiousoutput" directive and forward output to `stdout`: `run-mailcap --action=ACTION --nopager {{filename}}` diff --git a/pages/linux/schroot.md b/pages/linux/schroot.md index 6aaf8e48d5..772af42448 100644 --- a/pages/linux/schroot.md +++ b/pages/linux/schroot.md @@ -1,8 +1,12 @@ # schroot -> Run command or start an interactive shell with a different root directory. More customizable than `chroot`. +> Run a command or start an interactive shell with a different root directory. More customizable than `chroot`. > More information: . +- List available chroots: + +`schroot --list` + - Run a command in a specific chroot: `schroot --chroot {{chroot}} {{command}}` @@ -19,6 +23,14 @@ `schroot --chroot {{chroot}} --user {{user}}` -- List available chroots: +- Begin a new session (a unique session ID is returned on `stdout`): -`schroot --list` +`schroot --begin-session --chroot {{chroot}}` + +- Connect to an existing session: + +`schroot --run-session --chroot {{session_id}}` + +- End an existing session: + +`schroot --end-session --chroot {{session_id}}` diff --git a/pages/linux/script.md b/pages/linux/script.md index 9e7601424a..4c2911061c 100644 --- a/pages/linux/script.md +++ b/pages/linux/script.md @@ -15,6 +15,6 @@ `script -a {{path/to/session.out}}` -- Record timing information (data is outputted to the standard error): +- Record timing information (data is outputted to `stderr`): `script -t 2> {{path/to/timingfile}}` diff --git a/pages/linux/scriptreplay.md b/pages/linux/scriptreplay.md index 709119255e..58f205ff0f 100644 --- a/pages/linux/scriptreplay.md +++ b/pages/linux/scriptreplay.md @@ -1,6 +1,6 @@ # scriptreplay -> Replay a typescript created by the `script` command to the standard output. +> Replay a typescript created by the `script` command to `stdout`. > More information: . - Replay a typescript at the speed it was recorded: diff --git a/pages/linux/sed.md b/pages/linux/sed.md new file mode 100644 index 0000000000..2471f0b53a --- /dev/null +++ b/pages/linux/sed.md @@ -0,0 +1,25 @@ +# sed + +> Edit text in a scriptable manner. +> See also: `awk`, `ed`. +> More information: . + +- Replace all `apple` (basic regex) occurrences with `mango` (basic regex) in all input lines and print the result to `stdout`: + +`{{command}} | sed 's/apple/mango/g'` + +- Execute a specific script [f]ile and print the result to `stdout`: + +`{{command}} | sed -f {{path/to/script.sed}}` + +- Replace all `apple` (extended regex) occurrences with `APPLE` (extended regex) in all input lines and print the result to `stdout`: + +`{{command}} | sed -E 's/(apple)/\U\1/g'` + +- Print just a first line to `stdout`: + +`{{command}} | sed -n '1p'` + +- Replace all `apple` (basic regex) occurrences with `mango` (basic regex) in a specific file and overwrite the original file in place: + +`sed -i 's/apple/mango/g' {{path/to/file}}` diff --git a/pages/linux/select.md b/pages/linux/select.md new file mode 100644 index 0000000000..ed33ebf79f --- /dev/null +++ b/pages/linux/select.md @@ -0,0 +1,16 @@ +# select + +> Bash builtin construct for creating menus. +> More information: . + +- Create a menu out of individual words: + +`select {{word}} in {{apple}} {{orange}} {{pear}} {{banana}}; do echo ${{word}}; done` + +- Create a menu for picking a file or folder from the current directory: + +`select {{file}} in *; do echo ${{file}}; done` + +- Create a menu from a Bash array: + +`{{fruits}}=({{apple}} {{orange}} {{pear}} {{banana}}); select {{word}} in ${{{fruits}}[@]}; do echo ${{word}}; done` diff --git a/pages/linux/semanage-fcontext.md b/pages/linux/semanage-fcontext.md new file mode 100644 index 0000000000..72647e1f17 --- /dev/null +++ b/pages/linux/semanage-fcontext.md @@ -0,0 +1,25 @@ +# semanage fcontext + +> Manage persistent SELinux security context rules on files/directories. +> See also: `semanage`, `restorecon`. +> More information: . + +- List all file labelling rules: + +`sudo semanage fcontext --list` + +- List all user-defined file labelling rules without headings: + +`sudo semanage fcontext --list --locallist --noheading` + +- Add a user-defined rule that labels any path which matches a PCRE regex: + +`sudo semanage fcontext --add --type {{samba_share_t}} {{'/mnt/share(/.*)?'}}` + +- Delete a user-defined rule using its PCRE regex: + +`sudo semanage fcontext --delete {{'/mnt/share(/.*)?'}}` + +- Relabel a directory recursively by applying the new rules: + +`restorecon -R -v {{path/to/directory}}` diff --git a/pages/linux/sensible-editor.md b/pages/linux/sensible-editor.md index 93409f62d5..71605de7cf 100644 --- a/pages/linux/sensible-editor.md +++ b/pages/linux/sensible-editor.md @@ -17,4 +17,4 @@ - Open 3 files in vertically split editor windows at the same time: -`sensible-editor -O3 {{file_1}} {{file_2}} {{file_3}}` +`sensible-editor -O3 {{path/to/file1 path/to/file2 path/to/file3}}` diff --git a/pages/linux/setcap.md b/pages/linux/setcap.md new file mode 100644 index 0000000000..962d121426 --- /dev/null +++ b/pages/linux/setcap.md @@ -0,0 +1,25 @@ +# setcap + +> Set capabilities of specified file. +> See also: `tldr getcap`. +> More information: . + +- Set capability `cap_net_raw` (to use RAW and PACKET sockets) for a given file: + +`setcap '{{cap_net_raw}}' {{path/to/file}}` + +- Set multiple capabilities on a file (ep behind the capability means "effective permitted"): + +`setcap '{{cap_dac_read_search,cap_sys_tty_config+ep}}' {{path/to/file}}` + +- Remove all capabilities from a file: + +`setcap -r {{path/to/file}}` + +- Verify that the specified capabilities are currently associated with the specified file: + +`setcap -v '{{cap_net_raw}}' {{path/to/file}}` + +- The optional `-n {{rootuid}}` argument can be used to set the file capability for use only in a user namespace with this root user ID owner: + +`setcap -n {{rootuid}} '{{cap_net_admin}}' {{path/to/file}}` diff --git a/pages/linux/shar.md b/pages/linux/shar.md new file mode 100644 index 0000000000..f2c4443512 --- /dev/null +++ b/pages/linux/shar.md @@ -0,0 +1,24 @@ +# shar + +> Create a shell archive. +> More information: . + +- Create a shell script that when executed extracts the given files from itself: + +`shar --vanilla-operation {{path/to/file1 path/to/file2 ...}} > {{path/to/archive.sh}}` + +- Compress the files in the archive: + +`shar --compactor {{xz}} {{path/to/file1 path/to/file2 ...}} > {{path/to/archive.sh}}` + +- Treat all files as binary (i.e. `uuencode` everything): + +`shar --uuencode {{path/to/file1 path/to/file2 ...}} > {{path/to/archive.sh}}` + +- Treat all files as text (i.e. `uuencode` nothing): + +`shar --text-files {{path/to/file1 path/to/file2 ...}} > {{path/to/archive.sh}}` + +- Include a name and cut mark in the header comment of the archive: + +`shar --archive-name "{{My files}}" --cut-mark {{path/to/file1 path/to/file2 ...}} > {{path/to/archive.sh}}` diff --git a/pages/linux/shnsplit.md b/pages/linux/shnsplit.md new file mode 100644 index 0000000000..a5d929a72b --- /dev/null +++ b/pages/linux/shnsplit.md @@ -0,0 +1,20 @@ +# shnsplit + +> Splits audio files according to a `.cue` file. +> More information: . + +- Split a `.wav` + `.cue` file into multiple files: + +`shnsplit -f {{path/to/file.cue}} {{path/to/file.wav}}` + +- Show supported formats: + +`shnsplit -a` + +- Split a `.flac` file into multiple files: + +`shnsplit -f {{path/to/file.cue}} -o flac {{path/to/file.flac}}` + +- Split a `.wav` file into files of the form "track-number - album - title": + +`shnsplit -f {{path/to/file.cue}} {{path/to/file.wav}} -t "%n - %a - %t` diff --git a/pages/linux/shntool-split.md b/pages/linux/shntool-split.md new file mode 100644 index 0000000000..558de40d7f --- /dev/null +++ b/pages/linux/shntool-split.md @@ -0,0 +1,7 @@ +# shntool split + +> This command is an alias of `shnsplit`. + +- View documentation for the original command: + +`tldr shnsplit` diff --git a/pages/linux/slapt-get.md b/pages/linux/slapt-get.md index 2c8b68bcb3..6afccef601 100644 --- a/pages/linux/slapt-get.md +++ b/pages/linux/slapt-get.md @@ -10,11 +10,11 @@ - Install a package, or update it to the latest available version: -`slapt-get --install {{package_name}}` +`slapt-get --install {{package}}` - Remove a package: -`slapt-get --remove {{package_name}}` +`slapt-get --remove {{package}}` - Upgrade all installed packages to their latest available versions: @@ -22,8 +22,8 @@ - Locate packages by the package name, disk set, or version: -`slapt-get --search {{package_name}}` +`slapt-get --search {{query}}` - Show information about a package: -`slapt-get --show {{package_name}}` +`slapt-get --show {{package}}` diff --git a/pages/linux/sleep.md b/pages/linux/sleep.md new file mode 100644 index 0000000000..45c67647aa --- /dev/null +++ b/pages/linux/sleep.md @@ -0,0 +1,20 @@ +# sleep + +> Delay for a specified amount of time. +> More information: . + +- Delay in seconds: + +`sleep {{seconds}}` + +- Delay in [m]inutes. (Other units [d]ay, [h]our, [s]econd, [inf]inity can also be used): + +`sleep {{minutes}}m` + +- Delay for 1 [d]ay 3 [h]ours: + +`sleep 1d 3h` + +- Execute a specific command after 20 [m]inutes delay: + +`sleep 20m && {{command}}` diff --git a/pages/linux/slop.md b/pages/linux/slop.md index d43f99c4ef..923427f3c0 100644 --- a/pages/linux/slop.md +++ b/pages/linux/slop.md @@ -3,7 +3,7 @@ > Get a selection of the screen. > More information: . -- Wait for the user to make a selection and output its geometry to standard output: +- Wait for the user to make a selection and output its geometry to `stdout`: `slop` diff --git a/pages/linux/slurmctld.md b/pages/linux/slurmctld.md new file mode 100644 index 0000000000..078c48a8a2 --- /dev/null +++ b/pages/linux/slurmctld.md @@ -0,0 +1,24 @@ +# slurmctld + +> Monitor all other Slurm daemons and resources, accept work (jobs), and allocate resources to those jobs. +> More information: . + +- Clear all previous `slurmctld` states from its last checkpoint: + +`slurmctld -c` + +- Set the daemon's nice value to the specified value, typically a negative number: + +`slurmctld -n {{value}}` + +- Write log messages to the specified file: + +`slurmctld -L {{path/to/output_file}}` + +- Display help: + +`slurmctld -h` + +- Display version: + +`slurmctld -V` diff --git a/pages/linux/slurmd.md b/pages/linux/slurmd.md new file mode 100644 index 0000000000..7b2f6a24b5 --- /dev/null +++ b/pages/linux/slurmd.md @@ -0,0 +1,24 @@ +# slurmd + +> Monitors all tasks running on the compute node, accepts tasks, launches tasks, and kills running tasks upon request. +> More information: . + +- Report node rebooted when daemon restarted (Used for testing purposes): + +`slurmd -b` + +- Run the daemon with the given nodename: + +`slurmd -N {{nodename}}` + +- Write log messages to the specified file: + +`slurmd -L {{path/to/output_file}}` + +- Read configuration from the specified file: + +`slurmd -f {{path/to/file}}` + +- Display help: + +`slurmd -h` diff --git a/pages/linux/slurmdbd.md b/pages/linux/slurmdbd.md new file mode 100644 index 0000000000..763b90902c --- /dev/null +++ b/pages/linux/slurmdbd.md @@ -0,0 +1,20 @@ +# slurmdbd + +> Provides a secure enterprise-wide interface to a database for Slurm. +> More information: . + +- Set the daemon's nice value to the specified value, typically a negative number: + +`slurmdbd -n {{value}}` + +- Change the working directory of `slurmdbd` to the LogFile path or to `/var/tmp`: + +`slurmdbd -s` + +- Display help: + +`slurmdbd -h` + +- Display version: + +`slurmdbd -V` diff --git a/pages/linux/slurmrestd.md b/pages/linux/slurmrestd.md new file mode 100644 index 0000000000..d43bce6a45 --- /dev/null +++ b/pages/linux/slurmrestd.md @@ -0,0 +1,28 @@ +# slurmrestd + +> Interface to Slurm via REST API. It can be used in two modes: *Inetd Mode* & *Listen Mode*. +> More information: . + +- Change the group ID (and drop supplemental groups) before processing client requests: + +`slurmrestd --g {{group_id}} {{[host]:port | unix:/path/to/socket}}` + +- Comma-delimited list of authentication plugins to load: + +`slurmrestd -a {{authentication_plugins}} {{[host]:port | unix:/path/to/socket}}` + +- Read Slurm configuration from the specified file: + +`slurmrestd -f {{path/to/file}}` + +- Change user ID before processing client request: + +`slurmrestd -u {{user_id}}` + +- Display help: + +`slurmrestd -h` + +- Display version: + +`slurmrestd -V` diff --git a/pages/linux/slurmstepd.md b/pages/linux/slurmstepd.md new file mode 100644 index 0000000000..926cddbfe2 --- /dev/null +++ b/pages/linux/slurmstepd.md @@ -0,0 +1,9 @@ +# slurmstepd + +> Slurm daemon for managing and monitoring individual job steps within a multi-step job. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`slurmstepd` diff --git a/pages/linux/smbnetfs.md b/pages/linux/smbnetfs.md new file mode 100644 index 0000000000..9a24bc3d3d --- /dev/null +++ b/pages/linux/smbnetfs.md @@ -0,0 +1,8 @@ +# smbnetfs + +> Mount SMB shares interactively. +> More information: . + +- Make shares available at `mountpoint`: + +`smbnetfs {{mountpoint}}` diff --git a/pages/linux/snake4.md b/pages/linux/snake4.md index e60aadf47a..6a1640fa71 100644 --- a/pages/linux/snake4.md +++ b/pages/linux/snake4.md @@ -1,7 +1,7 @@ # snake4 > Snake game in the terminal. -> More information: . +> More information: . - Start a snake game: diff --git a/pages/linux/snap.md b/pages/linux/snap.md index 3df6f1031f..783f7f62f3 100644 --- a/pages/linux/snap.md +++ b/pages/linux/snap.md @@ -1,24 +1,24 @@ # snap -> Tool for managing the "snap" self-contained software packages. -> Similar to what `apt` is for ".deb". +> Manage the "snap" self-contained software packages. +> Similar to what `apt` is for `.deb`. > More information: . - Search for a package: -`snap find {{package_name}}` +`snap find {{query}}` - Install a package: -`snap install {{package_name}}` +`snap install {{package}}` - Update a package: -`snap refresh {{package_name}}` +`snap refresh {{package}}` - Update a package to another channel (track, risk, or branch): -`snap refresh {{package_name}} --channel={{channel}}` +`snap refresh {{package}} --channel={{channel}}` - Update all packages: @@ -30,7 +30,7 @@ - Uninstall a package: -`snap remove {{package_name}}` +`snap remove {{package}}` - Check for recent snap changes in the system: diff --git a/pages/linux/sqfscat.md b/pages/linux/sqfscat.md new file mode 100644 index 0000000000..58000b772f --- /dev/null +++ b/pages/linux/sqfscat.md @@ -0,0 +1,8 @@ +# sqfscat + +> Concatenate files from a squashfs filesystem and print them to `stdout`. +> More information: . + +- Display the contents of one or more files from a squashfs filesystem: + +`sqfscat {{filesystem.squashfs}} {{file1 file2 ...}}` diff --git a/pages/linux/sqfstar.md b/pages/linux/sqfstar.md new file mode 100644 index 0000000000..a8c304d196 --- /dev/null +++ b/pages/linux/sqfstar.md @@ -0,0 +1,24 @@ +# sqfstar + +> Create a squashfs filesystem from a tar archive. +> More information: . + +- Create a squashfs filesystem (compressed using `gzip` by default) from an uncompressed tar archive: + +`sqfstar {{filesystem.squashfs}} < {{archive.tar}}` + +- Create a squashfs filesystem from a tar archive compressed with `gzip`, and [comp]ress the filesystem using a specific algorithm: + +`zcat {{archive.tar.gz}} | sqfstar -comp {{gzip|lzo|lz4|xz|zstd|lzma}} {{filesystem.squashfs}}` + +- Create a squashfs filesystem from a tar archive compressed with `xz`, excluding some of the files: + +`xzcat {{archive.tar.xz}} | sqfstar {{filesystem.squashfs}} {{file1 file2 ...}}` + +- Create a squashfs filesystem from a tar archive compressed with `zstd`, excluding files ending with `.gz`: + +`zstdcat {{archive.tar.zst}} | sqfstar {{filesystem.squashfs}} "{{*.gz}}"` + +- Create a squashfs filesystem from a tar archive compressed with `lz4`, excluding files matching a regular expression: + +`lz4cat {{archive.tar.lz4}} | sqfstar {{filesystem.squashfs}} -regex "{{regular_expression}}"` diff --git a/pages/linux/ss.md b/pages/linux/ss.md index 6c43ce84a4..22f5d9bbf3 100644 --- a/pages/linux/ss.md +++ b/pages/linux/ss.md @@ -30,3 +30,7 @@ - Show all TCP IPv4 sockets locally connected on the subnet 192.168.0.0/16: `ss -4t src {{192.168/16}}` + +- Kill IPv4 or IPv6 Socket Connection with destination IP 192.168.1.17 and destination port 8080: + +`ss --kill dst {{192.168.1.17}} dport = {{8080}}` diff --git a/pages/linux/stegsnow.md b/pages/linux/stegsnow.md new file mode 100644 index 0000000000..3d0c8e7922 --- /dev/null +++ b/pages/linux/stegsnow.md @@ -0,0 +1,28 @@ +# stegsnow + +> Steganography tool for concealing and extracting messages in text files encoded as tabs and spaces. +> More information: . + +- Extract [m]essage from file: + +`stegsnow {{path/to/file.txt}}` + +- Extract [C]ompressed and [p]assword protected [m]essage from file: + +`stegsnow -C -p {{password}} {{path/to/file.txt}}` + +- Determine approximate [S]torage capacity with line [l]ength less than 72 for file: + +`stegsnow -S -l 72 {{path/to/file.txt}}` + +- Conceal [m]essage in text from file and save to result: + +`stegsnow -m '{{message}}' {{path/to/file.txt}} {{path/to/result.txt}}` + +- Conceal message [f]ile content [C]ompressed in text from file and save to result: + +`stegsnow -C -f '{{path/to/message.txt}}' {{path/to/file.txt}} {{path/to/result.txt}}` + +- Conceal [m]essage [C]ompressed and [p]assword protected in text from file and save to result: + +`stegsnow -C -p {{password}} -m '{{message}}' {{path/to/file.txt}} {{path/to/result.txt}}` diff --git a/pages/linux/swaplabel.md b/pages/linux/swaplabel.md new file mode 100644 index 0000000000..f5272a3408 --- /dev/null +++ b/pages/linux/swaplabel.md @@ -0,0 +1,17 @@ +# swaplabel + +> Print or change the label or UUID of a swap area. +> Note: `path/to/file` can either point to a regular file or a swap partition. +> More information: . + +- Display the current label and UUID of a swap area: + +`swaplabel {{path/to/file}}` + +- Set the label of a swap area: + +`swaplabel --label {{new_label}} {{path/to/file}}` + +- Set the UUID of a swap area (you can generate a UUID using `uuidgen`): + +`swaplabel --uuid {{new_uuid}} {{path/to/file}}` diff --git a/pages/linux/swapoff.md b/pages/linux/swapoff.md index a1837c14f7..266c772c0c 100644 --- a/pages/linux/swapoff.md +++ b/pages/linux/swapoff.md @@ -1,20 +1,17 @@ # swapoff -> Disables device or file for swapping. +> Disable devices and files for swapping. +> Note: `path/to/file` can either point to a regular file or a swap partition. > More information: . -- Disable a given swap partition: - -`swapoff {{/dev/sdb7}}` - -- Disable a given swap file: +- Disable a given swap area: `swapoff {{path/to/file}}` -- Disable all swap areas: +- Disable all swap areas in `/proc/swaps`: -`swapoff -a` +`swapoff --all` -- Disable swap by label of a device or file: +- Disable a swap partition by its label: -`swapoff -L {{swap1}}` +`swapoff -L {{label}}` diff --git a/pages/linux/swapon.md b/pages/linux/swapon.md index 9ea999c4fa..59212e4ea3 100644 --- a/pages/linux/swapon.md +++ b/pages/linux/swapon.md @@ -1,24 +1,21 @@ # swapon -> Enables device or file for swapping. +> Enable devices and files for swapping. +> Note: `path/to/file` can either point to a regular file or a swap partition. > More information: . -- Get swap information: +- Show swap information: -`swapon -s` +`swapon` -- Enable a given swap partition: - -`swapon {{/dev/sdb7}}` - -- Enable a given swap file: +- Enable a given swap area: `swapon {{path/to/file}}` -- Enable all swap areas: +- Enable all swap areas specified in `/etc/fstab` except those with the `noauto` option: -`swapon -a` +`swapon --all` -- Enable swap by label of a device or file: +- Enable a swap partition by its label: -`swapon -L {{swap1}}` +`swapon -L {{label}}` diff --git a/pages/linux/swaylock.md b/pages/linux/swaylock.md new file mode 100644 index 0000000000..7ac102209d --- /dev/null +++ b/pages/linux/swaylock.md @@ -0,0 +1,36 @@ +# swaylock + +> Screen locking utility for Wayland compositors. +> More information: . + +- Lock the screen showing a white background: + +`swaylock` + +- Lock the screen with a simple color background (rrggbb format): + +`swaylock --color {{0000ff}}` + +- Lock the screen to a PNG background: + +`swaylock --image {{path/to/file.png}}` + +- Lock the screen and disable the unlock indicator (removes feedback on keypress): + +`swaylock --no-unlock-indicator` + +- Lock the screen and don't hide the mouse pointer: + +`swaylock --pointer {{default}}` + +- Lock the screen to a PNG background tiled over all monitors: + +`swaylock --image {{path/to/file.png}} --tiling` + +- Lock the screen and show the number of failed login attempts: + +`swaylock --show-failed-attempts` + +- Load configuration from a file: + +`swaylock --config {{path/to/config}}` diff --git a/pages/linux/sxiv.md b/pages/linux/sxiv.md index 3a25e2a57c..21bcab1b4a 100644 --- a/pages/linux/sxiv.md +++ b/pages/linux/sxiv.md @@ -11,7 +11,7 @@ `sxiv -f {{path/to/file}}` -- Open a newline-separated list of images, reading filenames from standard input: +- Open a newline-separated list of images, reading filenames from `stdin`: `echo {{path/to/file}} | sxiv -i` diff --git a/pages/linux/synoupgrade.md b/pages/linux/synoupgrade.md index b5cc22ec5f..f8754de7bd 100644 --- a/pages/linux/synoupgrade.md +++ b/pages/linux/synoupgrade.md @@ -1,6 +1,6 @@ # synoupgrade -> Upgrade a Synology DiskStation Manager (DSM) from the command-line. +> Upgrade Synology DiskStation Manager (DSM) - the Synology NAS operating system. > More information: . - Check if upgrades are available: diff --git a/pages/linux/systemd-ac-power.md b/pages/linux/systemd-ac-power.md new file mode 100644 index 0000000000..a17cf26f15 --- /dev/null +++ b/pages/linux/systemd-ac-power.md @@ -0,0 +1,12 @@ +# systemd-ac-power + +> Report whether the computer is connected to an external power source. +> More information: . + +- Silently check and return a 0 status code when running on AC power, and a non-zero code otherwise: + +`systemd-ac-power` + +- Additionally print `yes` or `no` to `stdout`: + +`systemd-ac-power --verbose` diff --git a/pages/linux/systemd-analyze.md b/pages/linux/systemd-analyze.md index 70ccda1cf3..485867109c 100644 --- a/pages/linux/systemd-analyze.md +++ b/pages/linux/systemd-analyze.md @@ -2,9 +2,9 @@ > Analyze and debug system manager. > Show timing details about the boot process of units (services, mount points, devices, sockets). -> More information: . +> More information: . -- List time of each unit to start up: +- List all running units, ordered by the time they took to initialize: `systemd-analyze blame` diff --git a/pages/linux/systemd-ask-password.md b/pages/linux/systemd-ask-password.md new file mode 100644 index 0000000000..b8f57c3528 --- /dev/null +++ b/pages/linux/systemd-ask-password.md @@ -0,0 +1,28 @@ +# systemd-ask-password + +> Query the user for a system password. +> More information: . + +- Query a system password with a specific message: + +`systemd-ask-password "{{message}}"` + +- Specify an identifier for the password query: + +`systemd-ask-password --id={{identifier}} "{{message}}"` + +- Use a kernel keyring key name as a cache for the password: + +`systemd-ask-password --keyname={{key_name}} "{{message}}"` + +- Set a custom timeout for the password query: + +`systemd-ask-password --timeout={{seconds}} "{{message}}"` + +- Force the use of an agent system and never ask on current TTY: + +`systemd-ask-password --no-tty "{{message}}"` + +- Store a password in the kernel keyring without displaying it: + +`systemd-ask-password --no-output --keyname={{key_name}} "{{message}}"` diff --git a/pages/linux/systemd-cat.md b/pages/linux/systemd-cat.md new file mode 100644 index 0000000000..1da2f71147 --- /dev/null +++ b/pages/linux/systemd-cat.md @@ -0,0 +1,12 @@ +# systemd-cat + +> Connect a pipeline or program's output streams with the systemd journal. +> More information: . + +- Write the output of the specified command to the journal (both output streams are captured): + +`systemd-cat {{command}}` + +- Write the output of a pipeline to the journal (`stderr` stays connected to the terminal): + +`{{command}} | systemd-cat` diff --git a/pages/linux/systemd-cgls.md b/pages/linux/systemd-cgls.md new file mode 100644 index 0000000000..e7ca91c2ba --- /dev/null +++ b/pages/linux/systemd-cgls.md @@ -0,0 +1,16 @@ +# systemd-cgls + +> Show the contents of the selected Linux control group hierarchy in a tree. +> More information: . + +- Display the whole control group hierarchy on your system: + +`systemd-cgls` + +- Display a control group tree of a specific resource controller: + +`systemd-cgls {{cpu|memory|io}}` + +- Display the control group hierarchy of one or more systemd units: + +`systemd-cgls --unit {{unit1 unit2 ...}}` diff --git a/pages/linux/systemd-cgtop.md b/pages/linux/systemd-cgtop.md new file mode 100644 index 0000000000..62b844e297 --- /dev/null +++ b/pages/linux/systemd-cgtop.md @@ -0,0 +1,25 @@ +# systemd-cgtop + +> Show the top control groups of the local Linux control group hierarchy, ordered by their CPU, memory, or disk I/O load. +> See also: `top`. +> More information: . + +- Start an interactive view: + +`systemd-cgtop` + +- Change the sort order: + +`systemd-cgtop --order={{cpu|memory|path|tasks|io}}` + +- Show the CPU usage by time instead of percentage: + +`systemd-cgtop --cpu=percentage` + +- Change the update interval in seconds (or one of these time units: `ms`, `us`, `min`): + +`systemd-cgtop --delay={{interval}}` + +- Only count userspace processes (without kernel threads): + +`systemd-cgtop -P` diff --git a/pages/linux/systemd-creds.md b/pages/linux/systemd-creds.md new file mode 100644 index 0000000000..16a326cf6d --- /dev/null +++ b/pages/linux/systemd-creds.md @@ -0,0 +1,24 @@ +# systemd-creds + +> List, show, encrypt and decrypt service credentials. +> More information: . + +- Encrypt a file and set a specific name: + +`systemd-creds encrypt --name={{name}} {{path/to/input_file}} {{path/to/output}}` + +- Decrypt the file again: + +`systemd-creds decrypt {{path/to/input_file}} {{path/to/output_file}}` + +- Encrypt text from `stdin`: + +`echo -n {{text}} | systemd-creds encrypt --name={{name}} - {{path/to/output}}` + +- Encrypt the text and append it to the service file (the credentials will be available in `$CREDENTIALS_DIRECTORY`): + +`echo -n {{text}} | systemd-creds encrypt --name={{name}} --pretty - - >> {{service}}` + +- Create a credential that is only valid until the given timestamp: + +`systemd-creds encrypt --not-after="{{timestamp}}" {{path/to/input_file}} {{path/to/output_file}}` diff --git a/pages/linux/systemd-cryptenroll.md b/pages/linux/systemd-cryptenroll.md new file mode 100644 index 0000000000..47ccc8a068 --- /dev/null +++ b/pages/linux/systemd-cryptenroll.md @@ -0,0 +1,37 @@ +# systemd-cryptenroll + +> Interactively enroll or remove methods used to unlock LUKS2-encrypted partitions/block devices. +> In order to allow a partition to be unlocked during system boot using something other than a Password, also update the crypttab file and initramfs. +> More information: . + +- Unlock using Password, and enroll a new/additional Password: + +`systemd-cryptenroll --password {{path/to/luks2_block_device}}` + +- Unlock using Password, and enroll a new/additional Recovery Key: + +`systemd-cryptenroll --recovery-key {{path/to/luks2_block_device}}` + +- Unlock using Password, and list available or enroll a new/additional PKCS#11 Token: + +`systemd-cryptenroll --pkcs11-token-uri={{list|auto|pkcs11_token_uri}} {{path/to/luks2_block_device}}` + +- Unlock using Password, and list available or enroll a new FIDO2-Device (using PIN and Presence/Touch if available): + +`systemd-cryptenroll --fido2-device={{list|auto|path/to/fido2_hidraw_device}} {{path/to/luks2_block_device}}` + +- Unlock using Password, and enroll a new FIDO2-Device with User Verification (Biometrics): + +`systemd-cryptenroll --fido2-device={{auto|path/to/fido2_hidraw_device}} --fido2-with-user-verification=yes {{path/to/luks2_block_device}}` + +- Unlock using a FIDO2-Device, and enroll a new FIDO2-Device: + +`systemd-cryptenroll --unlock-fido2-device={{path/to/fido2_hidraw_unlock_device}} --fido2-device={{path/to/fido2_hidraw_enroll_device}} {{path/to/luks2_block_device}}` + +- Unlock using Password, and enroll a TPM2 Security Chip (only secure-boot-policy PCR) and require additional alphanumeric PIN: + +`systemd-cryptenroll --tpm2-device={{auto|path/to/tpm2_block_device}} --tpm2-with-pin=yes {{path/to/luks2_block_device}}` + +- Unlock using Password, and remove all empty Passwords/all Passwords/all FIDO2-Devices/all PKCS#11 Tokens/all TMP2 Security Chips/all Recovery-Keys/all Methods: + +`systemd-cryptenroll --wipe-slots={{empty|password|fido2|pkcs#11|tpm2|recovery|all}} {{path/to/luks2_block_device}}` diff --git a/pages/linux/systemd-delta.md b/pages/linux/systemd-delta.md new file mode 100644 index 0000000000..9a53243c43 --- /dev/null +++ b/pages/linux/systemd-delta.md @@ -0,0 +1,20 @@ +# systemd-delta + +> Find overridden systemd-related configuration files. +> More information: . + +- Show all overridden configuration files: + +`systemd-delta` + +- Show only files of specific types (comma-separated list): + +`systemd-delta --type {{masked|equivalent|redirected|overridden|extended|unchanged}}` + +- Show only files whose path starts with the specified prefix (Note: a prefix is a directory containing subdirectories with systemd configuration files): + +`systemd-delta {{/etc|/run|/usr/lib|...}}` + +- Further restrict the search path by adding a suffix (the prefix is optional): + +`systemd-delta {{prefix}}/{{tmpfiles.d|sysctl.d|systemd/system|...}}` diff --git a/pages/linux/systemd-detect-virt.md b/pages/linux/systemd-detect-virt.md new file mode 100644 index 0000000000..140e27a943 --- /dev/null +++ b/pages/linux/systemd-detect-virt.md @@ -0,0 +1,24 @@ +# systemd-detect-virt + +> Detect execution in a virtualized environment. +> More information: . + +- List detectable virtualization technologies: + +`systemd-detect-virt --list` + +- Detect virtualization, print the result and return a zero status code when running in a VM or a container, and a non-zero code otherwise: + +`systemd-detect-virt` + +- Silently check without printing anything: + +`systemd-detect-virt --quiet` + +- Only detect container virtualization: + +`systemd-detect-virt --container` + +- Only detect hardware virtualization: + +`systemd-detect-virt --vm` diff --git a/pages/linux/systemd-escape.md b/pages/linux/systemd-escape.md new file mode 100644 index 0000000000..cc6e7630b5 --- /dev/null +++ b/pages/linux/systemd-escape.md @@ -0,0 +1,24 @@ +# systemd-escape + +> Escape strings for usage in systemd unit names. +> More information: . + +- Escape the given text: + +`systemd-escape {{text}}` + +- Reverse the escaping process: + +`systemd-escape --unescape {{text}}` + +- Treat the given text as a path: + +`systemd-escape --path {{text}}` + +- Append the given suffix to the escaped text: + +`systemd-escape --suffix {{suffix}} {{text}}` + +- Use a template and inject the escaped text: + +`systemd-escape --template {{template}} {{text}}` diff --git a/pages/linux/systemd-firstboot.md b/pages/linux/systemd-firstboot.md new file mode 100644 index 0000000000..5eba8692f4 --- /dev/null +++ b/pages/linux/systemd-firstboot.md @@ -0,0 +1,36 @@ +# systemd-firstboot + +> Initialize basic system settings on or before the first boot-up of a system. +> More information: . + +- Operate on the specified directory instead of the root directory of the host system: + +`sudo systemd-firstboot --root={{path/to/root_directory}}` + +- Set the system keyboard layout: + +`sudo systemd-firstboot --keymap={{keymap}}` + +- Set the system hostname: + +`sudo systemd-firstboot --hostname={{hostname}}` + +- Set the root user's password: + +`sudo systemd-firstboot --root-password={{password}}` + +- Prompt the user interactively for a specific basic setting: + +`sudo systemd-firstboot --prompt={{setting}}` + +- Force writing configuration even if the relevant files already exist: + +`sudo systemd-firstboot --force` + +- Remove all existing files that are configured by `systemd-firstboot`: + +`sudo systemd-firstboot --reset` + +- Remove the password of the system's root user: + +`sudo systemd-firstboot --delete-root-password` diff --git a/pages/linux/systemd-hwdb.md b/pages/linux/systemd-hwdb.md new file mode 100644 index 0000000000..12f17c4517 --- /dev/null +++ b/pages/linux/systemd-hwdb.md @@ -0,0 +1,24 @@ +# systemd-hwdb + +> Hardware database management tool. +> More information: . + +- Update the binary hardware database in `/etc/udev`: + +`systemd-hwdb update` + +- Query the hardware database and print the result for a specific modalias: + +`systemd-hwdb query {{modalias}}` + +- Update the binary hardware database, returning a non-zero exit value on any parsing error: + +`systemd-hwdb --strict update` + +- Update the binary hardware database in `/usr/lib/udev`: + +`systemd-hwdb --usr update` + +- Update the binary hardware database in the specified root path: + +`systemd-hwdb --root={{path/to/root}} update` diff --git a/pages/linux/systemd-inhibit.md b/pages/linux/systemd-inhibit.md new file mode 100644 index 0000000000..454b76e09f --- /dev/null +++ b/pages/linux/systemd-inhibit.md @@ -0,0 +1,29 @@ +# systemd-inhibit + +> Prohibit the system from entering certain power states. +> Inhibitor locks may be used to block or delay system sleep and shutdown requests as well as automatic idle handling. +> More information: . + +- List all active inhibition locks and the reasons for their creation: + +`systemd-inhibit --list` + +- Block system shutdown for a specified number of seconds with the `sleep` command: + +`systemd-inhibit --what shutdown sleep {{5}}` + +- Keep the system from sleeping or idling until the download is complete: + +`systemd-inhibit --what sleep:idle wget {{https://example.com/file}}` + +- Ignore lid close switch until the script exits: + +`systemd-inhibit --what sleep:handle-lid-switch {{path/to/script}}` + +- Ignore power button press while command is running: + +`systemd-inhibit --what handle-power-key {{command}}` + +- Describe who and why created the inhibitor (default: the command and its arguments for `--who` and `Unknown reason` for `--why`): + +`systemd-inhibit --who {{$USER}} --why {{reason}} --what {{operation}} {{command}}` diff --git a/pages/linux/systemd-mount.md b/pages/linux/systemd-mount.md new file mode 100644 index 0000000000..5da8b0c648 --- /dev/null +++ b/pages/linux/systemd-mount.md @@ -0,0 +1,32 @@ +# systemd-mount + +> Establish and destroy transient mount or auto-mount points. +> More information: . + +- Mount a file system (image or block device) at `/run/media/system/LABEL` where LABEL is the filesystem label or the device name if there is no label: + +`systemd-mount {{path/to/file_or_device}}` + +- Mount a file system (image or block device) at a specific location: + +`systemd-mount {{path/to/file_or_device}} {{path/to/mount_point}}` + +- Show a list of all local, known block devices with file systems that may be mounted: + +`systemd-mount --list` + +- Create an automount point that mounts the actual file system at the time of first access: + +`systemd-mount --automount=yes {{path/to/file_or_device}}` + +- Unmount one or more devices: + +`systemd-mount --umount {{path/to/mount_point_or_device1}} {{path/to/mount_point_or_device2}}` + +- Mount a file system (image or block device) with a specific file system type: + +`systemd-mount --type={{file_system_type}} {{path/to/file_or_device}} {{path/to/mount_point}}` + +- Mount a file system (image or block device) with additional mount options: + +`systemd-mount --options={{mount_options}} {{path/to/file_or_device}} {{path/to/mount_point}}` diff --git a/pages/linux/systemd-notify.md b/pages/linux/systemd-notify.md new file mode 100644 index 0000000000..19a5288154 --- /dev/null +++ b/pages/linux/systemd-notify.md @@ -0,0 +1,17 @@ +# systemd-notify + +> Notify the service manager about start-up completion and other daemon status changes. +> This command is useless outside systemd service scripts. +> More information: . + +- Notify systemd that the service has completed its initialization and is fully started. It should be invoked when the service is ready to accept incoming requests: + +`systemd-notify --booted` + +- Signal to systemd that the service is ready to handle incoming connections or perform its tasks: + +`systemd-notify --ready` + +- Provide a custom status message to systemd (this information is shown by `systemctl status`): + +`systemd-notify --status="{{Add custom status message here...}}"` diff --git a/pages/linux/systemd-path.md b/pages/linux/systemd-path.md new file mode 100644 index 0000000000..eef757e459 --- /dev/null +++ b/pages/linux/systemd-path.md @@ -0,0 +1,20 @@ +# systemd-path + +> List and query system and user paths. +> More information: . + +- Display a list of known paths and their current values: + +`systemd-path` + +- Query the specified path and display its value: + +`systemd-path "{{path_name}}"` + +- Suffix printed paths with `suffix_string`: + +`systemd-path --suffix {{suffix_string}}` + +- Print a short version string and then exit: + +`systemd-path --version` diff --git a/pages/linux/systemd-repart.md b/pages/linux/systemd-repart.md new file mode 100644 index 0000000000..706ffe6d13 --- /dev/null +++ b/pages/linux/systemd-repart.md @@ -0,0 +1,18 @@ +# systemd-repart + +> Automatically grow and add partitions. +> Grows and adds partitions based on the configuration files described in repart.d. +> Does not automatically resize file system on partition. See systemd-growfs to extend file system. +> More information: . + +- Grow the root partition (/) to all available disk space: + +`systemd-repart` + +- View changes without applying: + +`systemd-repart --dry-run=yes` + +- Grow root partition size to 10 gigabytes: + +`systemd-repart --size=10G --root /` diff --git a/pages/linux/systemd-run.md b/pages/linux/systemd-run.md new file mode 100644 index 0000000000..0ffca042a7 --- /dev/null +++ b/pages/linux/systemd-run.md @@ -0,0 +1,36 @@ +# systemd-run + +> Run programs in transient scope units, service units, or path-, socket-, or timer-triggered service units. +> More information: . + +- Start a transient service: + +`sudo systemd-run {{command}} {{argument1 argument2 ...}}` + +- Start a transient service under the service manager of the current user (no privileges): + +`systemd-run --user {{command}} {{argument1 argument2 ...}}` + +- Start a transient service with a custom unit name and description: + +`sudo systemd-run --unit={{name}} --description={{string}} {{command}} {{argument1 argument2 ...}}` + +- Start a transient service that does not get cleaned up after it terminates with a custom environment variable: + +`sudo systemd-run --remain-after-exit --set-env={{name}}={{value}} {{command}} {{argument1 argument2 ...}}` + +- Start a transient timer that periodically runs its transient service (see `man systemd.time` for calendar event format): + +`sudo systemd-run --on-calendar={{calendar_event}} {{command}} {{argument1 argument2 ...}}` + +- Share the terminal with the program (allowing interactive input/output) and make sure the execution details remain after the program exits: + +`systemd-run --remain-after-exit --pty {{command}}` + +- Set properties (e.g. CPUQuota, MemoryMax) of the process and wait until it exits: + +`systemd-run --property MemoryMax={{memory_in_bytes}} --property CPUQuota={{percentage_of_CPU_time}}% --wait {{command}}` + +- Use the program in a shell pipeline: + +`{{command1}} | systemd-run --pipe {{command2}} | {{command3}}` diff --git a/pages/linux/systemd-sysext.md b/pages/linux/systemd-sysext.md new file mode 100644 index 0000000000..df6c7f4d53 --- /dev/null +++ b/pages/linux/systemd-sysext.md @@ -0,0 +1,24 @@ +# systemd-sysext + +> Activate or deactivate system extension images. +> More information: . + +- List installed extension images: + +`systemd-sysext list` + +- Merge system extension images into `/usr/` and `/opt/`: + +`systemd-sysext merge` + +- Check the current merge status: + +`systemd-sysext status` + +- Unmerge all currently installed system extension images from `/usr/` and `/opt/`: + +`systemd-sysext unmerge` + +- Refresh system extension images (a combination of unmerge and merge): + +`systemd-sysext refresh` diff --git a/pages/linux/systemd-sysusers.md b/pages/linux/systemd-sysusers.md new file mode 100644 index 0000000000..cf5246e0b7 --- /dev/null +++ b/pages/linux/systemd-sysusers.md @@ -0,0 +1,17 @@ +# systemd-sysusers + +> Create system users and groups. +> If the config file is not specified, files in the `sysusers.d` directories are used. +> More information: . + +- Create users and groups from a specific configuration file: + +`systemd-sysusers {{path/to/file}}` + +- Process configuration files and print what would be done without actually doing anything: + +`systemd-sysusers --dry-run {{path/to/file}}` + +- Print the contents of all config files (before each file, its name is printed as a comment): + +`systemd-sysusers --cat-config` diff --git a/pages/linux/systemd-tmpfiles.md b/pages/linux/systemd-tmpfiles.md new file mode 100644 index 0000000000..71105987e5 --- /dev/null +++ b/pages/linux/systemd-tmpfiles.md @@ -0,0 +1,25 @@ +# systemd-tmpfiles + +> Create, delete and clean up volatile and temporary files and directories. +> This command is automatically invoked on boot by systemd services, and running it manually is usually not needed. +> More information: . + +- Create files and directories as specified in the configuration: + +`systemd-tmpfiles --create` + +- Clean up files and directories with age parameters configured: + +`systemd-tmpfiles --clean` + +- Remove files and directories as specified in the configuration: + +`systemd-tmpfiles --remove` + +- Apply operations for user-specific configurations: + +`systemd-tmpfiles --create --user` + +- Execute lines marked for early boot: + +`systemd-tmpfiles --create --boot` diff --git a/pages/linux/systemd-tty-ask-password-agent.md b/pages/linux/systemd-tty-ask-password-agent.md new file mode 100644 index 0000000000..3aef167f54 --- /dev/null +++ b/pages/linux/systemd-tty-ask-password-agent.md @@ -0,0 +1,20 @@ +# systemd-tty-ask-password-agent + +> List or process pending systemd password requests. +> More information: . + +- List all currently pending system password requests: + +`systemd-tty-ask-password-agent --list` + +- Continuously process password requests: + +`systemd-tty-ask-password-agent --watch` + +- Process all currently pending system password requests by querying the user on the calling TTY: + +`systemd-tty-ask-password-agent --query` + +- Forward password requests to wall instead of querying the user on the calling TTY: + +`systemd-tty-ask-password-agent --wall` diff --git a/pages/linux/systemd-umount.md b/pages/linux/systemd-umount.md new file mode 100644 index 0000000000..d43fdb0748 --- /dev/null +++ b/pages/linux/systemd-umount.md @@ -0,0 +1,7 @@ +# systemd-umount + +> This command is an alias of `systemd-mount --umount`. + +- View documentation for the original command: + +`tldr systemd-mount` diff --git a/pages/linux/tc.md b/pages/linux/tc.md index 3456fa598e..82151f5af9 100644 --- a/pages/linux/tc.md +++ b/pages/linux/tc.md @@ -1,6 +1,6 @@ # tc -> Show / manipulate traffic control settings. +> Show/manipulate traffic control settings. > More information: . - Add constant network delay to outbound packages: @@ -17,7 +17,7 @@ - Limit bandwidth, burst rate and max latency: -`tc qdisc add dev eth0 root tbf rate {{max_bandwith_mb}}mbit burst {{max_burst_rate_kb}}kbit latency {{max_latency_before_drop_ms}}ms` +`tc qdisc add dev eth0 root tbf rate {{max_bandwidth_mb}}mbit burst {{max_burst_rate_kb}}kbit latency {{max_latency_before_drop_ms}}ms` - Show active traffic control policies: diff --git a/pages/linux/tcpick.md b/pages/linux/tcpick.md new file mode 100644 index 0000000000..c145916b42 --- /dev/null +++ b/pages/linux/tcpick.md @@ -0,0 +1,17 @@ +# tcpick + +> Packet sniffing and network traffic analysis tool. +> It can capture and display TCP connections and data. It can also monitor network traffic on a specific interface, host, or port. +> More information: . + +- Capture traffic on a specific [i]nterface, port and host:: + +`sudo tcpick -i {{interface}} -C -h {{host}} -p {{port}}` + +- Capture traffic on port 80 (HTTP) of a specific host: + +`sudo tcpick -i {{eth0}} -C -h {{192.168.1.100}} -p {{80}}` + +- Display help: + +`tcpick --help` diff --git a/pages/linux/terminator.md b/pages/linux/terminator.md index ff71d1caa9..08a1de9263 100644 --- a/pages/linux/terminator.md +++ b/pages/linux/terminator.md @@ -3,7 +3,7 @@ > Arrange multiple GNOME terminals in one window. > More information: . -- Start terminator window: +- Start `terminator` window: `terminator` diff --git a/pages/linux/tftp.md b/pages/linux/tftp.md new file mode 100644 index 0000000000..fedfc18fec --- /dev/null +++ b/pages/linux/tftp.md @@ -0,0 +1,32 @@ +# tftp + +> Trivial File Transfer Protocol client. +> More information: . + +- Connect to a TFTP server specifying its IP address and port: + +`tftp {{server_ip}} {{port}}` + +- Connect to a TFTP server and execute a TFTP [c]ommand: + +`tftp {{server_ip}} -c {{command}}` + +- Connect to a TFTP server using IPv6 and force originating port to be in [R]ange: + +`tftp {{server_ip}} -6 -R {{port}}:{{port}}` + +- Set the transfer mode to binary or ascii through the tftp client: + +`mode {{binary|ascii}}` + +- Download file from a server through the tftp client: + +`get {{file}}` + +- Upload file to a server through the tftp client: + +`put {{file}}` + +- Exit the tftp client: + +`quit` diff --git a/pages/linux/tod.md b/pages/linux/tod.md new file mode 100644 index 0000000000..11d2bb9f2a --- /dev/null +++ b/pages/linux/tod.md @@ -0,0 +1,33 @@ +# tod + +> A tiny Todoist client in Rust. +> It takes simple input and dumps it in your inbox or another project. Taking advantage of natural language processing to assign due dates, tags, etc. +> More information: . + +- Import your projects (this is necessary to enable project prompts): + +`tod project import` + +- Quickly create a task with due date: + +`tod --quickadd {{Buy more milk today}}` + +- Create a new task (you will be prompted for content and project): + +`tod task create` + +- Create a task in a project: + +`tod task create --content "{{Write more rust}}" --project {{code}}` + +- Get the next task for a project: + +`tod task next` + +- Get your work schedule: + +`tod task list --scheduled --project {{work}}` + +- Get all tasks for work: + +`tod task list --project {{work}}` diff --git a/pages/linux/toolbox-create.md b/pages/linux/toolbox-create.md index 14b7a7cc04..e839871e7e 100644 --- a/pages/linux/toolbox-create.md +++ b/pages/linux/toolbox-create.md @@ -17,8 +17,8 @@ - Create a `toolbox` container from a custom Fedora image: -`toolbox create --image {{registry.fedoraproject.org/fedora-toolbox:36}}` +`toolbox create --image {{registry.fedoraproject.org/fedora-toolbox:38}}` -- Create a `toolbox` container using the default image for Fedora 36: +- Create a `toolbox` container using the default image for Fedora 38: -`toolbox create --distro {{fedora}} --release {{f36}}` +`toolbox create --distro {{fedora}} --release {{f38}}` diff --git a/pages/linux/toolbox-enter.md b/pages/linux/toolbox-enter.md index c99a0b0e84..9018a2dd69 100644 --- a/pages/linux/toolbox-enter.md +++ b/pages/linux/toolbox-enter.md @@ -12,6 +12,6 @@ `toolbox enter --release {{release}}` -- Enter a toolbox container using the default image for Fedora 36: +- Enter a toolbox container using the default image for Fedora 38: -`toolbox enter --distro {{fedora}} --release {{f36}}` +`toolbox enter --distro {{fedora}} --release {{f38}}` diff --git a/pages/linux/toolbox-run.md b/pages/linux/toolbox-run.md index fd8352d35e..d459e49497 100644 --- a/pages/linux/toolbox-run.md +++ b/pages/linux/toolbox-run.md @@ -12,6 +12,6 @@ `toolbox run --distro {{distribution}} --release {{release}} {{command}}` -- Run `emacs` inside a `toolbox` container using the default image for Fedora 36: +- Run `emacs` inside a `toolbox` container using the default image for Fedora 38: -`toolbox run --distro {{fedora}} --release {{f36}} {{emacs}}` +`toolbox run --distro {{fedora}} --release {{f38}} {{emacs}}` diff --git a/pages/linux/toolbox.md b/pages/linux/toolbox.md index f1f316a635..e800d62bca 100644 --- a/pages/linux/toolbox.md +++ b/pages/linux/toolbox.md @@ -1,6 +1,6 @@ # toolbox -> Tool for containerized command line environments on Linux. +> Tool for containerized command-line environments on Linux. > Some subcommands such as `toolbox create` have their own usage documentation. > More information: . diff --git a/pages/linux/top.md b/pages/linux/top.md index 6bcb436192..a43b533354 100644 --- a/pages/linux/top.md +++ b/pages/linux/top.md @@ -3,7 +3,7 @@ > Display dynamic real-time information about running processes. > More information: . -- Start top: +- Start `top`: `top` diff --git a/pages/linux/trash.md b/pages/linux/trash.md index fdad9d3892..4827c37397 100644 --- a/pages/linux/trash.md +++ b/pages/linux/trash.md @@ -1,6 +1,6 @@ # trash -> A CLI for managing the trashcan / recycling bin. +> Manage the trashcan/recycling bin. > More information: . - Delete a file and send it to the trash: diff --git a/pages/linux/trayer.md b/pages/linux/trayer.md new file mode 100644 index 0000000000..9034df79ac --- /dev/null +++ b/pages/linux/trayer.md @@ -0,0 +1,28 @@ +# trayer + +> A lightweight GTK-2 based systray. +> More information: . + +- Run `trayer`: + +`trayer` + +- Position `trayer` to a specific edge: + +`trayer --edge {{left|right|top|bottom}}` + +- Provide a specific height and width of the panel (in pixels): + +`trayer --width {{10}} --height {{32}}` + +- Provide the width of the panel in pixels or percentages: + +`trayer --widthtype {{pixel|percent}} --width {{72}}` + +- Align `trayer` to a specific direction: + +`trayer --align {{left|center|right}}` + +- Provide spacing between icons (in pixels): + +`trayer --iconspacing {{10}}` diff --git a/pages/linux/ttyplot.md b/pages/linux/ttyplot.md index 0e724b3188..db8881acdb 100644 --- a/pages/linux/ttyplot.md +++ b/pages/linux/ttyplot.md @@ -1,6 +1,6 @@ # ttyplot -> A realtime plotting utility for the command line with data input from `stdin`. +> A realtime plotting utility for the command-line with data input from `stdin`. > More information: . - Plot the values `1`, `2` and `3` (`cat` prevents ttyplot to exit): diff --git a/pages/linux/tuxi.md b/pages/linux/tuxi.md index 538ddd2d24..3225585a8d 100644 --- a/pages/linux/tuxi.md +++ b/pages/linux/tuxi.md @@ -1,6 +1,6 @@ # tuxi -> A CLI tool that scrapes Google search results and SERPs that provides instant and concise answers. +> Scrape Google search results and SERPs and provide instant and concise answers. > More information: . - Make a search using Google: diff --git a/pages/linux/udisksctl.md b/pages/linux/udisksctl.md index d9224400c0..10b295bde1 100644 --- a/pages/linux/udisksctl.md +++ b/pages/linux/udisksctl.md @@ -1,6 +1,6 @@ # udisksctl -> A command-line program used to interact with the udisksd daemon process. +> Interact with `udisksd` to query and manipulate storage devices. > More information: . - Show high-level information about disk drives and block devices: diff --git a/pages/linux/ufw.md b/pages/linux/ufw.md index 73a526d30e..68a94ca29e 100644 --- a/pages/linux/ufw.md +++ b/pages/linux/ufw.md @@ -1,7 +1,7 @@ # ufw > Uncomplicated Firewall. -> Frontend for iptables aiming to make configuration of a firewall easier. +> Frontend for `iptables` aiming to make configuration of a firewall easier. > More information: . - Enable ufw: diff --git a/pages/linux/uncompress.md b/pages/linux/uncompress.md new file mode 100644 index 0000000000..4eb1e368b3 --- /dev/null +++ b/pages/linux/uncompress.md @@ -0,0 +1,20 @@ +# uncompress + +> Uncompress files compressed using the Unix `compress` command. +> More information: . + +- Uncompress specific files: + +`uncompress {{path/to/file1.Z path/to/file2.Z ...}}` + +- Uncompress specific files while ignoring non-existent ones: + +`uncompress -f {{path/to/file1.Z path/to/file2.Z ...}}` + +- Write to standard output (no files are changed and no `.Z` files are created): + +`uncompress -c {{path/to/file1.Z path/to/file2.Z ...}}` + +- Verbose mode (write to standard error about percentage reduction or expansion): + +`uncompress -v {{path/to/file1.Z path/to/file2.Z ...}}` diff --git a/pages/linux/unix2dos.md b/pages/linux/unix2dos.md index 397ffa1b47..50c650617d 100644 --- a/pages/linux/unix2dos.md +++ b/pages/linux/unix2dos.md @@ -6,8 +6,8 @@ - Change the line endings of a file: -`unix2dos {{filename}}` +`unix2dos {{path/to/file}}` - Create a copy with DOS-style line endings: -`unix2dos -n {{filename}} {{new_filename}}` +`unix2dos -n {{path/to/unix_file}} {{path/to/dos_file}}` diff --git a/pages/linux/unix2mac.md b/pages/linux/unix2mac.md index 2f7c68cbb8..731167205f 100644 --- a/pages/linux/unix2mac.md +++ b/pages/linux/unix2mac.md @@ -6,8 +6,8 @@ - Change the line endings of a file: -`unix2mac {{filename}}` +`unix2mac {{path/to/file}}` - Create a copy with macOS-style line endings: -`unix2mac -n {{filename}} {{new_filename}}` +`unix2mac -n {{path/to/unix_file}} {{path/to/mac_file}}` diff --git a/pages/linux/unsquashfs.md b/pages/linux/unsquashfs.md new file mode 100644 index 0000000000..2975a6b269 --- /dev/null +++ b/pages/linux/unsquashfs.md @@ -0,0 +1,28 @@ +# unsquashfs + +> Uncompress, extract and list files in squashfs filesystems. +> More information: . + +- Extract a squashfs filesystem to `squashfs-root` in the current working directory: + +`unsquashfs {{filesystem.squashfs}}` + +- Extract a squashfs filesystem to the specified directory: + +`unsquashfs -dest {{path/to/directory}} {{filesystem.squashfs}}` + +- Display the names of files as they are extracted: + +`unsquashfs -info {{filesystem.squashfs}}` + +- Display the names of files and their attributes as they are extracted: + +`unsquashfs -linfo {{filesystem.squashfs}}` + +- List files inside the squashfs filesystem (without extracting): + +`unsquashfs -ls {{filesystem.squashfs}}` + +- List files and their attributes inside the squashfs filesystem (without extracting): + +`unsquashfs -lls {{filesystem.squashfs}}` diff --git a/pages/linux/usbip.md b/pages/linux/usbip.md new file mode 100644 index 0000000000..5b432a783a --- /dev/null +++ b/pages/linux/usbip.md @@ -0,0 +1,36 @@ +# usbip + +> Use USB devices remotely. +> More information: . + +- List all local USB devices and their bus ID's: + +`usbip list --local` + +- Start a `usbip` daemon on the server: + +`systemctl start usbipd` + +- Bind a USB device to `usbip` on the server: + +`sudo usbip bind --busid={{bus_id}}` + +- Load the kernel module required by `usbip` on the client: + +`sudo modprobe vhci-hcd` + +- Attach to the `usbip` device on the client (bus ID is the same as on the server): + +`sudo usbip attach -r {{ip_address}} --busid={{bus_id}}` + +- List attached devices: + +`usbip port` + +- Detach from a device: + +`sudo usbip detach --port={{port}}` + +- Unbind a device: + +`usbip unbind --busid={{bus_id}}` diff --git a/pages/linux/userdbctl.md b/pages/linux/userdbctl.md new file mode 100644 index 0000000000..5a909e481d --- /dev/null +++ b/pages/linux/userdbctl.md @@ -0,0 +1,24 @@ +# userdbctl + +> Inspect users, groups and group memberships on the system. +> More information: . + +- List all known user records: + +`userdbctl user` + +- Show details of a specific user: + +`userdbctl user {{username}}` + +- List all known groups: + +`userdbctl group` + +- Show details of a specific group: + +`userdbctl group {{groupname}}` + +- List all services currently providing user/group definitions to the system: + +`userdbctl services` diff --git a/pages/linux/utmpdump.md b/pages/linux/utmpdump.md index eb7f3c2e34..96964341ae 100644 --- a/pages/linux/utmpdump.md +++ b/pages/linux/utmpdump.md @@ -3,7 +3,7 @@ > Dump and load btmp, utmp and wtmp accounting files. > More information: . -- Dump the `/var/log/wtmp` file to the standard output as plain text: +- Dump the `/var/log/wtmp` file to `stdout` as plain text: `utmpdump {{/var/log/wtmp}}` diff --git a/pages/linux/v4l2-ctl.md b/pages/linux/v4l2-ctl.md index 5cf4308fe0..2586bb5a70 100644 --- a/pages/linux/v4l2-ctl.md +++ b/pages/linux/v4l2-ctl.md @@ -29,4 +29,8 @@ - List all video device's controls and their values: -`v4l2-ctl --list-ctrls --device {{/path/to/video_device}}` +`v4l2-ctl --list-ctrls --device {{path/to/video_device}}` + +- Set the value of a video device control: + +`v4l2-ctl --device {{path/to/video_device}} --set-ctrl={{control_name}}={{value}}` diff --git a/pages/linux/virt-xml.md b/pages/linux/virt-xml.md index 7cd0a61710..3857af1215 100644 --- a/pages/linux/virt-xml.md +++ b/pages/linux/virt-xml.md @@ -1,6 +1,6 @@ # virt-xml -> Edit libvirt Domain XML files with explicit command line options. +> Edit libvirt Domain XML files with explicit command-line options. > NOTE: 'domain' refers to the name, UUID or ID for the existing VMs (See: tldr virsh). > More information: . diff --git a/pages/linux/vkpurge.md b/pages/linux/vkpurge.md new file mode 100644 index 0000000000..ae77de4fb0 --- /dev/null +++ b/pages/linux/vkpurge.md @@ -0,0 +1,17 @@ +# vkpurge + +> List or remove old kernel versions left behind by `xbps`. +> The `version` arguments support shell globs. +> More information: . + +- List all removable kernel versions (or those matching `version` if the argument is specified): + +`vkpurge list {{version}}` + +- Remove all unused kernels: + +`vkpurge rm all` + +- Remove kernel versions matching `version`: + +`vkpurge rm {{version}}` diff --git a/pages/linux/vso.md b/pages/linux/vso.md new file mode 100644 index 0000000000..db2a456dcb --- /dev/null +++ b/pages/linux/vso.md @@ -0,0 +1,36 @@ +# vso + +> Package manager, system updater and a task automator for Vanilla OS. +> More information: . + +- Check for system updates to the host system: + +`vso sys-upgrade check` + +- Upgrade the host system now: + +`vso sys-upgrade upgrade --now` + +- Initialize the Pico subsystem (used for package management): + +`vso pico-init` + +- Install applications inside the subsystem: + +`vso install {{package1 package2 ...}}` + +- Remove applications from the subsystem: + +`vso remove {{package1 package2 ...}}` + +- Enter the subsystem's shell: + +`vso shell` + +- Run an application from the subsystem: + +`vso run {{package}}` + +- Display VSO configuration: + +`vso config show` diff --git a/pages/linux/wall.md b/pages/linux/wall.md index f33dd263a9..c0586b6da7 100644 --- a/pages/linux/wall.md +++ b/pages/linux/wall.md @@ -5,7 +5,11 @@ - Send a message: -`echo "{{message}}" | wall` +`wall {{message}}` + +- Send a message to users that belong to a specific group: + +`wall --group {{group_name}} {{message}}` - Send a message from a file: @@ -13,4 +17,4 @@ - Send a message with timeout (default 300): -`wall -t {{seconds}} {{file}}` +`wall --timeout {{seconds}} {{file}}` diff --git a/pages/linux/watch.md b/pages/linux/watch.md index 246b32d29b..63e767157d 100644 --- a/pages/linux/watch.md +++ b/pages/linux/watch.md @@ -14,3 +14,7 @@ - Monitor "node" processes, refreshing every 3 seconds: `watch -n {{3}} "{{ps aux | grep node}}"` + +- Monitor disk space and if it changes, stop monitoring: + +`watch -g {{df}}` diff --git a/pages/linux/waydroid.md b/pages/linux/waydroid.md new file mode 100644 index 0000000000..7520835baa --- /dev/null +++ b/pages/linux/waydroid.md @@ -0,0 +1,28 @@ +# waydroid + +> A container-based approach to boot a full Android system on a regular GNU/Linux system like Ubuntu. +> More information: . + +- Start Waydroid: + +`waydroid` + +- Initialize Waydroid (required on first run or after reinstalling Android): + +`waydroid init` + +- Install a new Android app from a file: + +`waydroid app install {{path/to/file.apk}}` + +- Launch an Android app by its package name: + +`waydroid app launch {{com.example.app}}` + +- Start or stop the Waydroid session: + +`waydroid session {{start|stop}}` + +- Manage the Waydroid container: + +`waydroid container {{start|stop|restart|freeze|unfreeze}}` diff --git a/pages/linux/wg.md b/pages/linux/wg.md index a3cfbc5658..75d3c4f872 100644 --- a/pages/linux/wg.md +++ b/pages/linux/wg.md @@ -5,7 +5,7 @@ - Check status of currently active interfaces: -`wg` +`sudo wg` - Generate a new private key: @@ -21,4 +21,4 @@ - Show the current configuration of a wireguard interface: -`wg showconf {{wg0}}` +`sudo wg showconf {{wg0}}` diff --git a/pages/linux/whatis.md b/pages/linux/whatis.md index 3d8dd2291e..3593066a71 100644 --- a/pages/linux/whatis.md +++ b/pages/linux/whatis.md @@ -18,3 +18,7 @@ - Search man page descriptions with a regular expression: `whatis --regex '{{wish[0-9]\.[0-9]}}'` + +- Display descriptions of a specific language (requires `manpage-{{locale}}` package): + +`whatis --locale={{en}} {{command}}` diff --git a/pages/linux/whiptail.md b/pages/linux/whiptail.md index e018159998..dd063a1e68 100644 --- a/pages/linux/whiptail.md +++ b/pages/linux/whiptail.md @@ -11,7 +11,7 @@ `whiptail --title "{{title}}" --yesno "{{message}}" {{height_in_chars}} {{width_in_chars}}` -- Customise the text on the yes / no buttons: +- Customise the text on the yes/no buttons: `whiptail --title "{{title}}" --yes-button "{{text}}" --no-button "{{text}}" --yesno "{{message}}" {{height_in_chars}} {{width_in_chars}}` diff --git a/pages/linux/wpctl.md b/pages/linux/wpctl.md new file mode 100644 index 0000000000..53a979e167 --- /dev/null +++ b/pages/linux/wpctl.md @@ -0,0 +1,33 @@ +# wpctl + +> Manage WirePlumber, a session and policy manager for PipeWire. +> Note: you can use the special name `@DEFAULT_SINK@` in place of `id` to operate on the default sink. +> More information: . + +- List all objects managed by WirePlumber: + +`wpctl status` + +- Print all properties of an object: + +`wpctl inspect {{id}}` + +- Set an object to be the default in its group: + +`wpctl set-default {{id}}` + +- Get the volume of a sink: + +`wpctl get-volume {{id}}` + +- Set the volume of a sink to `n` percent: + +`wpctl set-volume {{id}} {{n}}%` + +- Increase/Decrease the volume of a sink by `n` percent: + +`wpctl set-volume {{id}} {{n}}%{{+|-}}` + +- Mute/Unmute a sink (1 is mute, 0 is unmute): + +`wpctl set-mute {{id}} {{1|0|toggle}}` diff --git a/pages/linux/wtf.md b/pages/linux/wtf.md index 231150f6b8..d47a5c0541 100644 --- a/pages/linux/wtf.md +++ b/pages/linux/wtf.md @@ -1,7 +1,7 @@ # wtf > Show the expansions of acronyms. -> More information: . +> More information: . - Expand a given acronym: diff --git a/pages/linux/xauth.md b/pages/linux/xauth.md index b862364d9c..d27edc056f 100644 --- a/pages/linux/xauth.md +++ b/pages/linux/xauth.md @@ -23,7 +23,7 @@ `xauth remove {{display_name}}` -- Print the authorization entry for the current display to stdout: +- Print the authorization entry for the current display to `stdout`: `xauth extract - $DISPLAY` diff --git a/pages/linux/xbps-install.md b/pages/linux/xbps-install.md new file mode 100644 index 0000000000..aeda326a90 --- /dev/null +++ b/pages/linux/xbps-install.md @@ -0,0 +1,13 @@ +# xbps-install + +> XBPS utility to (re)install and update packages. +> See also: `xbps`. +> More information: . + +- Install a new package: + +`xbps-install {{package}}` + +- Synchronize and update all packages: + +`xbps-install --sync --update` diff --git a/pages/linux/xbps-query.md b/pages/linux/xbps-query.md new file mode 100644 index 0000000000..2827f1f085 --- /dev/null +++ b/pages/linux/xbps-query.md @@ -0,0 +1,25 @@ +# xbps-query + +> XBPS utility to query for package and repository information. +> See also: `xbps`. +> More information: . + +- Search for a package in remote repositories using a regular expression or a keyword (if `--regex` is omitted): + +`xbps-query --search {{regular_expression|keyword}} --repository --regex` + +- Show information about an installed package: + +`xbps-query --show {{package}}` + +- Show information about a package in remote repositories: + +`xbps-query --show {{package}} --repository` + +- List packages registered in the package database: + +`xbps-query --list-pkgs` + +- List explicitly installed packages (i.e. not automatically installed as dependencies): + +`xbps-query --list-manual-pkgs` diff --git a/pages/linux/xbps-remove.md b/pages/linux/xbps-remove.md new file mode 100644 index 0000000000..e94782099f --- /dev/null +++ b/pages/linux/xbps-remove.md @@ -0,0 +1,21 @@ +# xbps-remove + +> XBPS utility to remove packages. +> See also: `xbps`. +> More information: . + +- Remove a package: + +`xbps-remove {{package}}` + +- Remove a package and its dependencies: + +`xbps-remove --recursive {{package}}` + +- Remove orphan packages (installed as dependencies but no longer required by any package): + +`xbps-remove --remove-orphans` + +- Remove obsolete packages from the cache: + +`xbps-remove --clean-cache` diff --git a/pages/linux/xbps.md b/pages/linux/xbps.md index ad57f1fecd..1c022cb4a3 100644 --- a/pages/linux/xbps.md +++ b/pages/linux/xbps.md @@ -1,32 +1,17 @@ # xbps -> The X Binary Package System (or xbps) is the binary package system used by Void Linux. -> More information: . +> The X Binary Package System is the package manager used by Void Linux. +> For equivalent commands in other package managers, see . +> More information: . -- Install packages and synchronize them with the remote repository: +- View documentation for installing and updating packages: -`xbps-install --sync {{package_name1}} {{package_name2}}` +`tldr xbps-install` -- Search for a package in the remote repository: +- View documentation for removing packages: -`xbps-query --repository -s {{package_name}}` +`tldr xbps-remove` -- Remove a package, leaving all of its dependencies installed: +- View documentation for querying for package and repository information: -`xbps-remove {{package_name}}` - -- Remove a package and all of its dependencies recursively that are not required by other packages: - -`xbps-remove --recursive {{package_name}}` - -- Synchronize your repository databases and update your system and dependencies: - -`xbps-install --sync --update` - -- Remove packages that were installed as dependencies and aren't currently needed: - -`xbps-remove --remove-orphans` - -- Remove obsolete packages from the cache: - -`xbps-remove --clean-cache` +`tldr xbps-query` diff --git a/pages/linux/xfreerdp.md b/pages/linux/xfreerdp.md index 792eb33a52..9e3ae9becf 100644 --- a/pages/linux/xfreerdp.md +++ b/pages/linux/xfreerdp.md @@ -22,3 +22,7 @@ - Connect to a FreeRDP server ignoring any certificate checks: `xfreerdp /v:{{ip_address}} /u:{{username}} /p:{{password}} /cert:ignore` + +- Connect to a FreeRDP server with a shared directory: + +`xfreerdp /v:{{ip_address}} /u:{{username}} /p:{{password}} /drive:{{path/to/directory}},{{share_name}}` diff --git a/pages/linux/xman.md b/pages/linux/xman.md index 12f4a0ad9a..d1a065293e 100644 --- a/pages/linux/xman.md +++ b/pages/linux/xman.md @@ -3,7 +3,7 @@ > Manual page viewer for X Window System. > More information: . -- Start xman in three-button window: +- Start `xman` in three-button window: `xman` diff --git a/pages/linux/xset.md b/pages/linux/xset.md index c98e521ba3..bbd87888d1 100644 --- a/pages/linux/xset.md +++ b/pages/linux/xset.md @@ -7,6 +7,10 @@ `xset s off` +- Disable the bell sound: + +`xset b off` + - Set the screensaver to start after 60 minutes of inactivity: `xset s 3600 3600` diff --git a/pages/linux/yaourt.md b/pages/linux/yaourt.md index aac749aeb7..b63e9ea3bb 100644 --- a/pages/linux/yaourt.md +++ b/pages/linux/yaourt.md @@ -9,15 +9,15 @@ - Install a new package (includes AUR): -`yaourt -S {{package_name}}` +`yaourt -S {{package}}` - Remove a package and its dependencies (includes AUR packages): -`yaourt -Rs {{package_name}}` +`yaourt -Rs {{package}}` - Search the package database for a keyword (including AUR): -`yaourt -Ss {{package_name}}` +`yaourt -Ss {{query}}` - List installed packages, versions, and repositories (AUR packages will be listed under the repository name 'local'): diff --git a/pages/linux/yay.md b/pages/linux/yay.md index 5d76594e74..501724e239 100644 --- a/pages/linux/yay.md +++ b/pages/linux/yay.md @@ -18,11 +18,11 @@ - Install a new package from the repos and AUR: -`yay -S {{package_name}}` +`yay -S {{package}}` - Remove an installed package and both its dependencies and configuration files: -`yay -Rns {{package_name}}` +`yay -Rns {{package}}` - Search the package database for a keyword from the repos and AUR: diff --git a/pages/linux/yplan.md b/pages/linux/yplan.md new file mode 100644 index 0000000000..fb83976e25 --- /dev/null +++ b/pages/linux/yplan.md @@ -0,0 +1,9 @@ +# yplan + +> Generate LaTeX code for a two-page vertical daily planner for any chosen year. +> The generated output can be converted or printed using conversion tools such as `pandoc`, `pdflatex`, or `xetex`. +> More information: . + +- Create a daily planner with specified language, lettercase (uppercase or lowercase) and year: + +`yplan {{language}} {{lettercase}} {{year}} > {{path/to/file.tex}}` diff --git a/pages/linux/zathura.md b/pages/linux/zathura.md index a581d1e27f..85309f1a65 100644 --- a/pages/linux/zathura.md +++ b/pages/linux/zathura.md @@ -1,6 +1,6 @@ # zathura -> A vim-like modal document viewer, with an integrated command line. +> A vim-like modal document viewer, with an integrated command-line. > Make sure a backend is installed (poppler, PostScript, or DjVu). > More information: . diff --git a/pages/linux/zbarcam.md b/pages/linux/zbarcam.md new file mode 100644 index 0000000000..787fe230ef --- /dev/null +++ b/pages/linux/zbarcam.md @@ -0,0 +1,20 @@ +# zbarcam + +> Scans and decodes barcodes (and QR codes) from a video device. +> More information: . + +- Continuously read barcodes and print them to standard output: + +`zbarcam` + +- Disable output video window while scanning: + +`zbarcam --nodisplay` + +- Print barcodes without type information: + +`zbarcam --raw` + +- Define capture device: + +`zbarcam /dev/{{video_device}}` diff --git a/pages/linux/zforce.md b/pages/linux/zforce.md new file mode 100644 index 0000000000..e319b61256 --- /dev/null +++ b/pages/linux/zforce.md @@ -0,0 +1,8 @@ +# zforce + +> Add a `.gz` extension to files compressed using `gzip`. +> More information: . + +- Add a `.gz` extension to the supplied Gzip files (Note: other files are ignored): + +`zforce {{path/to/file1 path/to/file2 ...}}` diff --git a/pages/openbsd/pkg.md b/pages/openbsd/pkg.md new file mode 100644 index 0000000000..2dac503c63 --- /dev/null +++ b/pages/openbsd/pkg.md @@ -0,0 +1,16 @@ +# pkg + +> OpenBSD package manager utility. +> More information: . + +- View documentation for installing/updating packages: + +`tldr pkg_add` + +- View documentation for removing packages: + +`tldr pkg_delete` + +- View documentation for viewing information about packages: + +`tldr pkg_info` diff --git a/pages/openbsd/pkg_add.md b/pages/openbsd/pkg_add.md new file mode 100644 index 0000000000..7f7622a04e --- /dev/null +++ b/pages/openbsd/pkg_add.md @@ -0,0 +1,17 @@ +# pkg_add + +> Install/update packages in OpenBSD. +> See also: `pkg_info`, `pkg_delete`. +> More information: . + +- Update all packages, including dependencies: + +`pkg_add -u` + +- Install a new package: + +`pkg_add {{package}}` + +- Install packages from the raw output of `pkg_info`: + +`pkg_add -l {{path/to/file}}` diff --git a/pages/openbsd/pkg_delete.md b/pages/openbsd/pkg_delete.md new file mode 100644 index 0000000000..7f42c73d34 --- /dev/null +++ b/pages/openbsd/pkg_delete.md @@ -0,0 +1,17 @@ +# pkg_delete + +> Remove packages in OpenBSD. +> See also: `pkg_add`, `pkg_info`. +> More information: . + +- Delete a package: + +`pkg_delete {{package}}` + +- Delete a package, including its unused dependencies: + +`pkg_delete -a {{package}}` + +- Dry-run deletion of a package: + +`pkg_delete -n {{package}}` diff --git a/pages/openbsd/pkg_info.md b/pages/openbsd/pkg_info.md new file mode 100644 index 0000000000..f6f82de3e3 --- /dev/null +++ b/pages/openbsd/pkg_info.md @@ -0,0 +1,13 @@ +# pkg_info + +> View information about packages in OpenBSD. +> See also: `pkg_add`, `pkg_delete`. +> More information: . + +- Search for a package using the package name: + +`pkg_info -Q {{package}}` + +- Output a list of installed packages for use with `pkg_add -l`: + +`pkg_info -mz` diff --git a/pages/osx/aiac.md b/pages/osx/aiac.md new file mode 100644 index 0000000000..49ec1d2f71 --- /dev/null +++ b/pages/osx/aiac.md @@ -0,0 +1,24 @@ +# aiac + +> Use OpenAI to generate IaC configurations, utilities, queries and more. +> More information: . + +- Generate Terraform for Azure storage account: + +`aiac get terraform {{for an azure storage account}}` + +- Generate a Dockerfile for nginx: + +`aiac get dockerfile {{for a secured nginx}}` + +- Generate GitHub action that applies Terraform: + +`aiac get github action {{that plans and applies terraform}}` + +- Generate a port scanner in Python: + +`aiac get python {{code that scans all open ports in my network}}` + +- Generate a MongoDB query: + +`aiac get mongo {{query that aggregates all documents by created date}}` diff --git a/pages/osx/arch.md b/pages/osx/arch.md index 85bd5b81ac..28aa9a5b35 100644 --- a/pages/osx/arch.md +++ b/pages/osx/arch.md @@ -11,3 +11,7 @@ - Run a command using x86_64: `arch -x86_64 "{{command}}"` + +- Run a command using arm: + +`arch -arm64 "{{command}}"` diff --git a/pages/osx/as.md b/pages/osx/as.md index 9f94b0af02..9041247098 100644 --- a/pages/osx/as.md +++ b/pages/osx/as.md @@ -6,16 +6,16 @@ - Assemble a file, writing the output to `a.out`: -`as {{file.s}}` +`as {{path/to/file.s}}` - Assemble the output to a given file: -`as {{file.s}} -o {{out.o}}` +`as {{path/to/file.s}} -o {{path/to/output_file.o}}` - Generate output faster by skipping whitespace and comment preprocessing. (Should only be used for trusted compilers): -`as -f {{file.s}}` +`as -f {{path/to/file.s}}` - Include a given path to the list of directories to search for files specified in `.include` directives: -`as -I {{path/to/directory}} {{file.s}}` +`as -I {{path/to/directory}} {{path/to/file.s}}` diff --git a/pages/osx/asr.md b/pages/osx/asr.md index 3c221d3b06..21938423e5 100644 --- a/pages/osx/asr.md +++ b/pages/osx/asr.md @@ -6,16 +6,16 @@ - Restore a disk image to a target volume: -`sudo asr restore --source {{image_name}}.dmg --target {{path/to/volume}}` +`sudo asr restore --source {{image_file.dmg}} --target {{path/to/volume_file}}` - Erase the target volume before restoring: -`sudo asr restore --source {{image_name}}.dmg --target {{path/to/volume}} --erase` +`sudo asr restore --source {{image_file.dmg}} --target {{path/to/volume_file}} --erase` - Skip verification after restoring: -`sudo asr restore --source {{image_name}}.dmg --target {{path/to/volume}} --noverify` +`sudo asr restore --source {{image_file.dmg}} --target {{path/to/volume_file}} --noverify` - Clone volumes without the use of an intermediate disk image: -`sudo asr restore --source {{path/to/volume}} --target {{path/to/cloned_volume}}` +`sudo asr restore --source {{path/to/volume_file}} --target {{path/to/volume_file}}` diff --git a/pages/osx/caffeinate.md b/pages/osx/caffeinate.md index c7fcd8b850..169e7fe6d8 100644 --- a/pages/osx/caffeinate.md +++ b/pages/osx/caffeinate.md @@ -11,6 +11,10 @@ `caffeinate -s "{{command}}"` +- Prevent from sleeping until a process with the specified PID completes: + +`caffeinate -w {{pid}}` + - Prevent from sleeping (use `Ctrl + C` to exit): `caffeinate -i` diff --git a/pages/osx/cat.md b/pages/osx/cat.md new file mode 100644 index 0000000000..77316f12a6 --- /dev/null +++ b/pages/osx/cat.md @@ -0,0 +1,32 @@ +# cat + +> Print and concatenate files. +> More information: . + +- Print the contents of a file to `stdout`: + +`cat {{path/to/file}}` + +- Concatenate several files into an output file: + +`cat {{path/to/file1 path/to/file2 ...}} > {{path/to/output_file}}` + +- Append several files to an output file: + +`cat {{path/to/file1 path/to/file2 ...}} >> {{path/to/output_file}}` + +- Copy the contents of a file into an output file without buffering: + +`cat -u {{/dev/tty12}} > {{/dev/tty13}}` + +- Write `stdin` to a file: + +`cat - > {{path/to/file}}` + +- Number all output lines: + +`cat -n {{path/to/file}}` + +- Display non-printable and whitespace characters (with `M-` prefix if non-ASCII): + +`cat -v -t -e {{path/to/file}}` diff --git a/pages/osx/codesign.md b/pages/osx/codesign.md index b0dcf10f2f..4e62f77a80 100644 --- a/pages/osx/codesign.md +++ b/pages/osx/codesign.md @@ -5,8 +5,8 @@ - Sign an application with a certificate: -`codesign --sign "{{My Company Name}}" {{path/to/App.app}}` +`codesign --sign "{{My Company Name}}" {{path/to/application_file.app}}` - Verify the certificate of an application: -`codesign --verify {{path/to/App.app}}` +`codesign --verify {{path/to/application_file.app}}` diff --git a/pages/osx/cot.md b/pages/osx/cot.md index 865419daec..4b2a9e2a6f 100644 --- a/pages/osx/cot.md +++ b/pages/osx/cot.md @@ -21,4 +21,4 @@ - Open a specific file with the cursor at a specific line and column: -`cot --line {{line_number}} --column {{column_number}} {{path/to/file}}` +`cot --line {{1}} --column {{80}} {{path/to/file}}` diff --git a/pages/osx/csrutil.md b/pages/osx/csrutil.md index 60fa3077b9..717633b8dc 100644 --- a/pages/osx/csrutil.md +++ b/pages/osx/csrutil.md @@ -21,7 +21,7 @@ - Add an IPv4 address to the list of allowed NetBoot sources: -`csrutil netboot add {{ip_address}}` +`csrutil netboot add {{ip}}` - Reset the System Integrity Protection status and clear the NetBoot list: diff --git a/pages/osx/csshx.md b/pages/osx/csshx.md index a65a46e7c2..dc9df6f55d 100644 --- a/pages/osx/csshx.md +++ b/pages/osx/csshx.md @@ -9,7 +9,7 @@ - Connect to multiple hosts with a given SSH key: -`csshX {{user@hostname1}} {{user@hostname2}} --ssh_args "-i {{path/to/ssh_key.pem}}"` +`csshX {{user@hostname1}} {{user@hostname2}} --ssh_args "-i {{path/to/key_file.pem}}"` - Connect to a pre-defined cluster from `/etc/clusters`: diff --git a/pages/osx/dark-mode.md b/pages/osx/dark-mode.md index 156ea87ea4..1ffcf122a0 100644 --- a/pages/osx/dark-mode.md +++ b/pages/osx/dark-mode.md @@ -1,6 +1,6 @@ # dark-mode -> Control macOS dark mode from the command-line. +> Control macOS dark mode. > More information: . - Toggle dark mode (turn it on if it's currently off, off if it's currently on): diff --git a/pages/osx/dd.md b/pages/osx/dd.md index bc1dd6856c..6e6501fd01 100644 --- a/pages/osx/dd.md +++ b/pages/osx/dd.md @@ -1,20 +1,32 @@ # dd > Convert and copy a file. -> More information: . +> More information: . -- Make a bootable USB drive from an isohybrid file (such like `archlinux-xxx.iso`): +- Make a bootable USB drive from an isohybrid file (such like `archlinux-xxx.iso`) and show the progress: -`dd if={{file.iso}} of=/dev/{{usb_drive}}` +`dd if={{path/to/file.iso}} of={{/dev/usb_device}} status=progress` -- Clone a drive to another drive with 4 MB block and ignore error: +- Clone a drive to another drive with 4 MB block, ignore error and show the progress: -`dd if=/dev/{{source_drive}} of=/dev/{{dest_drive}} bs=4m conv=noerror` +`dd if={{/dev/source_device}} of={{/dev/dest_device}} bs={{4m}} conv={{noerror}} status=progress` - Generate a file of 100 random bytes by using kernel random driver: -`dd if=/dev/urandom of={{random_file}} bs=100 count=1` +`dd if=/dev/urandom of={{path/to/random_file}} bs={{100}} count={{1}}` - Benchmark the write performance of a disk: -`dd if=/dev/zero of={{file_1GB}} bs=1024 count=1000000` +`dd if=/dev/zero of={{path/to/1GB_file}} bs={{1024}} count={{1000000}}` + +- Generate a system backup into an IMG file and show the progress: + +`dd if=/dev/{{drive_device}} of={{path/to/file.img}} status=progress` + +- Restore a drive from an IMG file and show the progress: + +`dd if={{path/to/file.img}} of={{/dev/drive_device}} status=progress` + +- Check the progress of an ongoing dd operation (run this command from another shell): + +`kill -USR1 $(pgrep ^dd)` diff --git a/pages/osx/dhcp6d.md b/pages/osx/dhcp6d.md index b1e9dc5ef0..38be900d46 100644 --- a/pages/osx/dhcp6d.md +++ b/pages/osx/dhcp6d.md @@ -10,4 +10,4 @@ - Use a custom configuration: -`dhcp6d {{path/to/config}}` +`dhcp6d {{path/to/config_file}}` diff --git a/pages/osx/diskutil.md b/pages/osx/diskutil.md index 226138f5ff..868c00014b 100644 --- a/pages/osx/diskutil.md +++ b/pages/osx/diskutil.md @@ -9,12 +9,12 @@ - Repair the filesystem data structures of a volume: -`diskutil repairVolume {{/dev/diskX}}` +`diskutil repairVolume {{/dev/disk_device}}` - Unmount a volume: -`diskutil unmountDisk {{/dev/diskX}}` +`diskutil unmountDisk {{/dev/disk_device}}` - Eject a CD/DVD (unmount first): -`diskutil eject {{/dev/disk1}}` +`diskutil eject {{/dev/disk_device1}}` diff --git a/pages/osx/ditto.md b/pages/osx/ditto.md index 3025b2732e..5cdfa7a5f6 100644 --- a/pages/osx/ditto.md +++ b/pages/osx/ditto.md @@ -5,12 +5,12 @@ - Overwrite contents of destination directory with contents of source directory: -`ditto {{path/to/source}} {{path/to/destination}}` +`ditto {{path/to/source_directory}} {{path/to/destination_directory}}` - Print a line to the Terminal window for every file that's being copied: -`ditto -V {{path/to/source}} {{path/to/destination}}` +`ditto -V {{path/to/source_directory}} {{path/to/destination_directory}}` - Copy a given file or directory, while retaining the original file permissions: -`ditto -rsrc {{path/to/source}} {{path/to/destination}}` +`ditto -rsrc {{path/to/source_directory}} {{path/to/destination_directory}}` diff --git a/pages/osx/dmesg.md b/pages/osx/dmesg.md index 6f27439df1..dfd810b6f3 100644 --- a/pages/osx/dmesg.md +++ b/pages/osx/dmesg.md @@ -1,6 +1,6 @@ # dmesg -> Write the kernel messages to standard output. +> Write the kernel messages to `stdout`. > More information: . - Show kernel messages: diff --git a/pages/osx/dtrace.md b/pages/osx/dtrace.md new file mode 100644 index 0000000000..3d1cdfc0de --- /dev/null +++ b/pages/osx/dtrace.md @@ -0,0 +1,37 @@ +# dtrace + +> A simple interface to invoke the D language compiler, retrieve buffered trace, and print traced data from the DTrace kernel facility. +> Generic front-end to DTrace facility, requiring root privileges. +> More information: . + +- Set target data model for a specific architecture: + +`dtrace -arch {{arch_name}}` + +- Claim [a]nonymous tracing state and display the traced data: + +`dtrace -a` + +- Set principal trace buffer size. Supported units are `k`, `m`, `g`, or `t`: + +`dtrace -b {{2g}}` + +- Compile the specified D Program [s]ource file: + +`dtrace -s {{D_script}}` + +- Run the specified [c]ommand and exit upon its completion: + +`dtrace -c {{command}}` + +- Specify [f]unction name to trace or list (-l option). The corresponding argument can include any of the probe description forms like `provider:module:function`, `module:function` or `function`: + +`dtrace -f {{function}}` + +- Grad the specified [p]rocess ID, cache its symbol table, and exit upon completion: + +`dtrace -p {{pid}}` + +- Combine different options for tracing function in a process: + +`dtrace -a -b {{buffer_size}} -f {{function}} -p {{pid}}` diff --git a/pages/osx/du.md b/pages/osx/du.md index 2855c23560..e86ebcfc22 100644 --- a/pages/osx/du.md +++ b/pages/osx/du.md @@ -21,7 +21,7 @@ - List the human-readable sizes of a directory and any subdirectories, up to N levels deep: -`du -h -d {{N}} {{path/to/directory}}` +`du -h -d {{2}} {{path/to/directory}}` - List the human-readable size of all `.jpg` files in subdirectories of the current directory, and show a cumulative total at the end: diff --git a/pages/osx/emond.md b/pages/osx/emond.md index 9dfdb24c84..7621e01d87 100644 --- a/pages/osx/emond.md +++ b/pages/osx/emond.md @@ -14,4 +14,4 @@ - Use a specific configuration file: -`emond -c {{path/to/config}}` +`emond -c {{path/to/config_file}}` diff --git a/pages/osx/fileicon.md b/pages/osx/fileicon.md index 757652df71..3ac2b9b8df 100644 --- a/pages/osx/fileicon.md +++ b/pages/osx/fileicon.md @@ -1,11 +1,11 @@ # fileicon -> A macOS CLI to manage custom file and folder icons. +> Manage custom file and folder icons. > More information: . - Set a custom icon for a specific file or directory: -`fileicon set {{path/to/file_or_directory}} {{path/to/icon.png}}` +`fileicon set {{path/to/file_or_directory}} {{path/to/icon_file.png}}` - Remove a custom icon from a specific file or directory: diff --git a/pages/osx/ftxdiff.md b/pages/osx/ftxdiff.md new file mode 100644 index 0000000000..29333e260e --- /dev/null +++ b/pages/osx/ftxdiff.md @@ -0,0 +1,16 @@ +# ftxdiff + +> Compare differences between two fonts. +> More information: . + +- Output differences to a specific text file: + +`ftxdiff --output {{path/to/fontdiff_file.txt}} {{path/to/font_file1.ttc}} {{path/to/font_file2.ttc}}` + +- Include glyph names in output: + +`ftxdiff --include-glyph-names` + +- Include unicode names in output: + +`ftxdiff --include-unicode-names` diff --git a/pages/osx/goku.md b/pages/osx/goku.md new file mode 100644 index 0000000000..c2b604652d --- /dev/null +++ b/pages/osx/goku.md @@ -0,0 +1,28 @@ +# goku + +> Manage Karabiner configuration. +> More information: . + +- Generate `karabiner.json` using the default configuration: + +`goku` + +- Generate `karabiner.json` using the specific `config.edn` file: + +`goku --config {{path/to/config.edn}}` + +- Dry run the new configuration into `stdout` instead of updating `karabiner.json`: + +`goku --dry-run` + +- Dry run the whole configuration into `stdout` instead of updating `karabiner.json`: + +`goku --dry-run-all` + +- Display help: + +`goku --help` + +- Display version: + +`goku --version` diff --git a/pages/osx/hdiutil.md b/pages/osx/hdiutil.md index e2ca7c6ee8..e0520662d4 100644 --- a/pages/osx/hdiutil.md +++ b/pages/osx/hdiutil.md @@ -9,7 +9,7 @@ - Unmount an image: -`hdiutil detach /Volumes/{{volume_name}}` +`hdiutil detach /Volumes/{{volume_file}}` - List mounted images: diff --git a/pages/osx/head.md b/pages/osx/head.md new file mode 100644 index 0000000000..80a740f900 --- /dev/null +++ b/pages/osx/head.md @@ -0,0 +1,20 @@ +# head + +> Output the first part of files. +> More information: . + +- Output the first few lines of a file: + +`head --lines {{8}} {{path/to/file}}` + +- Output the first few bytes of a file: + +`head --bytes {{8}} {{path/to/file}}` + +- Output everything but the last few lines of a file: + +`head --lines -{{8}} {{path/to/file}}` + +- Output everything but the last few bytes of a file: + +`head --bytes -{{8}} {{path/to/file}}` diff --git a/pages/osx/httpie.md b/pages/osx/httpie.md new file mode 100644 index 0000000000..4c8ecaf979 --- /dev/null +++ b/pages/osx/httpie.md @@ -0,0 +1,36 @@ +# httpie + +> A user friendly HTTP tool. +> More information: . + +- Send a GET request (default method with no request data): + +`http {{https://example.com}}` + +- Send a POST request (default method with request data): + +`http {{https://example.com}} {{hello=World}}` + +- Send a POST request with redirected input: + +`http {{https://example.com}} < {{file.json}}` + +- Send a PUT request with a given JSON body: + +`http PUT {{https://example.com/todos/7}} {{hello=world}}` + +- Send a DELETE request with a given request header: + +`http DELETE {{https://example.com/todos/7}} {{API-Key:foo}}` + +- Show the whole HTTP exchange (both request and response): + +`http -v {{https://example.com}}` + +- Download a file: + +`http --download {{https://example.com}}` + +- Follow redirects and show intermediary requests and responses: + +`http --follow --all {{https://example.com}}` diff --git a/pages/osx/icalbuddy.md b/pages/osx/icalbuddy.md index 823b1ee364..7006340c01 100644 --- a/pages/osx/icalbuddy.md +++ b/pages/osx/icalbuddy.md @@ -17,7 +17,7 @@ - Show tasks for a specified number of days: -`icalBuddy --includeOnlyEventsFromNowOn "tasksDueBefore:today+{{days}}"` +`icalBuddy --includeOnlyEventsFromNowOn "tasksDueBefore:today+{{8}}"` - Show events in a time range: diff --git a/pages/osx/indent.md b/pages/osx/indent.md index 14e3689231..8d3c96459a 100644 --- a/pages/osx/indent.md +++ b/pages/osx/indent.md @@ -5,8 +5,8 @@ - Format C/C++ source according to the Berkeley style: -`indent {{path/to/source.c}} {{path/to/indented_source.c}} -nbad -nbap -bc -br -c33 -cd33 -cdb -ce -ci4 -cli0 -di16 -fc1 -fcb -i4 -ip -l75 -lp -npcs -nprs -psl -sc -nsob -ts8` +`indent {{path/to/source_file.c}} {{path/to/indented_file.c}} -nbad -nbap -bc -br -c33 -cd33 -cdb -ce -ci4 -cli0 -di16 -fc1 -fcb -i4 -ip -l75 -lp -npcs -nprs -psl -sc -nsob -ts8` - Format C/C++ source according to the style of Kernighan & Ritchie (K&R): -`indent {{path/to/source.c}} {{path/to/indented_source.c}} -nbad -bap -nbc -br -c33 -cd33 -ncdb -ce -ci4 -cli0 -cs -d0 -di1 -nfc1 -nfcb -i4 -nip -l75 -lp -npcs -nprs -npsl -nsc -nsob` +`indent {{path/to/source_file.c}} {{path/to/indented_file.c}} -nbad -bap -nbc -br -c33 -cd33 -ncdb -ce -ci4 -cli0 -cs -d0 -di1 -nfc1 -nfcb -i4 -nip -l75 -lp -npcs -nprs -npsl -nsc -nsob` diff --git a/pages/osx/ipconfig.md b/pages/osx/ipconfig.md new file mode 100644 index 0000000000..2469324138 --- /dev/null +++ b/pages/osx/ipconfig.md @@ -0,0 +1,12 @@ +# ipconfig + +> View and control IP configuration state. +> More information: . + +- List all network interfaces: + +`ipconfig getiflist` + +- Show the IP address of an interface: + +`ipconfig getifaddr {{interface_name}}` diff --git a/pages/osx/istats.md b/pages/osx/istats.md index 94ccef6a6a..5ce5460459 100644 --- a/pages/osx/istats.md +++ b/pages/osx/istats.md @@ -1,6 +1,6 @@ # istats -> CLI tool that shows statistics such as CPU temperature, fan speeds and battery status. +> Show various statistics such as the CPU temperature, fan speeds and battery status. > More information: . - Show all the stats: diff --git a/pages/osx/java_home.md b/pages/osx/java_home.md new file mode 100644 index 0000000000..9561a32c93 --- /dev/null +++ b/pages/osx/java_home.md @@ -0,0 +1,24 @@ +# java_home + +> Return a value for $JAVA_HOME or execute command using this variable. +> More information: . + +- List JVMs based on a specific version: + +`java_home --version {{1.5+}}` + +- List JVMs based on a specific [arch]itecture: + +`java_home --arch {{i386}}` + +- List JVMs based on a specific tasks (defaults to `CommandLine`): + +`java_home --datamodel {{Applets|WebStart|BundledApp|JNI|CommandLine}}` + +- List JVMs in a XML format: + +`java_home --xml` + +- Display help: + +`java_home --help` diff --git a/pages/osx/launchctl.md b/pages/osx/launchctl.md index d881514295..0199f14726 100644 --- a/pages/osx/launchctl.md +++ b/pages/osx/launchctl.md @@ -1,6 +1,6 @@ # launchctl -> A command-line interface to Apple's `launchd` manager for launch daemons (system-wide services) and launch agents (per-user programs). +> Control Apple's `launchd` manager for launch daemons (system-wide services) and launch agents (per-user programs). > `launchd` loads XML-based `*.plist` files placed in the appropriate locations, and runs the corresponding commands according to their defined schedule. > More information: . @@ -26,8 +26,8 @@ - Manually run a known (loaded) agent/daemon, even if it is not the right time (note: this command uses the agent's label, rather than the filename): -`launchctl start {{my_script}}` +`launchctl start {{script_file}}` - Manually kill the process associated with a known agent/daemon, if it is running: -`launchctl stop {{my_script}}` +`launchctl stop {{script_file}}` diff --git a/pages/osx/lex.md b/pages/osx/lex.md new file mode 100644 index 0000000000..8f005f4c91 --- /dev/null +++ b/pages/osx/lex.md @@ -0,0 +1,17 @@ +# lex + +> Lexical analyzer generator. +> Given the specification for a lexical analyzer, generates C code implementing it. +> More information: . + +- Generate an analyzer from a Lex file: + +`lex {{analyzer.l}}` + +- Specify the output file: + +`lex {{analyzer.l}} --outfile {{analyzer.c}}` + +- Compile a C file generated by Lex: + +`cc {{path/to/lex.yy.c}} --output {{executable}}` diff --git a/pages/osx/lipo.md b/pages/osx/lipo.md index 1727312c72..336186c663 100644 --- a/pages/osx/lipo.md +++ b/pages/osx/lipo.md @@ -5,16 +5,16 @@ - Create a universal file from two single-architecture files: -`lipo {{path/to/binary.x86_64}} {{path/to/binary.arm64e}} -create -output {{path/to/binary}}` +`lipo {{path/to/binary_file.x86_64}} {{path/to/binary_file.arm64e}} -create -output {{path/to/binary_file}}` - List all architectures contained in a universal file: -`lipo {{path/to/binary}} -archs` +`lipo {{path/to/binary_file}} -archs` - Display detailed information about a universal file: -`lipo {{path/to/binary}} -detailed_info` +`lipo {{path/to/binary_file}} -detailed_info` - Extract a single-architecture file from a universal file: -`lipo {{path/to/binary}} -thin {{arm64e}} -output {{path/to/binary.arm64e}}` +`lipo {{path/to/binary_file}} -thin {{arm64e}} -output {{path/to/binary_file.arm64e}}` diff --git a/pages/osx/llvm-lipo.md b/pages/osx/llvm-lipo.md new file mode 100644 index 0000000000..98a34e4097 --- /dev/null +++ b/pages/osx/llvm-lipo.md @@ -0,0 +1,7 @@ +# llvm-lipo + +> This command is an alias of `lipo`. + +- View documentation for the original command: + +`tldr lipo` diff --git a/pages/osx/md5.md b/pages/osx/md5.md index d710a16f72..a9f121e1fb 100644 --- a/pages/osx/md5.md +++ b/pages/osx/md5.md @@ -5,15 +5,15 @@ - Calculate the MD5 checksum for a file: -`md5 {{filename}}` +`md5 {{path/to/file}}` - Calculate MD5 checksums for multiple files: -`md5 {{filename1}} {{filename2}}` +`md5 {{path/to/file1 path/to/file2 ...}}` - Output only the md5 checksum (no filename): -`md5 -q {{filename}}` +`md5 -q {{path/to/file}}` - Print a checksum of the given string: diff --git a/pages/osx/mktemp.md b/pages/osx/mktemp.md new file mode 100644 index 0000000000..022518d4ef --- /dev/null +++ b/pages/osx/mktemp.md @@ -0,0 +1,24 @@ +# mktemp + +> Create a temporary file or directory. +> More information: . + +- Create an empty temporary file and print its absolute path: + +`mktemp` + +- Use a custom directory (defaults to the output of `getconf DARWIN_USER_TEMP_DIR`, or `/tmp`): + +`mktemp --tmpdir={{/path/to/tempdir}}` + +- Use a custom path template (`X`s are replaced with random alphanumeric characters): + +`mktemp {{/tmp/example.XXXXXXXX}}` + +- Use a custom file name prefix: + +`mktemp -t {{example}}` + +- Create an empty temporary directory and print its absolute path: + +`mktemp --directory` diff --git a/pages/osx/notifyd.md b/pages/osx/notifyd.md index d2fbd5a31b..915be1d207 100644 --- a/pages/osx/notifyd.md +++ b/pages/osx/notifyd.md @@ -14,4 +14,4 @@ - Log debug messages to an alternate log file: -`notifyd -d -log_file {{path/to/log}}` +`notifyd -d -log_file {{path/to/log_file}}` diff --git a/pages/osx/osascript.md b/pages/osx/osascript.md index 9deba60a57..08936b1f31 100644 --- a/pages/osx/osascript.md +++ b/pages/osx/osascript.md @@ -1,6 +1,6 @@ # osascript -> Run AppleScript or JavaScript for Automation (JXA) from the command-line. +> Run AppleScript or JavaScript for Automation (JXA). > More information: . - Run an AppleScript command: diff --git a/pages/osx/pbcopy.md b/pages/osx/pbcopy.md index bcae97b5fb..102a24a7c5 100644 --- a/pages/osx/pbcopy.md +++ b/pages/osx/pbcopy.md @@ -1,6 +1,7 @@ # pbcopy > Copy data from `stdin` to the clipboard. +> Comparable to pressing Cmd + C on the keyboard. > More information: . - Place the contents of a specific file in the clipboard: diff --git a/pages/osx/pbpaste.md b/pages/osx/pbpaste.md index e108995494..8e40633b6d 100644 --- a/pages/osx/pbpaste.md +++ b/pages/osx/pbpaste.md @@ -1,6 +1,7 @@ # pbpaste -> Send the contents of the clipboard to standard output. +> Send the contents of the clipboard to `stdout`. +> Comparable to pressing Cmd + V on the keyboard. > More information: . - Write the contents of the clipboard to a file: diff --git a/pages/osx/port.md b/pages/osx/port.md index 0b5f2d281c..f417fa71b4 100644 --- a/pages/osx/port.md +++ b/pages/osx/port.md @@ -9,7 +9,7 @@ - Install a package: -`sudo port install {{package_name}}` +`sudo port install {{package}}` - List installed packages: diff --git a/pages/osx/ps.md b/pages/osx/ps.md new file mode 100644 index 0000000000..07c841620f --- /dev/null +++ b/pages/osx/ps.md @@ -0,0 +1,28 @@ +# ps + +> Information about running processes. +> More information: . + +- List all running processes: + +`ps aux` + +- List all running processes including the full command string: + +`ps auxww` + +- Search for a process that matches a string: + +`ps aux | grep {{string}}` + +- Get the parent PID of a process: + +`ps -o ppid= -p {{pid}}` + +- Sort processes by memory usage: + +`ps -m` + +- Sort processes by CPU usage: + +`ps -r` diff --git a/pages/osx/qlmanage.md b/pages/osx/qlmanage.md index e34c8e2035..37d9b0c3ec 100644 --- a/pages/osx/qlmanage.md +++ b/pages/osx/qlmanage.md @@ -5,7 +5,7 @@ - Display QuickLook for one or multiple files: -`qlmanage -p {{filename}} {{filename2}}` +`qlmanage -p {{path/to/file1 path/to/file2 ...}}` - Compute 300px wide PNG thumbnails of all JPEGs in the current directory and put them in a directory: diff --git a/pages/osx/readlink.md b/pages/osx/readlink.md index f25d7631f3..239606319a 100644 --- a/pages/osx/readlink.md +++ b/pages/osx/readlink.md @@ -5,4 +5,4 @@ - Print the absolute path which the symlink points to: -`readlink {{path/to/symlink}}` +`readlink {{path/to/symlink_file}}` diff --git a/pages/osx/security.md b/pages/osx/security.md index 0b1fa22d1d..2d11365ec9 100644 --- a/pages/osx/security.md +++ b/pages/osx/security.md @@ -21,12 +21,12 @@ - Add a certificate from file to a [k]eychain (if -k isn't specified, the default keychain is used): -`security add-certificates -k {{file.keychain}} {{path/to/cert.pem}}` +`security add-certificates -k {{file.keychain}} {{path/to/cert_file.pem}}` - Add a CA certificate to the per-user Trust Settings: -`security add-trusted-cert -k {{path/to/user-keychain.keychain-db}} {{path/to/ca-cert.pem}}` +`security add-trusted-cert -k {{path/to/user-keychain.keychain-db}} {{path/to/ca-cert_file.pem}}` - Remove a CA certificate from the per-user Trust Settings: -`security remove-trusted-cert {{path/to/ca-cert.pem}}` +`security remove-trusted-cert {{path/to/ca-cert_file.pem}}` diff --git a/pages/osx/sed.md b/pages/osx/sed.md new file mode 100644 index 0000000000..cf3efe433f --- /dev/null +++ b/pages/osx/sed.md @@ -0,0 +1,25 @@ +# sed + +> Edit text in a scriptable manner. +> See also: `awk`, `ed`. +> More information: . + +- Replace all `apple` (basic regex) occurrences with `mango` (basic regex) in all input lines and print the result to `stdout`: + +`{{command}} | sed 's/apple/mango/g'` + +- Execute a specific script [f]ile and print the result to `stdout`: + +`{{command}} | sed -f {{path/to/script_file.sed}}` + +- Replace all `apple` (extended regex) occurrences with `APPLE` (extended regex) in all input lines and print the result to `stdout`: + +`{{command}} | sed -E 's/(apple)/\U\1/g'` + +- Print just a first line to `stdout`: + +`{{command}} | sed -n '1p'` + +- Replace all `apple` (basic regex) occurrences with `mango` (basic regex) in a `file` and save a backup of the original to `file.bak`: + +`sed -i bak 's/apple/mango/g' {{path/to/file}}` diff --git a/pages/osx/shortcuts.md b/pages/osx/shortcuts.md index 7a1cfb9e09..b8162927aa 100644 --- a/pages/osx/shortcuts.md +++ b/pages/osx/shortcuts.md @@ -1,6 +1,7 @@ # shortcuts -> Manage shortcuts from the command-line instead of the `Shortcuts` app. +> Manage shortcuts. +> Note: you can also use the `Shortcuts` app. > More information: . - Run the specified shortcut (`Count holidays`): diff --git a/pages/osx/signal.md b/pages/osx/signal.md new file mode 100644 index 0000000000..c512df9ee9 --- /dev/null +++ b/pages/osx/signal.md @@ -0,0 +1,8 @@ +# signal + +> Simplified software signal facilities. +> More information: . + +- View documentation about signals in Mac OS: + +`man signal` diff --git a/pages/osx/sips.md b/pages/osx/sips.md index 12b118680f..207887245a 100644 --- a/pages/osx/sips.md +++ b/pages/osx/sips.md @@ -10,11 +10,11 @@ - Resample image at specified size, Image aspect ratio may be altered: -`sips --resampleHeightWidth {{1920}} {{300}} {{image.ext}}` +`sips --resampleHeightWidth {{1920}} {{300}} {{image_file.ext}}` - Resample image so height and width aren't greater than specified size (notice the capital Z): -`sips --resampleHeightWidthMax {{1920}} {{300}} {{image.ext}}` +`sips --resampleHeightWidthMax {{1920}} {{300}} {{image_file.ext}}` - Resample all images in a directory to fit a width of 960px (honoring aspect ratio): @@ -26,4 +26,4 @@ - Remove ColorSync ICC profile from an image: -`sips --deleteProperty profile --deleteColorManagementProperties {{path/to/image.ext}}` +`sips --deleteProperty profile --deleteColorManagementProperties {{path/to/image_file.ext}}` diff --git a/pages/osx/softwareupdate.md b/pages/osx/softwareupdate.md index daf1f4dc2e..2276aa8394 100644 --- a/pages/osx/softwareupdate.md +++ b/pages/osx/softwareupdate.md @@ -1,6 +1,6 @@ # softwareupdate -> A tool for updating macOS App Store apps via the command-line. +> Update macOS App Store apps. > More information: . - List all available updates: diff --git a/pages/osx/split.md b/pages/osx/split.md index 43bffa05b4..48d78c821f 100644 --- a/pages/osx/split.md +++ b/pages/osx/split.md @@ -14,3 +14,7 @@ - Split a file with 512 bytes in each split (except the last split; use 512k for kilobytes and 512m for megabytes): `split -b {{512}} {{filename}}` + +- Split a file into 5 files. File is split such that each split has same size (except the last split): + +`split -n {{5}} {{filename}}` diff --git a/pages/osx/system_profiler.md b/pages/osx/system_profiler.md index cb5be6f087..a45f586fc7 100644 --- a/pages/osx/system_profiler.md +++ b/pages/osx/system_profiler.md @@ -3,13 +3,17 @@ > Report system hardware and software configuration. > More information: . -- Display a full system profiler report which can be opened by System Profiler.app: +- Display a report with specific details level (mini [no personal information], basic or full): + +`system_profiler -detailLevel {{level}}` + +- Display a full system profiler report which can be opened by `System Profiler.app`: `system_profiler -xml > MyReport.spx` -- Display a hardware overview (Model, CPU, Memory, Serial, etc): +- Display a hardware overview (Model, CPU, Memory, Serial, etc) and software data (System, Kernel, Name, Uptime, etc): -`system_profiler SPHardwareDataType` +`system_profiler SPHardwareDataType SPSoftwareDataType` - Print the system serial number: diff --git a/pages/osx/systemsetup.md b/pages/osx/systemsetup.md index c75b9ad0f3..454dc9e2ca 100644 --- a/pages/osx/systemsetup.md +++ b/pages/osx/systemsetup.md @@ -21,4 +21,4 @@ - Specify a new startup disk: -`systemsetup -setstartupdisk {{path}}` +`systemsetup -setstartupdisk {{path/to/directory}}` diff --git a/pages/osx/tail.md b/pages/osx/tail.md index aa118350b7..ae6b6e5623 100644 --- a/pages/osx/tail.md +++ b/pages/osx/tail.md @@ -6,15 +6,15 @@ - Show last 'count' lines in file: -`tail -n {{count}} {{path/to/file}}` +`tail -n {{8}} {{path/to/file}}` - Print a file from a specific line number: -`tail -n +{{count}} {{path/to/file}}` +`tail -n +{{8}} {{path/to/file}}` - Print a specific count of bytes from the end of a given file: -`tail -c {{count}} {{path/to/file}}` +`tail -c {{8}} {{path/to/file}}` - Print the last lines of a given file and keep reading file until `Ctrl + C`: @@ -26,4 +26,4 @@ - Show last 'count' lines in 'file' and refresh every 'seconds' seconds: -`tail -n {{count}} -s {{seconds}} -f {{path/to/file}}` +`tail -n {{8}} -s {{10}} -f {{path/to/file}}` diff --git a/pages/osx/tart.md b/pages/osx/tart.md new file mode 100644 index 0000000000..ebf91a00a3 --- /dev/null +++ b/pages/osx/tart.md @@ -0,0 +1,36 @@ +# tart + +> Build, run and manage macOS and Linux virtual machines (VMs) on Apple Silicon. +> More information: . + +- Pull a remote VM image: + +`tart pull {{acme.io/org/name:tag}}` + +- Clone a VM from a local or remote image source: + +`tart clone {{source-vm}} {{vm-name}}` + +- Create a new Mac VM from a specific ipsw file: + +`tart create --from-ipsw={{latest|path/to/file.ipsw}} {{vm-name}}` + +- Run an existing VM: + +`tart run {{vm-name}}` + +- Run an existing VM with a specific mounted directory: + +`tart run --dir={{path/to/directory}}:{{/path/to/local_directory}} {{vm-name}}` + +- List VMs: + +`tart list` + +- Get IP address of a running VM: + +`tart ip {{vm-name}}` + +- Change a VM's display resolution: + +`tart set {{vm-name}} --display {{640}}x{{400}}` diff --git a/pages/osx/terminal-notifier.md b/pages/osx/terminal-notifier.md new file mode 100644 index 0000000000..b727a758cb --- /dev/null +++ b/pages/osx/terminal-notifier.md @@ -0,0 +1,20 @@ +# terminal-notifier + +> Send macOS User Notifications. +> More information: . + +- Send a notification (only the message is required): + +`terminal-notifier -group {{tldr-info}} -title {{TLDR}} -message '{{TLDR rocks}}'` + +- Display piped data with a sound: + +`echo '{{Piped Message Data!}}' | terminal-notifier -sound {{default}}` + +- Open a URL when the notification is clicked: + +`terminal-notifier -message '{{Check your Apple stock!}}' -open '{{http://finance.yahoo.com/q?s=AAPL}}'` + +- Open an app when the notification is clicked: + +`terminal-notifier -message '{{Imported 42 contacts.}}' -activate {{com.apple.AddressBook}}` diff --git a/pages/osx/textutil.md b/pages/osx/textutil.md index 32c28c9212..2f7a8d61ab 100644 --- a/pages/osx/textutil.md +++ b/pages/osx/textutil.md @@ -5,20 +5,20 @@ - Display information about `foo.rtf`: -`textutil -info {{foo.rtf}}` +`textutil -info {{path/to/foo.rtf}}` - Convert `foo.rtf` into `foo.html`: -`textutil -convert {{html}} {{foo.rtf}}` +`textutil -convert {{html}} {{path/to/foo.rtf}}` - Convert rich text to normal text: -`textutil {{foo.rtf}} -convert {{txt}}` +`textutil {{path/to/foo.rtf}} -convert {{txt}}` - Convert `foo.txt` into `foo.rtf`, using Times 10 for the font: -`textutil -convert {{rtf}} -font {{Times}} -fontsize {{10}} {{foo.txt}}` +`textutil -convert {{rtf}} -font {{Times}} -fontsize {{10}} {{path/to/foo.txt}}` - Load all RTF files in the current directory, concatenates their contents, and writes the result out as `index.html` with the HTML title set to "Several Files": -`textutil -cat {{html}} -title "Several Files" -output {{index.html}} *.rtf` +`textutil -cat {{html}} -title "Several Files" -output {{path/to/index.html}} *.rtf` diff --git a/pages/osx/top.md b/pages/osx/top.md index 4bb9042129..0e6da397ef 100644 --- a/pages/osx/top.md +++ b/pages/osx/top.md @@ -3,19 +3,19 @@ > Display dynamic real-time information about running processes. > More information: . -- Start top, all options are available in the interface: +- Start `top`, all options are available in the interface: `top` -- Start top sorting processes by internal memory size (default order - process ID): +- Start `top` sorting processes by internal memory size (default order - process ID): `top -o mem` -- Start top sorting processes first by CPU, then by running time: +- Start `top` sorting processes first by CPU, then by running time: `top -o cpu -O time` -- Start top displaying only processes owned by given user: +- Start `top` displaying only processes owned by given user: `top -user {{user_name}}` diff --git a/pages/osx/valet.md b/pages/osx/valet.md index 3928e5de5f..1e0aee0920 100644 --- a/pages/osx/valet.md +++ b/pages/osx/valet.md @@ -1,7 +1,7 @@ # valet > A Laravel development environment that allows hosting sites via local tunnels on `http://.test`. -> More information: . +> More information: . - Start the valet daemon: @@ -17,7 +17,7 @@ - Serve a single site instead of an entire directory: -`valet link app-name` +`valet link {{application_name}}` - Share a project via an Ngrok tunnel: diff --git a/pages/osx/w.md b/pages/osx/w.md index e39408d09e..fad1684e1a 100644 --- a/pages/osx/w.md +++ b/pages/osx/w.md @@ -4,14 +4,14 @@ > Print user login, TTY, remote host, login time, idle time, current process. > More information: . -- Show logged-in users info: +- Show logged-in users information: `w` -- Show logged-in users info without a header: +- Show logged-in users information without a header: `w -h` -- Show info about logged-in users, sorted by their idle time: +- Show information about logged-in users, sorted by their idle time: `w -i` diff --git a/pages/osx/wacaw.md b/pages/osx/wacaw.md index a9a24be0ea..c1bb711dbe 100644 --- a/pages/osx/wacaw.md +++ b/pages/osx/wacaw.md @@ -9,11 +9,11 @@ - Record a video: -`wacaw --video {{filename}} --duration {{duration_in_seconds}}` +`wacaw --video {{filename}} --duration {{10}}` - Take a picture with custom resolution: -`wacaw --width {{width}} --height {{height}} {{filename}}` +`wacaw --width {{width}} --height {{100}} {{filename}}` - Copy image just taken to clipboard: diff --git a/pages/osx/wc.md b/pages/osx/wc.md index bacf84c720..d6b2ea7c3f 100644 --- a/pages/osx/wc.md +++ b/pages/osx/wc.md @@ -19,6 +19,6 @@ `wc -m {{path/to/file}}` -- Use standard input to count lines, words and characters (bytes) in that order: +- Use `stdin` to count lines, words and characters (bytes) in that order: `{{find .}} | wc` diff --git a/pages/osx/whatis.md b/pages/osx/whatis.md index 39916d1f28..25a31ce2e7 100644 --- a/pages/osx/whatis.md +++ b/pages/osx/whatis.md @@ -9,4 +9,4 @@ - Search for information about multiple keywords: -`whatis {{first_keyword}} {{second_keyword}}` +`whatis {{keyword1}} {{keyword2}}` diff --git a/pages/osx/xcode-select.md b/pages/osx/xcode-select.md index 759f74ba27..c2a3d06525 100644 --- a/pages/osx/xcode-select.md +++ b/pages/osx/xcode-select.md @@ -14,7 +14,7 @@ - Select a given Xcode instance and use its developer directory as the active one: -`xcode-select --switch {{path/to/Xcode.app}}` +`xcode-select --switch {{path/to/Xcode_file.app}}` - Print the currently selected developer directory: diff --git a/pages/osx/xcodes-runtimes.md b/pages/osx/xcodes-runtimes.md new file mode 100644 index 0000000000..deece53322 --- /dev/null +++ b/pages/osx/xcodes-runtimes.md @@ -0,0 +1,16 @@ +# xcodes runtimes + +> Manage Xcode Simulator runtimes. +> More information: . + +- Display all available Simulator runtimes: + +`xcodes runtimes --include-betas` + +- Download a Simulator runtime: + +`xcodes runtimes download {{runtime_name}}` + +- Download and install a Simulator runtime: + +`xcodes runtimes install {{runtime_name}}` diff --git a/pages/osx/xcodes.md b/pages/osx/xcodes.md new file mode 100644 index 0000000000..89c6ac45f8 --- /dev/null +++ b/pages/osx/xcodes.md @@ -0,0 +1,29 @@ +# xcodes + +> Download, install and manage multiple Xcode versions. +> See also: `xcodes runtimes`. +> More information: . + +- List all installed Xcode versions: + +`xcodes installed` + +- List all available Xcode versions: + +`xcodes list` + +- Select an Xcode version by specifying a version number or a path: + +`xcodes select {{xcode_version|path/to/Xcode.app}}` + +- Download and install a specific Xcode version: + +`xcodes install {{xcode_version}}` + +- Install the latest Xcode release and select it: + +`xcodes install --latest --select` + +- Download a specific Xcode version archive to a given directory without installing it: + +`xcodes download {{xcode_version}} --directory {{path/to/directory}}` diff --git a/pages/osx/xcrun.md b/pages/osx/xcrun.md index 312f0c5483..7fe259c19e 100644 --- a/pages/osx/xcrun.md +++ b/pages/osx/xcrun.md @@ -19,10 +19,10 @@ `xcrun --toolchain {{name}}` -- Display help: - -`xcrun --help` - - Display version: `xcrun --version` + +- Display help: + +`xcrun --help` diff --git a/pages/osx/xctool.md b/pages/osx/xctool.md index 7e44084c43..889bb46123 100644 --- a/pages/osx/xctool.md +++ b/pages/osx/xctool.md @@ -1,7 +1,7 @@ # xctool > Tool for building Xcode projects. -> More information: . +> More information: . - Build a single project without any workspace: diff --git a/pages/osx/xml2man.md b/pages/osx/xml2man.md index fb1439b63e..09c43149a5 100644 --- a/pages/osx/xml2man.md +++ b/pages/osx/xml2man.md @@ -5,12 +5,12 @@ - Compile an MPGL file to a viewable man page: -`xml2man {{path/to/command.mxml}}` +`xml2man {{path/to/command_file.mxml}}` - Compile an MPGL file to a specific output file: -`xml2man {{path/to/service.mxml}} {{path/to/service.7}}` +`xml2man {{path/to/service_file.mxml}} {{path/to/service_file.7}}` - Compile an MPGL file to a specific output file, overwriting if it already exists: -`xml2man -f {{path/to/function.mxml}} {{path/to/function.3}}` +`xml2man -f {{path/to/function_file.mxml}} {{path/to/function_file.3}}` diff --git a/pages/osx/xsltproc.md b/pages/osx/xsltproc.md index 606c8a31eb..bc9509fb5d 100644 --- a/pages/osx/xsltproc.md +++ b/pages/osx/xsltproc.md @@ -5,8 +5,8 @@ - Transform an XML file with a specific XSLT stylesheet: -`xsltproc --output {{output.html}} {{stylesheet.xslt}} {{xmlfile.xml}}` +`xsltproc --output {{path/to/output_file.html}} {{path/to/stylesheet_file.xslt}} {{path/to/file.xml}}` - Pass a value to a parameter in the stylesheet: -`xsltproc --output {{output.html}} --stringparam "{{name}}" "{{value}}" {{stylesheet.xslt}} {{xmlfile.xml}}` +`xsltproc --output {{path/to/output_file.html}} --stringparam "{{name}}" "{{value}}" {{path/to/stylesheet_file.xslt}} {{path/to/xml_file.xml}}` diff --git a/pages/osx/yaa.md b/pages/osx/yaa.md index 580595f58e..af6fc9cc22 100644 --- a/pages/osx/yaa.md +++ b/pages/osx/yaa.md @@ -5,24 +5,24 @@ - Create an archive from a directory: -`yaa archive -d {{path/to/directory}} -o {{path/to/output.yaa}}` +`yaa archive -d {{path/to/directory}} -o {{path/to/output_file.yaa}}` - Create an archive from a file: -`yaa archive -i {{path/to/file}} -o {{path/to/output.yaa}}` +`yaa archive -i {{path/to/file}} -o {{path/to/output_file.yaa}}` - Extract an archive to the current directory: -`yaa extract -i {{path/to/archive.yaa}}` +`yaa extract -i {{path/to/archive_file.yaa}}` - List the contents of an archive: -`yaa list -i {{path/to/archive.yaa}}` +`yaa list -i {{path/to/archive_file.yaa}}` - Create an archive with a specific compression algorithm: -`yaa archive -a {{algorithm}} -d {{path/to/directory}} -o {{path/to/output.yaa}}` +`yaa archive -a {{algorithm}} -d {{path/to/directory}} -o {{path/to/output_file.yaa}}` - Create an archive with an 8 MB block size: -`yaa archive -b {{8m}} -d {{path/to/directory}} -o {{path/to/output.yaa}}` +`yaa archive -b {{8m}} -d {{path/to/directory}} -o {{path/to/output_file.yaa}}` diff --git a/pages/sunos/dmesg.md b/pages/sunos/dmesg.md index be7f6394e1..b73a4ef3b6 100644 --- a/pages/sunos/dmesg.md +++ b/pages/sunos/dmesg.md @@ -1,6 +1,6 @@ # dmesg -> Write the kernel messages to standard output. +> Write the kernel messages to `stdout`. > More information: . - Show kernel messages: diff --git a/pages/sunos/prstat.md b/pages/sunos/prstat.md index 1ceab064f6..3f481821a7 100644 --- a/pages/sunos/prstat.md +++ b/pages/sunos/prstat.md @@ -21,4 +21,4 @@ - Print out a list of top 5 CPU using processes every second: -`prstat -c -n 5 -s cpu 1` +`prstat -c -n {{5}} -s cpu {{1}}` diff --git a/pages/sunos/snoop.md b/pages/sunos/snoop.md index c71c2a5bcc..74be3913c0 100644 --- a/pages/sunos/snoop.md +++ b/pages/sunos/snoop.md @@ -10,11 +10,11 @@ - Save captured packets in a file instead of displaying them: -`snoop -o {{filename}}` +`snoop -o {{path/to/file}}` - Display verbose protocol layer summary of packets from a file: -`snoop -V -i {{filename}}` +`snoop -V -i {{path/to/file}}` - Capture network packets that come from a hostname and go to a given port: @@ -22,4 +22,4 @@ - Capture and show a hex-dump of network packets exchanged between two IP addresses: -`snoop -x0 -p4 {{ip_address_1}} {{ip_address_2}}` +`snoop -x0 -p4 {{ip1}} {{ip2}}` diff --git a/pages/sunos/svccfg.md b/pages/sunos/svccfg.md index 5fea761b79..cd820c0b63 100644 --- a/pages/sunos/svccfg.md +++ b/pages/sunos/svccfg.md @@ -5,12 +5,12 @@ - Validate configuration file: -`svccfg validate {{smf.xml}}` +`svccfg validate {{path/to/smf_file.xml}}` - Export service configurations to file: -`svccfg export {{servicename}} > {{smf.xml}}` +`svccfg export {{servicename}} > {{path/to/smf_file.xml}}` - Import/update service configurations from file: -`svccfg import {{smf.xml}}` +`svccfg import {{path/to/smf_file.xml}}` diff --git a/pages/windows/add-appxpackage.md b/pages/windows/add-appxpackage.md new file mode 100644 index 0000000000..bd0b99f9bf --- /dev/null +++ b/pages/windows/add-appxpackage.md @@ -0,0 +1,20 @@ +# add-appxpackage + +> A PowerShell utility to add a signed app package (`.appx`, `.msix`, `.appxbundle` and `.msixbundle`) to a user account. +> More information: . + +- Add an app package: + +`add-appxpackage -Path {{path\to\package.msix}}` + +- Add an app package with dependencies: + +`add-appxpackage -Path {{path\to\package.msix}} -DependencyPath {{path\to\dependencies.msix}}` + +- Install an app using the app installer file: + +`add-appxpackage -AppInstallerFile {{path\to\app.appinstaller}}` + +- Add an unsigned package: + +`add-appxpackage -Path {{path\to\package.msix}} -DependencyPath {{path\to\dependencies.msix}} -AllowUnsigned` diff --git a/pages/windows/assoc.md b/pages/windows/assoc.md index 22f686e4ac..18780496d0 100644 --- a/pages/windows/assoc.md +++ b/pages/windows/assoc.md @@ -14,3 +14,7 @@ - Set the associated file type for a specific extension: `assoc .{{txt}}={{txtfile}}` + +- View the output of `assoc` one screen at a time: + +`assoc | {{more}}` diff --git a/pages/windows/azcopy.md b/pages/windows/azcopy.md index ab074b6d83..b0977d5c24 100644 --- a/pages/windows/azcopy.md +++ b/pages/windows/azcopy.md @@ -9,11 +9,11 @@ - Upload a local file: -`azcopy copy '{{path/to/source/file}}' 'https://{{storage_account_name}}.blob.core.windows.net/{{container_name}}/{{blob_name}}'` +`azcopy copy '{{path\to\source_file}}' 'https://{{storage_account_name}}.blob.core.windows.net/{{container_name}}/{{blob_name}}'` - Upload files with `.txt` and `.jpg` extensions: -`azcopy copy '{{path/to/source}}' 'https://{{storage_account_name}}.blob.core.windows.net/{{container_name}}' --include-pattern '{{*.txt;*.jpg}}'` +`azcopy copy '{{path\to\source_directory}}' 'https://{{storage_account_name}}.blob.core.windows.net/{{container_name}}' --include-pattern '{{*.txt;*.jpg}}'` - Copy a container directly between two Azure storage accounts: @@ -21,7 +21,7 @@ - Synchronize a local directory and delete files in the destination if they no longer exist in the source: -`azcopy sync '{{path/to/source}}' 'https://{{storage_account_name}}.blob.core.windows.net/{{container_name}}' --recursive --delete-destination=true` +`azcopy sync '{{path\to\source_directory}}' 'https://{{storage_account_name}}.blob.core.windows.net/{{container_name}}' --recursive --delete-destination=true` - Display detailed usage information: diff --git a/pages/windows/bcdboot.md b/pages/windows/bcdboot.md new file mode 100644 index 0000000000..32eec4b1b5 --- /dev/null +++ b/pages/windows/bcdboot.md @@ -0,0 +1,24 @@ +# bcdboot + +> A system utility to configure or repair boot files. +> More information: . + +- Initialize the system partition by using BCD files from the source Windows folder: + +`bcdboot {{C:\Windows}}` + +- Enable verbose mode: + +`bcdboot {{C:\Windows}} /v` + +- Specify the volume letter of the system partition: + +`bcdboot {{C:\Windows}} /s {{S:}}` + +- Specify a locale: + +`bcdboot {{C:\Windows}} /l {{en-us}}` + +- Specify a firmware type while copying the boot files to a specified volume: + +`bcdboot {{C:\Windows}} /s {{S:}} /f {{UEFI|BIOS|ALL}}` diff --git a/pages/windows/bleachbit_console.md b/pages/windows/bleachbit_console.md new file mode 100644 index 0000000000..6957892cc0 --- /dev/null +++ b/pages/windows/bleachbit_console.md @@ -0,0 +1,24 @@ +# bleachbit_console + +> Clean junk files on the filesystem. +> More information: . + +- Perform the clean-up operation and delete files: + +`bleachbit_console.exe --clean` + +- Preview the files that will be deleted and other changes that will be made before actually performing the clean-up operation: + +`bleachbit_console.exe --preview` + +- Display system information: + +`bleachbit_console.exe --sysinfo` + +- Start the graphical user interface (GUI) version of Bleachbit: + +`bleachbit_console.exe --gui` + +- Display version: + +`bleachbit_console.exe --version` diff --git a/pages/windows/certutil.md b/pages/windows/certutil.md new file mode 100644 index 0000000000..9e77664ece --- /dev/null +++ b/pages/windows/certutil.md @@ -0,0 +1,24 @@ +# certutil + +> A tool to manage and configure certificate information. +> More information: . + +- Dump the configuration information or files: + +`certutil {{filename}}` + +- Encode a file in hexadecimal: + +`certutil -encodehex {{path\to\input_file}} {{path\to\output_file}}` + +- Encode a file to Base64: + +`certutil -encode {{path\to\input_file}} {{path\to\output_file}}` + +- Decode a Base64-encoded file: + +`certutil -decode {{path\to\input_file}} {{path\to\output_file}}` + +- Generate and display a cryptographic hash over a file: + +`certutil -hashfile {{path\to\input_file}} {{md2|md4|md5|sha1|sha256|sha384|sha512}}` diff --git a/pages/windows/choco-install.md b/pages/windows/choco-install.md index 50609adb40..b8617a709f 100644 --- a/pages/windows/choco-install.md +++ b/pages/windows/choco-install.md @@ -5,15 +5,15 @@ - Install one or more space-separated packages: -`choco install {{package(s)}}` +`choco install {{package1 package2 ...}}` - Install packages from a custom configuration file: -`choco install {{path/to/packages.config}}` +`choco install {{path\to\packages_file.config}}` - Install a specific nuspec or nupkg file: -`choco install {{path/to/file}}` +`choco install {{path\to\file}}` - Install a specific version of a package: diff --git a/pages/windows/choco-new.md b/pages/windows/choco-new.md index cdb676a91f..1eb4f63b44 100644 --- a/pages/windows/choco-new.md +++ b/pages/windows/choco-new.md @@ -5,20 +5,20 @@ - Create a new package skeleton: -`choco new {{package_name}}` +`choco new {{package}}` - Create a new package with a specific version: -`choco new {{package_name}} --version {{version}}` +`choco new {{package}} --version {{version}}` - Create a new package with a specific maintainer name: -`choco new {{package_name}} --maintainer {{maintainer_name}}` +`choco new {{package}} --maintainer {{maintainer_name}}` - Create a new package in a custom output directory: -`choco new {{package_name}} --output-directory {{path/to/directory}}` +`choco new {{package}} --output-directory {{path/to/directory}}` - Create a new package with specific 32-bit and 64-bit installer URLs: -`choco new {{package_name}} url="{{url}}" url64="{{url}}"` +`choco new {{package}} url="{{url}}" url64="{{url}}"` diff --git a/pages/windows/choco-pack.md b/pages/windows/choco-pack.md index 9ff7851edd..2e8ff24caf 100644 --- a/pages/windows/choco-pack.md +++ b/pages/windows/choco-pack.md @@ -5,12 +5,12 @@ - Package a NuGet specification to a nupkg file: -`choco pack {{path/to/specification}}` +`choco pack {{path\to\specification_file}}` - Package a NuGet specification specifying the version of the resulting file: -`choco pack {{path/to/specification}} --version {{version}}` +`choco pack {{path\to\specification_file}} --version {{version}}` - Package a NuGet specification to a specific directory: -`choco pack {{path/to/specification}} --output-directory {{path/to/output_directory}}` +`choco pack {{path\to\specification_file}} --output-directory {{path\to\output_directory}}` diff --git a/pages/windows/choco-source.md b/pages/windows/choco-source.md index 4e39f52463..a208768b66 100644 --- a/pages/windows/choco-source.md +++ b/pages/windows/choco-source.md @@ -17,7 +17,7 @@ - Add a new package source with a client certificate: -`choco source add --name {{name}} --source {{url}} --cert {{path/to/certificate}}` +`choco source add --name {{name}} --source {{url}} --cert {{path\to\certificate_file}}` - Enable a package source: diff --git a/pages/windows/choco-uninstall.md b/pages/windows/choco-uninstall.md index fbacf26cf7..3344ac19a5 100644 --- a/pages/windows/choco-uninstall.md +++ b/pages/windows/choco-uninstall.md @@ -5,7 +5,7 @@ - Uninstall one or more space-separated packages: -`choco uninstall {{package(s)}}` +`choco uninstall {{package1 package2 ...}}` - Uninstall a specific version of a package: diff --git a/pages/windows/choco-upgrade.md b/pages/windows/choco-upgrade.md index 4326f86b17..8d69d29650 100644 --- a/pages/windows/choco-upgrade.md +++ b/pages/windows/choco-upgrade.md @@ -5,7 +5,7 @@ - Upgrade one or more space-separated packages: -`choco upgrade {{package(s)}}` +`choco upgrade {{package1 package2 ...}}` - Upgrade to a specific version of a package: @@ -17,7 +17,7 @@ - Upgrade all except specified comma-separated packages: -`choco upgrade all --except "{{package(s)}}"` +`choco upgrade all --except "{{package1 package2 ...}}"` - Confirm all prompts automatically: diff --git a/pages/windows/choco.md b/pages/windows/choco.md index 7bcb4e1408..0e718efe40 100644 --- a/pages/windows/choco.md +++ b/pages/windows/choco.md @@ -1,10 +1,10 @@ # choco -> A command-line interface for the Chocolatey package manager. +> The Chocolatey package manager. > Some subcommands such as `choco install` have their own usage documentation. > More information: . -- Execute Chocolatey command: +- Execute a Chocolatey command: `choco {{command}}` diff --git a/pages/windows/cipher.md b/pages/windows/cipher.md index add273c99c..cec10723c6 100644 --- a/pages/windows/cipher.md +++ b/pages/windows/cipher.md @@ -5,16 +5,16 @@ - Display information about a specific encrypted file or directory: -`cipher /c:{{path/to/file_or_directory}}` +`cipher /c:{{path\to\file_or_directory}}` - [e]ncrypt a file or directory (files added later to the directory are also encrypted as the directory is marked): -`cipher /e:{{path/to/file_or_directory}}` +`cipher /e:{{path\to\file_or_directory}}` - [d]ecrypt a file or directory: -`cipher /d:{{path/to/file_or_directory}}` +`cipher /d:{{path\to\file_or_directory}}` - Securely remove a file or directory: -`cipher /w:{{path/to/file_or_directory}}` +`cipher /w:{{path\to\file_or_directory}}` diff --git a/pages/windows/clip.md b/pages/windows/clip.md index c0d9ed62e7..d1f5749b47 100644 --- a/pages/windows/clip.md +++ b/pages/windows/clip.md @@ -9,7 +9,7 @@ - Copy the contents of a file to the Windows clipboard: -`clip < {{path/to/file.ext}}` +`clip < {{path\to\file.ext}}` - Copy text with a trailing newline to the Windows clipboard: diff --git a/pages/windows/cmd.md b/pages/windows/cmd.md index 07732cc4a9..bb0b7966df 100644 --- a/pages/windows/cmd.md +++ b/pages/windows/cmd.md @@ -7,17 +7,17 @@ `cmd` -- Execute a [c]ommand: +- Execute specific [c]ommands: -`cmd /c "{{command}}"` +`cmd /c {{echo Hello world}}` -- Execute a script: +- Execute a specific script: -`cmd {{path/to/file.bat}}` +`cmd {{path\to\script.bat}}` -- Execute a command and then enter an interactive shell: +- Execute specific commands and then enter an interactive shell: -`cmd /k "{{command}}"` +`cmd /k {{echo Hello world}}` - Start an interactive shell session where `echo` is disabled in command output: @@ -31,6 +31,6 @@ `cmd /e:{{on|off}}` -- Start an interactive shell session with used Unicode encoding: +- Start an interactive shell session with used [u]nicode encoding: `cmd /u` diff --git a/pages/windows/cmdkey.md b/pages/windows/cmdkey.md new file mode 100644 index 0000000000..9678865d9a --- /dev/null +++ b/pages/windows/cmdkey.md @@ -0,0 +1,16 @@ +# cmdkey + +> Create, show, and delete stored user names and passwords. +> More information: . + +- Show a list of all user credentials: + +`cmdkey /list` + +- Store credentials for a user that accesses a server: + +`cmdkey /add:{{server_name}} /user:{{user_name}}` + +- Delete credentials for a specific target: + +`cmdkey.exe /delete {{target_name}}` diff --git a/pages/windows/cmstp.md b/pages/windows/cmstp.md index 914b25af6a..e5dd633606 100644 --- a/pages/windows/cmstp.md +++ b/pages/windows/cmstp.md @@ -1,36 +1,36 @@ # cmstp -> A command-line tool for managing connection service profiles. +> Manage connection service profiles. > More information: . - Install a specific profile: -`cmstp "{{path/to/profile}}"` +`cmstp "{{path\to\profile_file}}"` - Install without creating a desktop shortcut: -`cmstp /ns "{{path/to/profile}}"` +`cmstp /ns "{{path\to\profile_file}}"` - Install without checking for dependencies: -`cmstp /nf "{{path/to/profile}}"` +`cmstp /nf "{{path\to\profile_file}}"` - Only install for the current user: -`cmstp /su "{{path/to/profile}}"` +`cmstp /su "{{path\to\profile_file}}"` - Install for all users (requires administrator privileges): -`cmstp /au "{{path/to/profile}}"` +`cmstp /au "{{path\to\profile_file}}"` - Install silently without any prompts: -`cmstp /s "{{path/to/profile}}"` +`cmstp /s "{{path\to\profile_file}}"` - Uninstall a specific profile: -`cmstp /u "{{path/to/profile}}"` +`cmstp /u "{{path\to\profile_file}}"` - Uninstall silently without a confirmation prompt: -`cmstp /u /s "{{path/to/profile}}"` +`cmstp /u /s "{{path\to\profile_file}}"` diff --git a/pages/windows/comp.md b/pages/windows/comp.md index 3ff1849a1c..00e0a4ce76 100644 --- a/pages/windows/comp.md +++ b/pages/windows/comp.md @@ -10,28 +10,28 @@ - Compare two specified files: -`comp {{path/to/file_1}} {{path/to/file_2}}` +`comp {{path\to\file1}} {{path\to\file2}}` - Compare two sets of files: -`comp {{path/to/directory_1/*}} {{path/to/directory_2/*}}` +`comp {{path\to\directory1}}\* {{path\to\directory2}}\*` - Display differences in decimal format: -`comp /d {{path/to/file_1}} {{path/to/file_2}}` +`comp /d {{path\to\file1}} {{path\to\file2}}` - Display differences in ASCII format: -`comp /a {{path/to/file_1}} {{path/to/file_2}}` +`comp /a {{path\to\file1}} {{path\to\file2}}` - Display line numbers for differences: -`comp /l {{path/to/file_1}} {{path/to/file_2}}` +`comp /l {{path\to\file1}} {{path\to\file2}}` - Compare files case-insensitively: -`comp /c {{path/to/file_1}} {{path/to/file_2}}` +`comp /c {{path\to\file1}} {{path\to\file2}}` - Compare only the first 5 lines of each file: -`comp /n={{5}} {{path/to/file_1}} {{path/to/file_2}}` +`comp /n={{5}} {{path\to\file1}} {{path\to\file2}}` diff --git a/pages/windows/dir.md b/pages/windows/dir.md index ec1d0bc100..9aec8e4a20 100644 --- a/pages/windows/dir.md +++ b/pages/windows/dir.md @@ -9,12 +9,16 @@ - Show the contents of a given directory: -`dir {{path/to/directory}}` +`dir {{path\to\directory}}` - Show the contents of the current directory, including hidden ones: -`dir /A` +`dir /a` - Show the contents of a given directory, including hidden ones: -`dir {{path/to/directory}} /A` +`dir {{path\to\directory}} /a` + +- Show a bare list of directories and files, with no additional information: + +`dir /b` diff --git a/pages/windows/diskpart.md b/pages/windows/diskpart.md index 9e4e71ca24..b65882a0dc 100644 --- a/pages/windows/diskpart.md +++ b/pages/windows/diskpart.md @@ -3,7 +3,7 @@ > Disk, volume and partition manager. > More information: . -- Run diskpart by itself in an administrative command prompt to enter its command line: +- Run diskpart by itself in an administrative command prompt to enter its command-line: `diskpart` diff --git a/pages/windows/doskey.md b/pages/windows/doskey.md index e2ae6ade47..e8e9ab090f 100644 --- a/pages/windows/doskey.md +++ b/pages/windows/doskey.md @@ -25,8 +25,8 @@ - Save macros to a file for portability: -`doskey /macros > {{macinit}}` +`doskey /macros > {{path\to\macinit_file}}` - Load macros from a file: -`doskey /macrofile = {{macinit}}` +`doskey /macrofile = {{path\to\macinit_file}}` diff --git a/pages/windows/exit.md b/pages/windows/exit.md index 5d5aff9b81..2fdc937d04 100644 --- a/pages/windows/exit.md +++ b/pages/windows/exit.md @@ -13,4 +13,4 @@ - Quit using a specific exit code: -`exit {{exit_code}}` +`exit {{2}}` diff --git a/pages/windows/expand.md b/pages/windows/expand.md index fa8f37c1f5..da660593a9 100644 --- a/pages/windows/expand.md +++ b/pages/windows/expand.md @@ -5,20 +5,20 @@ - Uncompress a single-file Cabinet file to the specified directory: -`expand {{path/to/file.cab}} {{path/to/directory}}` +`expand {{path\to\file.cab}} {{path\to\directory}}` - Display the list of files in a source Cabinet file: -`expand {{path/to/file.cab}} {{path/to/directory}} -d` +`expand {{path\to\file.cab}} {{path\to\directory}} -d` - Uncompress all files from the Cabinet file: -`expand {{path/to/file.cab}} {{path/to/directory}} -f:*` +`expand {{path\to\file.cab}} {{path\to\directory}} -f:*` - Uncompress a specific file from a Cabinet file: -`expand {{path/to/file.cab}} {{path/to/directory}} -f:{{file}}` +`expand {{path\to\file.cab}} {{path\to\directory}} -f:{{path\to\file}}` - Ignore the directory structure when uncompressing, and add them to a single directory: -`expand {{path/to/file.cab}} {{path/to/directory}} -i` +`expand {{path\to\file.cab}} {{path\to\directory}} -i` diff --git a/pages/windows/explorer.md b/pages/windows/explorer.md index 15fc1b560b..30251b8119 100644 --- a/pages/windows/explorer.md +++ b/pages/windows/explorer.md @@ -13,4 +13,4 @@ - Open Windows Explorer in a specific directory: -`explorer {{path/to/directory}}` +`explorer {{path\to\directory}}` diff --git a/pages/windows/fc.md b/pages/windows/fc.md index 175d0d3e1b..632fef9b8b 100644 --- a/pages/windows/fc.md +++ b/pages/windows/fc.md @@ -6,28 +6,28 @@ - Compare 2 specified files: -`fc {{path/to/file_1}} {{path/to/file_2}}` +`fc {{path\to\file1}} {{path\to\file2}}` - Perform a case-insensitive comparison: -`fc /c {{path/to/file_1}} {{path/to/file_2}}` +`fc /c {{path\to\file1}} {{path\to\file2}}` - Compare files as Unicode text: -`fc /u {{path/to/file_1}} {{path/to/file_2}}` +`fc /u {{path\to\file1}} {{path\to\file2}}` - Compare files as ASCII text: -`fc /l {{path/to/file_1}} {{path/to/file_2}}` +`fc /l {{path\to\file1}} {{path\to\file2}}` - Compare files as binary: -`fc /b {{path/to/file_1}} {{path/to/file_2}}` +`fc /b {{path\to\file1}} {{path\to\file2}}` - Disable tab-to-space expansion: -`fc /t {{path/to/file_1}} {{path/to/file_2}}` +`fc /t {{path\to\file1}} {{path\to\file2}}` - Compress whitespace (tabs and spaces) for comparisons: -`fc /w {{path/to/file_1}} {{path/to/file_2}}` +`fc /w {{path\to\file1}} {{path\to\file2}}` diff --git a/pages/windows/find.md b/pages/windows/find.md index 1a39172840..a931846137 100644 --- a/pages/windows/find.md +++ b/pages/windows/find.md @@ -5,16 +5,16 @@ - Find lines that contain a specified string: -`find "{{string}}" {{path/to/file_or_directory}}` +`find "{{string}}" {{path\to\file_or_directory}}` - Display lines that do not contain the specified string: -`find "{{string}}" {{path/to/file_or_directory}} /v` +`find "{{string}}" {{path\to\file_or_directory}} /v` - Display the count of lines that contain the specified string: -`find "{{string}}" {{path/to/file_or_directory}} /c` +`find "{{string}}" {{path\to\file_or_directory}} /c` - Display line numbers with the list of lines: -`find "{{string}}" {{path/to/file_or_directory}} /n` +`find "{{string}}" {{path\to\file_or_directory}} /n` diff --git a/pages/windows/fondue.md b/pages/windows/fondue.md index de17e7483a..ec1c0964ea 100644 --- a/pages/windows/fondue.md +++ b/pages/windows/fondue.md @@ -1,6 +1,6 @@ # fondue -> A command-line installer for optional Windows features. +> Install optional Windows features. > More information: . - Enable a specific Windows feature: diff --git a/pages/windows/for.md b/pages/windows/for.md index 701c4b5c5c..01bde03a4b 100644 --- a/pages/windows/for.md +++ b/pages/windows/for.md @@ -13,11 +13,11 @@ - Iterate over a given list of files: -`for %{{variable}} in ({{file_a.ext file_b.ext file_c.ext}}) do ({{echo Loop is executed}})` +`for %{{variable}} in ({{path\to\file1.ext path\to\file2.ext ...}}) do ({{echo Loop is executed}})` - Iterate over a given list of directories: -`for /d %{{variable}} in ({{directory_a/ directory_b/ directory_c/}}) do ({{echo Loop is executed}})` +`for /d %{{variable}} in ({{path\to\directory1.ext path\to\directory2.ext ...}}) do ({{echo Loop is executed}})` - Perform a given command in every directory: diff --git a/pages/windows/forfiles.md b/pages/windows/forfiles.md index 9e5984f494..5b1a4bde21 100644 --- a/pages/windows/forfiles.md +++ b/pages/windows/forfiles.md @@ -9,7 +9,7 @@ - Search for files in a specific directory: -`forfiles /p {{path/to/directory}}` +`forfiles /p {{path\to\directory}}` - Run the specified command for each file: @@ -25,4 +25,4 @@ - Search for files older than 5 days: -`forfiles /d {{+5}}` +`forfiles /d +{{5}}` diff --git a/pages/windows/ftp.md b/pages/windows/ftp.md index 035bcc3431..5c8a6cff0b 100644 --- a/pages/windows/ftp.md +++ b/pages/windows/ftp.md @@ -17,7 +17,7 @@ - Run a file containing a list of FTP commands: -`ftp -s:{{path/to/file}} {{host}}` +`ftp -s:{{path\to\file}} {{host}}` - Download multiple files (glob expression): diff --git a/pages/windows/ftype.md b/pages/windows/ftype.md index ab71b111e2..bfa689dad3 100644 --- a/pages/windows/ftype.md +++ b/pages/windows/ftype.md @@ -13,4 +13,4 @@ - Set the associated program for a specific file type: -`ftype {{file_type}}="{{path/to/executable_command}}"` +`ftype {{file_type}}="{{path/to/executable_file}}"` diff --git a/pages/windows/get-acl.md b/pages/windows/get-acl.md new file mode 100644 index 0000000000..1f1cb3a770 --- /dev/null +++ b/pages/windows/get-acl.md @@ -0,0 +1,13 @@ +# Get-Acl + +> Gets the security descriptor for a resource, such as a file or registry key. +> This command can only be used through PowerShell. +> More information: . + +- Display the ACL for a specific directory: + +`Get-Acl {{path\to\directory}}` + +- Get an ACL for a registry key: + +`Get-Acl -Path {{HKLM:\System\CurrentControlSet\Control}} | Format-List` diff --git a/pages/windows/get-childitem.md b/pages/windows/get-childitem.md index f0641a6dfb..008ed35c7b 100644 --- a/pages/windows/get-childitem.md +++ b/pages/windows/get-childitem.md @@ -22,4 +22,4 @@ - List items in a directory other than the current one: -`Get-ChildItem -Path {{path/to/directory}}` +`Get-ChildItem -Path {{path\to\directory}}` diff --git a/pages/windows/get-content.md b/pages/windows/get-content.md index cdcb4834dc..81aed61615 100644 --- a/pages/windows/get-content.md +++ b/pages/windows/get-content.md @@ -6,12 +6,12 @@ - Display the content of a file: -`Get-Content -Path {{path/to/file}}` +`Get-Content -Path {{path\to\file}}` - Display the first few lines of a file: -`Get-Content -Path {{path/to/file}} -TotalCount {{count}}` +`Get-Content -Path {{path\to\file}} -TotalCount {{10}}` - Display the content of the file and keep reading from it until `Ctrl + C` is pressed: -`Get-Content -Path {{path/to/file}} -Wait` +`Get-Content -Path {{path\to\file}} -Wait` diff --git a/pages/windows/get-date.md b/pages/windows/get-date.md new file mode 100644 index 0000000000..76f6335802 --- /dev/null +++ b/pages/windows/get-date.md @@ -0,0 +1,21 @@ +# Get-Date + +> Gets the current date and time. +> This command can only be used through PowerShell. +> More information: . + +- Display the current date and time: + +`Get-Date` + +- Display the current date and time with a .NET format specifier: + +`Get-Date -Format "{{yyyy-MM-dd HH:mm:ss}}"` + +- Display the current date and time in UTC and ISO 8601 format: + +`(Get-Date).ToUniversalTime()` + +- Convert a Unix timestamp: + +`Get-Date -UnixTimeSeconds {{1577836800}}` diff --git a/pages/windows/get-filehash.md b/pages/windows/get-filehash.md index 34ad12160f..cf2f5941b7 100644 --- a/pages/windows/get-filehash.md +++ b/pages/windows/get-filehash.md @@ -6,8 +6,8 @@ - Calculate a hash for a specified file using the SHA256 algorithm: -`Get-FileHash {{path/to/file}}` +`Get-FileHash {{path\to\file}}` - Calculate a hash for a specified file using a specified algorithm: -`Get-FileHash {{path/to/file}} -Algorithm {{SHA1|SHA384|SHA256|SHA512|MD5}}` +`Get-FileHash {{path\to\file}} -Algorithm {{SHA1|SHA384|SHA256|SHA512|MD5}}` diff --git a/pages/windows/get-history.md b/pages/windows/get-history.md index fa5fbb5eb1..5522df3eac 100644 --- a/pages/windows/get-history.md +++ b/pages/windows/get-history.md @@ -14,4 +14,4 @@ - Display the last N commands: -`Get-History -Count {{count}}` +`Get-History -Count {{10}}` diff --git a/pages/windows/if.md b/pages/windows/if.md index db77b50c4a..5d412196bf 100644 --- a/pages/windows/if.md +++ b/pages/windows/if.md @@ -17,7 +17,7 @@ - Check whether `%errorlevel%` is greater than or equal to the specified exit code: -`if errorlevel {{exit_code}} ({{echo Condition is true}})` +`if errorlevel {{2}} ({{echo Condition is true}})` - Check whether two strings are equal: @@ -29,4 +29,4 @@ - Check whether a file exist: -`if exist {{path/to/file}} ({{echo Condition is true}})` +`if exist {{path\to\file}} ({{echo Condition is true}})` diff --git a/pages/windows/invoke-item.md b/pages/windows/invoke-item.md index 725b29f941..c6201bce6b 100644 --- a/pages/windows/invoke-item.md +++ b/pages/windows/invoke-item.md @@ -6,24 +6,24 @@ - Open a file in its default program: -`Invoke-Item -Path {{path/to/file}}` +`Invoke-Item -Path {{path\to\file}}` - Open all files inside a directory: -`Invoke-Item -Path {{path/to/directory/*}}` +`Invoke-Item -Path {{path\to\directory}}\*` - Open all PNGs inside a directory: -`Invoke-Item -Path {{path/to/directory/*.png}}` +`Invoke-Item -Path {{path\to\directory}}\*.png` - Open all files inside a directory containing a specific keyword: -`Invoke-Item -Path {{path/to/directory/*}} -Include {{*keyword*}}` +`Invoke-Item -Path {{path\to\directory}}\* -Include {{*keyword*}}` - Open all files inside a directory except those containing a specific keyword: -`Invoke-Item -Path {{path/to/directory/*}} -Exclude {{*keyword*}}` +`Invoke-Item -Path {{path\to\directory}}\* -Exclude {{*keyword*}}` - Perform a dry run to determine which files will be opened inside a directory through `Invoke-Item`: -`Invoke-Item -Path {{path/to/directory/*}} -WhatIf` +`Invoke-Item -Path {{path\to\directory}}\* -WhatIf` diff --git a/pages/windows/invoke-webrequest.md b/pages/windows/invoke-webrequest.md index d6538ab2a9..f747e8cef9 100644 --- a/pages/windows/invoke-webrequest.md +++ b/pages/windows/invoke-webrequest.md @@ -6,7 +6,7 @@ - Download the contents of a URL to a file: -`Invoke-WebRequest {{http://example.com}} -OutFile {{filename}}` +`Invoke-WebRequest {{http://example.com}} -OutFile {{path\to\file}}` - Send form-encoded data (POST request of type `application/x-www-form-urlencoded`): @@ -18,7 +18,7 @@ - Send data in JSON format, specifying the appropriate content-type header: -`Invoke-WebRequest -Body {{'{"name":"bob"}'}} -ContentType 'application/json' {{http://example.com/users/1234}}` +`Invoke-WebRequest -Body {{'{"name":"bob"}'}} -ContentType 'application/json' {{http://example.com/users/1234}}` - Pass a username and password for server authentication: diff --git a/pages/windows/ipconfig.md b/pages/windows/ipconfig.md index 8fec1cb278..133ac863e3 100644 --- a/pages/windows/ipconfig.md +++ b/pages/windows/ipconfig.md @@ -19,6 +19,10 @@ `ipconfig /release {{adapter}}` -- Remove all data from the DNS cache: +- Show the local DNS cache: + +`ipconfig /displaydns` + +- Remove all data from the local DNS cache: `ipconfig /flushdns` diff --git a/pages/windows/iscc.md b/pages/windows/iscc.md index b81c52df43..de5933da21 100644 --- a/pages/windows/iscc.md +++ b/pages/windows/iscc.md @@ -6,12 +6,12 @@ - Compile an Inno Setup script: -`iscc {{path/to/file.iss}}` +`iscc {{path\to\file.iss}}` - Quietly compile an Inno Setup installer: -`iscc /Q {{path/to/file.iss}}` +`iscc /Q {{path\to\file.iss}}` - Compile a signed Inno Setup installer: -`iscc /S={{name}}={{command}} {{path/to/file.iss}}` +`iscc /S={{name}}={{command}} {{path\to\file.iss}}` diff --git a/pages/windows/measure-command.md b/pages/windows/measure-command.md new file mode 100644 index 0000000000..03bfd5277b --- /dev/null +++ b/pages/windows/measure-command.md @@ -0,0 +1,13 @@ +# Measure-Command + +> Measures the time it takes to run script blocks and cmdlets. +> This command can only be used through PowerShell. +> More information: . + +- Measure the time it takes to run a command: + +`Measure-Command { {{command}} }` + +- Pipe input to Measure-Command (objects that are piped to `Measure-Command` are available to the script block that is passed to the Expression parameter): + +`10, 20, 50 | Measure-Command -Expression { for ($i=0; $i -lt $_; $i++) {$i} }` diff --git a/pages/windows/measure-object.md b/pages/windows/measure-object.md new file mode 100644 index 0000000000..c4950ca813 --- /dev/null +++ b/pages/windows/measure-object.md @@ -0,0 +1,13 @@ +# Measure-Object + +> Calculates the numeric properties of objects, and the characters, words, and lines in string objects, such as files of text. +> This command can only be used through PowerShell. +> More information: . + +- Count the files and folders in a directory: + +`Get-ChildItem | Measure-Object` + +- Pipe input to Measure-Command (objects that are piped to `Measure-Command` are available to the script block that is passed to the Expression parameter): + +`"One", "Two", "Three", "Four" | Set-Content -Path "{{path\to\file}}"; Get-Content "{{path\to\file}}"; | Measure-Object -Character -Line -Word` diff --git a/pages/windows/mkdir.md b/pages/windows/mkdir.md index 785e9b0dcc..aa4933206a 100644 --- a/pages/windows/mkdir.md +++ b/pages/windows/mkdir.md @@ -5,8 +5,8 @@ - Create a directory: -`mkdir {{path/to/directory}}` +`mkdir {{path\to\directory}}` - Create a nested directory tree recursively: -`mkdir {{path/to/sub_directory}}` +`mkdir {{path\to\sub_directory}}` diff --git a/pages/windows/mklink.md b/pages/windows/mklink.md index fb07fa1d10..0d7a78f246 100644 --- a/pages/windows/mklink.md +++ b/pages/windows/mklink.md @@ -5,16 +5,16 @@ - Create a symbolic link to a file: -`mklink {{path/to/link}} {{path/to/source_file}}` +`mklink {{path\to\link_file}} {{path\to\source_file}}` - Create a symbolic link to a directory: -`mklink /d {{path/to/link}} {{path/to/source_directory}}` +`mklink /d {{path\to\link_file}} {{path\to\source_directory}}` - Create a hard link to a file: -`mklink /h {{path/to/link}} {{path/to/source_file}}` +`mklink /h {{path\to\link_file}} {{path\to\source_file}}` - Create a directory junction: -`mklink /j {{path/to/link}} {{path/to/source_file}}` +`mklink /j {{path\to\link_file}} {{path\to\source_file}}` diff --git a/pages/windows/more.md b/pages/windows/more.md index 302d33c56e..40b7fdd134 100644 --- a/pages/windows/more.md +++ b/pages/windows/more.md @@ -9,23 +9,23 @@ - Display paginated output from one or more files: -`more {{path/to/file}}` +`more {{path\to\file}}` - Convert tabs to the specified number of spaces: -`more {{path/to/file}} /t{{spaces}}` +`more {{path\to\file}} /t{{spaces}}` - Clear the screen before displaying the page: -`more {{path/to/file}} /c` +`more {{path\to\file}} /c` - Display the output starting at line 5: -`more {{path/to/file}} +{{5}}` +`more {{path\to\file}} +{{5}}` - Enable extended interactive mode (see help for usage): -`more {{path/to/file}} /e` +`more {{path\to\file}} /e` - Display full usage information: diff --git a/pages/windows/msg.md b/pages/windows/msg.md index 262262456b..21ca84d9ec 100644 --- a/pages/windows/msg.md +++ b/pages/windows/msg.md @@ -21,4 +21,4 @@ - Set a delay in seconds for a message: -`msg /time:{{seconds}}` +`msg /time:{{10}}` diff --git a/pages/windows/msiexec.md b/pages/windows/msiexec.md index ee90c1c37a..5cff718a5b 100644 --- a/pages/windows/msiexec.md +++ b/pages/windows/msiexec.md @@ -5,7 +5,7 @@ - Install a program from its MSI package: -`msiexec /package {{path/to/file.msi}}` +`msiexec /package {{path\to\file.msi}}` - Install a MSI package from a website: @@ -13,8 +13,8 @@ - Install a MSP patch file: -`msiexec /update {{path/to/file.msp}}` +`msiexec /update {{path\to\file.msp}}` - Uninstall a program or patch using their respective MSI or MSP file: -`msiexec /uninstall {{path/to/file}}` +`msiexec /uninstall {{path\to\file}}` diff --git a/pages/windows/net.md b/pages/windows/net.md new file mode 100644 index 0000000000..3ae82cb77a --- /dev/null +++ b/pages/windows/net.md @@ -0,0 +1,36 @@ +# net + +> System utility to view and modify network-related settings. +> More information: . + +- Start or stop a Windows service synchronously: + +`net {{start|stop}} {{service}}` + +- Make sure an SMB share is available in the current console: + +`net use {{\\smb_shared_folder}} /USER:{{username}}` + +- Show the folders currently shared over SMB: + +`net share` + +- Show who is using your SMB shares (run in elevated console): + +`net session` + +- Show users in a local security group: + +`net localgroup "{{Administrators}}"` + +- Add a user to the local security group (run in elevated console): + +`net localgroup "{{Administrators}}" {{username}} /add` + +- Display help for a subcommand: + +`net help {{subcommand}}` + +- Display help: + +`net help` diff --git a/pages/windows/netsh-interface-portproxy.md b/pages/windows/netsh-interface-portproxy.md new file mode 100644 index 0000000000..a603e51f56 --- /dev/null +++ b/pages/windows/netsh-interface-portproxy.md @@ -0,0 +1,20 @@ +# netsh interface portproxy + +> Configure and display the status of various network components. +> More information: . + +- Display the current port forwarding setup: + +`netsh interface portproxy show all` + +- Set up IPv4 port forwarding (run in elevated console): + +`netsh interface portproxy add v4tov4 listenaddress={{192.168.0.1}} listenport={{8080}} connectaddress={{10.0.0.1}} connectport={{80}}` + +- Remove IPv4 port forwarding (run in elevated console): + +`netsh interface portproxy delete v4tov4 listenaddress={{192.168.0.1}} listenport={{8080}}` + +- Display help: + +`netsh interface portproxy` diff --git a/pages/windows/octo.md b/pages/windows/octo.md index ae4bb4afa0..daee05a953 100644 --- a/pages/windows/octo.md +++ b/pages/windows/octo.md @@ -5,11 +5,11 @@ - Create a package: -`octo pack --id={{package_name}}` +`octo pack --id={{package}}` - Push a package to a repository on the Octopus server: -`octo push --package={{package_name}}` +`octo push --package={{package}}` - Create a release: diff --git a/pages/windows/out-string.md b/pages/windows/out-string.md new file mode 100644 index 0000000000..2a946af9cd --- /dev/null +++ b/pages/windows/out-string.md @@ -0,0 +1,17 @@ +# Out-String + +> Outputs input objects as a string. +> This command can only be used through PowerShell. +> More information: . + +- Print host information as string: + +`Get-Alias | Out-String` + +- Convert each object to a string rather than concatenating all the objects into a single string: + +`Get-Alias | Out-String -Stream` + +- Use the `Width` parameter to prevent truncation: + +`@{TestKey = ('x' * 200)} | Out-String -Width {{250}}` diff --git a/pages/windows/pabcnetcclear.md b/pages/windows/pabcnetcclear.md index 5f37c3b2d1..952311bd99 100644 --- a/pages/windows/pabcnetcclear.md +++ b/pages/windows/pabcnetcclear.md @@ -5,20 +5,20 @@ - Compile the specified source file into an executable with the same name: -`pabcnetcclear {{path/to/source_file.pas}}` +`pabcnetcclear {{path\to\source_file.pas}}` - Compile the specified source file into an executable with the specified name: -`pabcnetcclear /Output:{{path/to/file.exe}} {{path/to/source_file.pas}}` +`pabcnetcclear /Output:{{path\to\_file.exe}} {{path\to\source_file.pas}}` - Compile the specified source file into an executable with the same name along with/without debug information: -`pabcnetcclear /Debug:{{0|1}} {{path/to/source_file.pas}}` +`pabcnetcclear /Debug:{{0|1}} {{path\to\source_file.pas}}` - Allow units to be searched in the specified path while compiling the source file into an executable with the same name: -`pabcnetcclear /SearchDir:{{path/to/dir}} {{path/to/source_file.pas}}` +`pabcnetcclear /SearchDir:{{path\to\directory}} {{path\to\source_file.pas}}` - Compile the specified source file into an executable, defining a symbol: -`pabcnetcclear /Define:{{symbol}} {{path/to/source_file.pas}}` +`pabcnetcclear /Define:{{symbol}} {{path\to\source_file.pas}}` diff --git a/pages/windows/path.md b/pages/windows/path.md index b834729216..9bc6d667f5 100644 --- a/pages/windows/path.md +++ b/pages/windows/path.md @@ -9,11 +9,11 @@ - Set the path to one or more semicolon-separated directories: -`path {{path/to/directory(s)}}` +`path {{path\to\directory1 path\to\directory2 ...}}` - Append a new directory to the original path: -`path {{path/to/directory}};%path%` +`path {{path\to\directory}};%path%` - Set command prompt to only search the current directory for executables: diff --git a/pages/windows/pipwin.md b/pages/windows/pipwin.md index 7155fa3292..9627294f3c 100644 --- a/pages/windows/pipwin.md +++ b/pages/windows/pipwin.md @@ -13,16 +13,16 @@ - Install a package: -`pipwin install {{package_name}}` +`pipwin install {{package}}` - Uninstall a package: -`pipwin uninstall {{package_name}}` +`pipwin uninstall {{package}}` - Download a package to a specific directory: -`pipwin download --dest {{path/to/directory}} {{package_name}}` +`pipwin download --dest {{path\to\directory}} {{package}}` - Install packages according to `requirements.txt`: -`pipwin install --file {{path/to/requirements.txt}}` +`pipwin install --file {{path\to\requirements.txt}}` diff --git a/pages/windows/print.md b/pages/windows/print.md index 9a97c1295d..75f90475b1 100644 --- a/pages/windows/print.md +++ b/pages/windows/print.md @@ -5,8 +5,8 @@ - Print a text file to the default printer: -`print {{path/to/file}}` +`print {{path\to\file}}` - Print a text file to a specific printer: -`print /d:{{printer}} {{path/to/file}}` +`print /d:{{printer}} {{path\to\file}}` diff --git a/pages/windows/prompt.md b/pages/windows/prompt.md new file mode 100644 index 0000000000..a84ab7c0fa --- /dev/null +++ b/pages/windows/prompt.md @@ -0,0 +1,24 @@ +# prompt + +> Change the default DOS style prompt in a command window. +> More information: . + +- Reset the prompt to the default setting: + +`prompt` + +- Set a specific prompt: + +`prompt {{prompt}}` + +- Change the prompt to show the current date first: + +`prompt $D $P$G` + +- Change the prompt to show the current time first: + +`prompt $T $P$G` + +- Change the prompt by adding a specific text first: + +`prompt {{text}} $P$G` diff --git a/pages/windows/psexec.md b/pages/windows/psexec.md index 24b7ceede4..1faeec8d7e 100644 --- a/pages/windows/psexec.md +++ b/pages/windows/psexec.md @@ -14,7 +14,7 @@ - Execute a command remotely and output the result to a file: -`psexec \\{{remote_host}} cmd /c {{command}} -an ^>{{path/to/file.txt}}` +`psexec \\{{remote_host}} cmd /c {{command}} -an ^>{{path\to\file.txt}}` - Execute a program to interact with users: diff --git a/pages/windows/pushd.md b/pages/windows/pushd.md index 8c546792a6..d9e8ef2c64 100644 --- a/pages/windows/pushd.md +++ b/pages/windows/pushd.md @@ -6,4 +6,4 @@ - Switch to directory and push it on the stack: -`pushd {{path/to/directory}}` +`pushd {{path\to\directory}}` diff --git a/pages/windows/pwlauncher.md b/pages/windows/pwlauncher.md index 134ee435ee..44490f8bf6 100644 --- a/pages/windows/pwlauncher.md +++ b/pages/windows/pwlauncher.md @@ -1,6 +1,6 @@ # pwlauncher -> A command-line tool for managing the Windows To Go startup options. +> Manage the Windows To Go startup options. > More information: . - Display the current Windows To Go status: diff --git a/pages/windows/pwsh-where.md b/pages/windows/pwsh-where.md new file mode 100644 index 0000000000..afcaaf0a8d --- /dev/null +++ b/pages/windows/pwsh-where.md @@ -0,0 +1,8 @@ +# where + +> This command is an alias of `Where-Object`. +> More information: . + +- View documentation for the original command: + +`tldr Where-Object` diff --git a/pages/windows/rdpsign.md b/pages/windows/rdpsign.md index 3635e9f565..7999279e65 100644 --- a/pages/windows/rdpsign.md +++ b/pages/windows/rdpsign.md @@ -5,20 +5,20 @@ - Sign an RDP file: -`rdpsign {{path/to/file.rdp}}` +`rdpsign {{path\to\file.rdp}}` - Sign an RDP file using a specific sha256 hash: -`rdpsign {{path/to/file.rdp}} /sha265 {{hash}}` +`rdpsign {{path\to\file.rdp}} /sha265 {{hash}}` - Enable quiet output: -`rdpsign {{path/to/file.rdp}} /q` +`rdpsign {{path\to\file.rdp}} /q` - Display verbose warnings, messages and statuses: -`rdpsign {{path/to/file.rdp}} /v` +`rdpsign {{path\to\file.rdp}} /v` - Test the signing by displaying the output to `stdout` without updating the file: -`rdpsign {{path/to/file.rdp}} /l` +`rdpsign {{path\to\file.rdp}} /l` diff --git a/pages/windows/reg-export.md b/pages/windows/reg-export.md index c8323e82c5..034afdf420 100644 --- a/pages/windows/reg-export.md +++ b/pages/windows/reg-export.md @@ -5,8 +5,8 @@ - Export all sub keys and values of a specific key: -`reg export {{key_name}} {{path/to/file.reg}}` +`reg export {{key_name}} {{path\to\file.reg}}` - Force overwriting of an existing file without prompt: -`reg export {{key_name}} {{path/to/file.reg}} /y` +`reg export {{key_name}} {{path\to\file.reg}} /y` diff --git a/pages/windows/reg-import.md b/pages/windows/reg-import.md index e042bfcd8e..938f065d85 100644 --- a/pages/windows/reg-import.md +++ b/pages/windows/reg-import.md @@ -5,4 +5,4 @@ - Import all keys, subkeys and values from a file: -`reg import {{path/to/file.reg}}` +`reg import {{path\to\file.reg}}` diff --git a/pages/windows/reg-load.md b/pages/windows/reg-load.md index 77cb8ad531..686ca88af1 100644 --- a/pages/windows/reg-load.md +++ b/pages/windows/reg-load.md @@ -6,4 +6,4 @@ - Load a backup file into the specified key: -`reg load {{key_name}} {{path/to/file}}` +`reg load {{key_name}} {{path\to\file}}` diff --git a/pages/windows/reg-restore.md b/pages/windows/reg-restore.md index 8ee399fea0..00087338e4 100644 --- a/pages/windows/reg-restore.md +++ b/pages/windows/reg-restore.md @@ -6,4 +6,4 @@ - Overwrite a specified key with data from a backup file: -`reg restore {{key_name}} {{path/to/file}}` +`reg restore {{key_name}} {{path\to\file}}` diff --git a/pages/windows/reg-save.md b/pages/windows/reg-save.md index 911a340cf2..fb2d876661 100644 --- a/pages/windows/reg-save.md +++ b/pages/windows/reg-save.md @@ -5,8 +5,8 @@ - Save a registry key, its sub keys and values to a specific file: -`reg save {{key_name}} {{path/to/file}}` +`reg save {{key_name}} {{path\to\file}}` - Forcefully overwrite an existing file without a prompt: -`reg save {{key_name}} {{path/to/file}} /y` +`reg save {{key_name}} {{path\to\file}} /y` diff --git a/pages/windows/reg.md b/pages/windows/reg.md index 7641e4a53d..4463b00f94 100644 --- a/pages/windows/reg.md +++ b/pages/windows/reg.md @@ -1,10 +1,10 @@ # reg -> A command-line interface for managing keys and their values in the Windows registry. +> Manage keys and their values in the Windows registry. > Some subcommands such as `reg add` have their own usage documentation. > More information: . -- Execute registry commands: +- Execute a registry command: `reg {{command}}` diff --git a/pages/windows/remove-appxpackage.md b/pages/windows/remove-appxpackage.md new file mode 100644 index 0000000000..23397ffbfe --- /dev/null +++ b/pages/windows/remove-appxpackage.md @@ -0,0 +1,20 @@ +# remove-appxpackage + +> A PowerShell utility to remove an app package from one or more user accounts. +> More information: . + +- Remove an app package: + +`remove-appxpackage {{package}}` + +- Remove an app package for a specific user: + +`remove-appxpackage {{package}} -User {{username}}` + +- Remove an app package for all users: + +`remove-appxpackage {{package}} -AllUsers` + +- Remove an app package but preserve it's app data: + +`remove-appxpackage {{package}} -PreserveApplicationData` diff --git a/pages/windows/repair-bde.md b/pages/windows/repair-bde.md index 57cb35bb41..2ece75fc9e 100644 --- a/pages/windows/repair-bde.md +++ b/pages/windows/repair-bde.md @@ -13,7 +13,7 @@ - Attempt to repair a specified volume using the provided recovery key file: -`repair-bde {{C:}} -RecoveryKey {{path/to/file.bek}}` +`repair-bde {{C:}} -RecoveryKey {{path\to\file.bek}}` - Attempt to repair a specified volume using the provided numerical recovery password: @@ -25,11 +25,11 @@ - Attempt to repair a specified volume using the provided key package: -`repair-bde {{C:}} -KeyPackage {{path/to/directory}}` +`repair-bde {{C:}} -KeyPackage {{path\to\directory}}` - Log all output to a specific file: -`repair-bde {{C:}} -LogFile {{path/to/file}}` +`repair-bde {{C:}} -LogFile {{path\to\file}}` - Display all available options: diff --git a/pages/windows/replace.md b/pages/windows/replace.md index 9f41059e10..f21363d3dc 100644 --- a/pages/windows/replace.md +++ b/pages/windows/replace.md @@ -6,31 +6,31 @@ - Replace the destination file with the one from the source directory: -`replace {{path/to/file_or_directory}} {{path/to/destination}}` +`replace {{path\to\file_or_directory}} {{path\to\destination_directory}}` - Add files to the destination directory instead of replacing existing files: -`replace {{path/to/file_or_directory}} {{path/to/destination}} /a` +`replace {{path\to\file_or_directory}} {{path\to\destination_directory}} /a` - Interactively copy multiple files, with a prompt before replacing or adding a destination file: -`replace {{path/to/file_or_directory}} {{path/to/destination}} /p` +`replace {{path\to\file_or_directory}} {{path\to\destination_directory}} /p` - Replace even read only files: -`replace {{path/to/file_or_directory}} {{path/to/destination}} /r` +`replace {{path\to\file_or_directory}} {{path\to\destination_directory}} /r` - Wait for you to insert a disk before it replaces files (originally to allow inserting a floppy disk): -`replace {{path/to/file_or_directory}} {{path/to/destination}} /w` +`replace {{path\to\file_or_directory}} {{path\to\destination_directory}} /w` - Replace all files in subdirectories of the destination: -`replace {{path/to/file_or_directory}} {{path/to/destination}} /s` +`replace {{path\to\file_or_directory}} {{path\to\destination_directory}} /s` - Replace only files in the destination directory which are older than the files in the source directory: -`replace {{path/to/file_or_directory}} {{path/to/destination}} /u` +`replace {{path\to\file_or_directory}} {{path\to\destination_directory}} /u` - Display detailed usage information: diff --git a/pages/windows/resolve-path.md b/pages/windows/resolve-path.md new file mode 100644 index 0000000000..99d62e9f0b --- /dev/null +++ b/pages/windows/resolve-path.md @@ -0,0 +1,17 @@ +# Resolve-Path + +> Resolves the wildcard characters in a path, and displays the path contents. +> This command can only be used through PowerShell. +> More information: . + +- Resolve the home folder path: + +`Resolve-Path {{~}}` + +- Resolve a UNC path: + +`Resolve-Path -Path "\\{{hostname}}\{{path\to\file}}"` + +- Get relative paths: + +`Resolve-Path -Path {{path\to\file_or_directory}} -Relative` diff --git a/pages/windows/rmdir.md b/pages/windows/rmdir.md index 5fe941f89b..3f231126d9 100644 --- a/pages/windows/rmdir.md +++ b/pages/windows/rmdir.md @@ -5,12 +5,12 @@ - Remove an empty directory: -`rmdir {{path/to/directory}}` +`rmdir {{path\to\directory}}` - Remove a directory and its contents recursively: -`rmdir {{path/to/directory}} /s` +`rmdir {{path\to\directory}} /s` - Remove a directory and its contents recursively without prompting: -`rmdir {{path/to/directory}} /s /q` +`rmdir {{path\to\directory}} /s /q` diff --git a/pages/windows/robocopy.md b/pages/windows/robocopy.md index 9ef95c0b6b..d01c184c31 100644 --- a/pages/windows/robocopy.md +++ b/pages/windows/robocopy.md @@ -6,27 +6,27 @@ - Copy all `.jpg` and `.bmp` files from one directory to another: -`robocopy {{path/to/source}} {{path/to/destination}} {{*.jpg}} {{*.bmp}}` +`robocopy {{path\to\source_directory}} {{path\to\destination_directory}} {{*.jpg}} {{*.bmp}}` - Copy all files and subdirectories, including empty ones: -`robocopy {{path/to/source}} {{path/to/destination}} /E` +`robocopy {{path\to\source_directory}} {{path\to\destination_directory}} /E` - Mirror/Sync a directory, deleting anything not in source and include all attributes and permissions: -`robocopy {{path/to/source}} {{path/to/destination}} /MIR /COPYALL` +`robocopy {{path\to\source_directory}} {{path\to\destination_directory}} /MIR /COPYALL` - Copy all files and subdirectories, excluding source files that are older than destination files: -`robocopy {{path/to/source}} {{path/to/destination}} /E /XO` +`robocopy {{path\to\source_directory}} {{path\to\destination_directory}} /E /XO` - List all files 50 MB or larger instead of copying them: -`robocopy {{path/to/source}} {{path/to/destination}} /MIN:{{52428800}} /L` +`robocopy {{path\to\source_directory}} {{path\to\destination_directory}} /MIN:{{52428800}} /L` - Allow resuming if network connection is lost and limit retries to 5 and wait time to 15 sec: -`robocopy {{path/to/source}} {{path/to/destination}} /Z /R:5 /W:15` +`robocopy {{path\to\source_directory}} {{path\to\destination_directory}} /Z /R:5 /W:15` - Display detailed usage information: diff --git a/pages/windows/sc.md b/pages/windows/sc.md new file mode 100644 index 0000000000..94787744e7 --- /dev/null +++ b/pages/windows/sc.md @@ -0,0 +1,20 @@ +# sc + +> Communicate with the Service Control Manager and services. +> More information: . + +- Show the status of a service (no service name will list all services): + +`sc queryex {{service_name}}` + +- Start a service asynchronously: + +`sc start {{service_name}}` + +- Stop a service asynchronously: + +`sc stop {{service_name}}` + +- Set the type of a service: + +`sc config {{service_name}} type= {{service_type}}` diff --git a/pages/windows/scoop.md b/pages/windows/scoop.md index dea89e995f..8e7e53fec7 100644 --- a/pages/windows/scoop.md +++ b/pages/windows/scoop.md @@ -1,6 +1,6 @@ # scoop -> A command-line installer for Windows. +> The Scoop package manager. > More information: . - Install a package: diff --git a/pages/windows/select-string.md b/pages/windows/select-string.md new file mode 100644 index 0000000000..2f9a301493 --- /dev/null +++ b/pages/windows/select-string.md @@ -0,0 +1,26 @@ +# Select-String + +> Finds text in strings and files in PowerShell. +> This command can only be used through PowerShell. +> You can use `Select-String` similar to grep in UNIX or findstr.exe in Windows. +> More information: . + +- Search for a pattern within a file: + +`Select-String -Path "{{path\to\file}}" -Pattern '{{search_pattern}}'` + +- Search for an exact string (disables regular expressions): + +`Select-String -SimpleMatch "{{exact_string}}" {{path\to\file}}` + +- Search for pattern in all `.ext` files in current dir: + +`Select-String -Path "{{*.ext}}" -Pattern '{{search_pattern}}'` + +- Capture the specified number of lines before and after the line that matches the pattern: + +`Select-String --Context {{2,3}} "{{search_pattern}}" {{path\to\file}}` + +- Search `stdin` for lines that do not match a pattern: + +`Get-Content {{path\to\file}} | Select-String --NotMatch "{{search_pattern}}"` diff --git a/pages/windows/set-acl.md b/pages/windows/set-acl.md new file mode 100644 index 0000000000..f9f9a3f4c8 --- /dev/null +++ b/pages/windows/set-acl.md @@ -0,0 +1,13 @@ +# Set-Acl + +> Changes the security descriptor of a specified item, such as a file or a registry key. +> This command can only be used through PowerShell. +> More information: . + +- Copy a security descriptor from one file to another: + +`$OriginAcl = Get-Acl -Path {{path\to\file}}; Set-Acl -Path {{path\to\file}} -AclObject $OriginAcl` + +- Use the pipeline operator to pass a descriptor: + +`Get-Acl -Path {{path\to\file}} | Set-Acl -Path {{path\to\file}}` diff --git a/pages/windows/set-date.md b/pages/windows/set-date.md new file mode 100644 index 0000000000..787dfe7790 --- /dev/null +++ b/pages/windows/set-date.md @@ -0,0 +1,17 @@ +# Set-Date + +> Changes the system time on the computer to a time that you specify. +> This command can only be used through PowerShell. +> More information: . + +- Add three days to the system date: + +`Set-Date -Date (Get-Date).AddDays({{3}})` + +- Set the system clock back 10 minutes: + +`Set-Date -Adjust -0:10:0 -DisplayHint Time` + +- Add 90 minutes to the system clock: + +`$90mins = New-TimeSpan -Minutes {{90}}; Set-Date -Adjust $90mins` diff --git a/pages/windows/set-service.md b/pages/windows/set-service.md new file mode 100644 index 0000000000..1b594b45b3 --- /dev/null +++ b/pages/windows/set-service.md @@ -0,0 +1,17 @@ +# Set-Service + +> Starts, stops, and suspends a service, and changes its properties. +> This command can only be used through PowerShell. +> More information: . + +- Change a display name: + +`Set-Service -Name {{hostname}} -DisplayName "{{name}}"` + +- Change the startup type of services: + +`Set-Service -Name {{service_name}} -StartupType {{Automatic}}` + +- Change the description of a service: + +`Set-Service -Name {{service_name}} -Description "{{description}}"` diff --git a/pages/windows/sfc.md b/pages/windows/sfc.md index 4b0a8b22fc..f699677035 100644 --- a/pages/windows/sfc.md +++ b/pages/windows/sfc.md @@ -17,16 +17,16 @@ - Scan a specific file and, if possible, repair any problems: -`sfc /scanfile={{path/to/file}}` +`sfc /scanfile={{path\to\file}}` - Scan a specific file without attempting to repair it: -`sfc /verifyfile={{path/to/file}}` +`sfc /verifyfile={{path\to\file}}` - When repairing offline, specify the boot directory: -`sfc /offbootdir={{path/to/directory}}` +`sfc /offbootdir={{path\to\directory}}` - When repairing offline, specify the Windows directory: -`sfc /offwindir={{path/to/directory}}` +`sfc /offwindir={{path\to\directory}}` diff --git a/pages/windows/show-markdown.md b/pages/windows/show-markdown.md new file mode 100644 index 0000000000..b7503b3400 --- /dev/null +++ b/pages/windows/show-markdown.md @@ -0,0 +1,17 @@ +# Show-Markdown + +> Shows a Markdown file or string in the console in a friendly way using VT100 escape sequences or in a browser using HTML. +> This command can only be used through PowerShell. +> More information: . + +- Render markdown to console from a file: + +`Show-Markdown -Path {{path\to\file}}` + +- Render markdown to console from string: + +`{{"# Markdown content"}} | Show-Markdown` + +- Open Markdown file in a browser: + +`Show-Markdown -Path {{path\to\file}} -UseBrowser` diff --git a/pages/windows/shutdown.md b/pages/windows/shutdown.md index 1c3cf48f35..a66dba4c05 100644 --- a/pages/windows/shutdown.md +++ b/pages/windows/shutdown.md @@ -25,7 +25,7 @@ - Specify a timeout in seconds to wait before shutting down: -`shutdown /s /t {{seconds}}` +`shutdown /s /t {{8}}` - Abort a shutdown sequence whose timeout is yet to expire: diff --git a/pages/windows/slmgr.md b/pages/windows/slmgr.md new file mode 100644 index 0000000000..95dea23773 --- /dev/null +++ b/pages/windows/slmgr.md @@ -0,0 +1,8 @@ +# slmgr + +> This command is an alias of `slmgr.vbs`. +> More information: . + +- View documentation for the original command: + +`tldr slmgr.vbs` diff --git a/pages/windows/slmgr.vbs.md b/pages/windows/slmgr.vbs.md new file mode 100644 index 0000000000..2f096c804b --- /dev/null +++ b/pages/windows/slmgr.vbs.md @@ -0,0 +1,37 @@ +# slmgr.vbs + +> Install, activate, and manage Windows licenses. +> This command may override, deactivate, and/or remove your current Windows license. Please proceed with caution. +> More information: . + +- [d]isplay the current Windows [l]icense [i]nformation: + +`slmgr /dli` + +- [d]isplay the ins[t]allation [i]D for the current device. Useful for offline license activation: + +`slmgr /dti` + +- Display the current license's e[xp]i[r]ation date and time: + +`slmgr /xpr` + +- [i]nstall a new Windows license [p]roduct [k]ey. Requires Administrator privileges and will override the existing license: + +`slmgr /ipk {{product_key}}` + +- [a]c[t]ivate the Windows product license [o]nline. Requires Administrator privileges to do so: + +`slmgr /ato` + +- [a]c[t]ivate the Windows [p]roduct license offline. Requires Administrator privileges and an Confirmation ID provided by Microsoft Product Activation Center: + +`slmgr /atp {{confirmation_id}}` + +- [c]lear the current license's [p]roduct [k]e[y] from the Windows Registry. This will not deactivate or uninstall the current license, but prevents the key from being stolen by malicious programs in the future: + +`slmgr /cpky` + +- [u]ninstall the current license (by its [p]roduct [k]ey): + +`slmgr /upk` diff --git a/pages/windows/sls.md b/pages/windows/sls.md new file mode 100644 index 0000000000..78a9e42c3f --- /dev/null +++ b/pages/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> This command is an alias of `Select-String`. +> More information: . + +- View documentation for the original command: + +`tldr where-object` diff --git a/pages/windows/sort-object.md b/pages/windows/sort-object.md new file mode 100644 index 0000000000..1b0d617ff7 --- /dev/null +++ b/pages/windows/sort-object.md @@ -0,0 +1,25 @@ +# Sort-Object + +> Sorts objects by property values. +> This command can only be used through PowerShell. +> More information: . + +- Sort the current directory by name: + +`Get-ChildItem | Sort-Object` + +- Sort the current directory by name descending: + +`Get-ChildItem | Sort-Object -Descending` + +- Sort items removing duplicates: + +`"a", "b", "a" | Sort-Object -Unique` + +- Sort the current directory by file length: + +`Get-ChildItem | Sort-Object -Property Length` + +- Sort processes with the highest memory usage based on their working set (WS) size: + +`Get-Process | Sort-Object -Property WS` diff --git a/pages/windows/start-service.md b/pages/windows/start-service.md new file mode 100644 index 0000000000..ffbf252198 --- /dev/null +++ b/pages/windows/start-service.md @@ -0,0 +1,17 @@ +# Start-Service + +> Starts one or more stopped services. +> This command can only be used through PowerShell. +> More information: . + +- Start a service by using its name: + +`Start-Service -Name {{service_name}}` + +- Display information without starting a service: + +`Start-Service -DisplayName *{{name}}* -WhatIf` + +- Start a disabled service: + +`Set-Service {{service_name}} -StartupType {{manual}}; Start-Service {{service_name}}` diff --git a/pages/windows/stop-service.md b/pages/windows/stop-service.md new file mode 100644 index 0000000000..dc1e616a0e --- /dev/null +++ b/pages/windows/stop-service.md @@ -0,0 +1,17 @@ +# Stop-Service + +> Stops one or more running services. +> This command can only be used through PowerShell. +> More information: . + +- Stop a service on the local computer: + +`Stop-Service -Name {{service_name}}` + +- Stop a service by using the display name: + +`Stop-Service -DisplayName "{{name}}"` + +- Stop a service that has dependent services: + +`Stop-Service -Name {{service_name}} -Force -Confirm` diff --git a/pages/windows/takeown.md b/pages/windows/takeown.md index 2182a2eebd..337a4f31a8 100644 --- a/pages/windows/takeown.md +++ b/pages/windows/takeown.md @@ -5,16 +5,16 @@ - Take ownership of the specified file: -`takeown /f {{path/to/file}}` +`takeown /f {{path\to\file}}` - Take ownership of the specified directory: -`takeown /d {{path/to/directory}}` +`takeown /d {{path\to\directory}}` - Take ownership of the specified directory and all subdirectories: -`takeown /r /d {{path/to/directory}}` +`takeown /r /d {{path\to\directory}}` - Change ownership to the Administrator group instead of the current user: -`takeown /a /f {{path/to/file}}` +`takeown /a /f {{path\to\file}}` diff --git a/pages/windows/tee-object.md b/pages/windows/tee-object.md new file mode 100644 index 0000000000..9bf9d5d44b --- /dev/null +++ b/pages/windows/tee-object.md @@ -0,0 +1,13 @@ +# Tee-Object + +> Saves command output in a file or variable and also sends it down the pipeline. +> This command can only be used through PowerShell. +> More information: . + +- Output processes to a file and to the console: + +`Get-Process | Tee-Object -FilePath {{path\to\file}}` + +- Output processes to a variable and `Select-Object`: + +`Get-Process notepad | Tee-Object -Variable {{proc}} | Select-Object processname,handles` diff --git a/pages/windows/test-json.md b/pages/windows/test-json.md new file mode 100644 index 0000000000..18280d36ab --- /dev/null +++ b/pages/windows/test-json.md @@ -0,0 +1,17 @@ +# Test-Json + +> Tests whether a string is a valid JSON document. +> This command can only be used through PowerShell. +> More information: . + +- Test if a string from `stdin` is in JSON format: + +`'{{string}}' | Test-Json` + +- Test if a string JSON format: + +`Test-Json -Json '{{json_to_test}}'` + +- Test if a string from `stdin` matches a specific schema file: + +`'{{string}}' | Test-Json -SchemaFile {{path\to\schema_file.json}}` diff --git a/pages/windows/tracert.md b/pages/windows/tracert.md new file mode 100644 index 0000000000..2a3a9a7dbc --- /dev/null +++ b/pages/windows/tracert.md @@ -0,0 +1,28 @@ +# tracert + +> Receive information about each step in the route between your PC and the target. +> More information: . + +- Trace a route: + +`tracert {{IP}}` + +- Prevent `tracert` from resolving IP addresses to hostnames: + +`tracert /d {{IP}}` + +- Force `tracert` to use IPv4 only: + +`tracert /4 {{IP}}` + +- Force `tracert` to use IPv6 only: + +`tracert /6 {{IP}}` + +- Specify the maximum number of hops in the search for the target: + +`tracert /h {{max_hops}} {{IP}}` + +- Display help: + +`tracert /?` diff --git a/pages/windows/tree.md b/pages/windows/tree.md index 679ee9afe9..8c19e0677d 100644 --- a/pages/windows/tree.md +++ b/pages/windows/tree.md @@ -9,12 +9,12 @@ - Display the tree for a specific directory: -`tree {{path/to/directory}}` +`tree {{path\to\directory}}` - Display the tree for a directory including files: -`tree {{path/to/directory}} /f` +`tree {{path\to\directory}} /f` - Display the tree using ASCII characters instead of extended characters: -`tree {{path/to/directory}} /a` +`tree {{path\to\directory}} /a` diff --git a/pages/windows/type.md b/pages/windows/type.md index 5da51dfe0f..fb88e22ffb 100644 --- a/pages/windows/type.md +++ b/pages/windows/type.md @@ -5,4 +5,4 @@ - Display the contents of a specific file: -`type {{path/to/file}}` +`type {{path\to\file}}` diff --git a/pages/windows/uwfmgr.md b/pages/windows/uwfmgr.md new file mode 100644 index 0000000000..329736e0ea --- /dev/null +++ b/pages/windows/uwfmgr.md @@ -0,0 +1,29 @@ +# uwfmgr + +> Unified Write Filter (UWF). +> Protect drives by redirecting any writes to the drive to a virtual overlay. Writes are discarded upon reboot unless committed by default. +> More information: . + +- Get the current status: + +`uwfmgr get-config` + +- Set a drive as protected: + +`uwfmgr volume protect {{drive_letter}}:` + +- Remove a drive from protection list: + +`uwfmgr volume unprotect {{drive_letter}}:` + +- Enable or disable protection (Applies after reboot): + +`uwfmgr filter {{enable|disable}}` + +- Commit changes of a file on protected drive: + +`uwfmgr file commit {{drive_letter:\path\to\file}}` + +- Commit deletion of a file on protected drive: + +`uwfmgr file commit-delete {{drive_letter:\path\to\file}}` diff --git a/pages/windows/vcvarsall.md b/pages/windows/vcvarsall.md index 4bcc53083e..20fca36ebf 100644 --- a/pages/windows/vcvarsall.md +++ b/pages/windows/vcvarsall.md @@ -1,6 +1,6 @@ # vcvarsall -> Setup the environment variables required for using the Microsoft Visual Studio tools from the command line. +> Setup the environment variables required for using the Microsoft Visual Studio tools. > The path of `vcvarsall` for a certain Visual Studio installation can be found using `vswhere`. > More information: . diff --git a/pages/windows/virtualboxvm.md b/pages/windows/virtualboxvm.md index 463da18a0d..aa62cd5139 100644 --- a/pages/windows/virtualboxvm.md +++ b/pages/windows/virtualboxvm.md @@ -1,6 +1,6 @@ # virtualboxvm -> The VirtualBox virtual machine management CLI. +> Manage VirtualBox virtual machines. > More information: . - Start a virtual machine: @@ -13,7 +13,7 @@ - Mount the specified DVD image file: -`virtualboxvm --startvm {{name|uuid}} --dvd {{path/to/image_file}}` +`virtualboxvm --startvm {{name|uuid}} --dvd {{path\to\image_file}}` - Display a command-line window with debug information: diff --git a/pages/windows/vswhere.md b/pages/windows/vswhere.md index 50ff1db714..589b7df644 100644 --- a/pages/windows/vswhere.md +++ b/pages/windows/vswhere.md @@ -5,16 +5,16 @@ - Find the path of vcvarsall.bat to set environment variables: -`vswhere -products * -latest -prerelease -find **/VC/Auxiliary/Build/vcvarsall.bat` +`vswhere -products * -latest -prerelease -find **\VC\Auxiliary\Build\vcvarsall.bat` - Find the directory of the x64 MSVC compiler (cl.exe, etc): -`vswhere -products * -latest -prerelease -find **/Hostx64/x64/*` +`vswhere -products * -latest -prerelease -find **\Hostx64\x64\*` - Find the directory of Clang bundled with Visual Studio bundled (clang-cl, clang-tidy, etc): -`vswhere -products * -latest -prerelease -find **/Llvm/bin/*` +`vswhere -products * -latest -prerelease -find **\Llvm\bin\*` - Find the path of `MSBuild.exe`: -`vswhere -products * -latest -prerelease -find MSBuild/**/Bin/MSBuild.exe` +`vswhere -products * -latest -prerelease -find MSBuild\**\Bin\MSBuild.exe` diff --git a/pages/windows/w32tm.md b/pages/windows/w32tm.md new file mode 100644 index 0000000000..d6cb503336 --- /dev/null +++ b/pages/windows/w32tm.md @@ -0,0 +1,32 @@ +# w32tm + +> Query and control the w32time time synchronization service. +> More information: . + +- Show the current status of time synchronization: + +`w32tm /query /status /verbose` + +- Show a time offset graph against a time server: + +`w32tm /stripchart /computer:{{time_server}}` + +- Show an NTP reply from a time server: + +`w32tm /stripchart /packetinfo /samples:1 /computer:{{time_server}}` + +- Show the state of the currently used time servers: + +`w32tm /query /peers` + +- Show configuration of the w32time service (run in elevated console): + +`w32tm /query /configuration` + +- Force time resynchronization immediately (run in elevated console): + +`w32tm /resync /force` + +- Write w32time debug logs into a file (run in elevated console): + +`w32tm /debug /enable /file:{{path\to\debug.log}} /size:{{10000000}} /entries:{{0-300}}` diff --git a/pages/windows/wait-process.md b/pages/windows/wait-process.md new file mode 100644 index 0000000000..93e3cad430 --- /dev/null +++ b/pages/windows/wait-process.md @@ -0,0 +1,13 @@ +# Wait-Process + +> Waits for the processes to be stopped before accepting more input. +> This command can only be used through PowerShell. +> More information: . + +- Stop a process and wait: + +`Stop-Process -Id {{process_id}}; Wait-Process -Id {{process_id}}` + +- Wait for processes for a specified time: + +`Wait-Process -Name {{process_name}} -Timeout {{30}}` diff --git a/pages/windows/wget.md b/pages/windows/wget.md index e01249221e..37b520470e 100644 --- a/pages/windows/wget.md +++ b/pages/windows/wget.md @@ -4,7 +4,7 @@ - Check whether `wget` is properly installed by printing its version number. If this command evaluates into an error, PowerShell may have substituted this command with `Invoke-WebRequest`: -`curl --version` +`wget --version` - View documentation for the original `wget` command: diff --git a/pages/windows/where-object.md b/pages/windows/where-object.md new file mode 100644 index 0000000000..43cf3b208c --- /dev/null +++ b/pages/windows/where-object.md @@ -0,0 +1,17 @@ +# Where-Object + +> Selects objects from a collection based on their property values. +> This command can only be used through PowerShell. +> More information: . + +- Filter aliases by its name: + +`Get-Alias | Where-Object -{{Property}} {{Name}} -{{eq}} {{name}}` + +- Get a list of all services that are currently stopped. The `$_` automatic variable represents each object that is passed to the `Where-Object` cmdlet: + +`Get-Service | Where-Object {$_.Status -eq "Stopped"}` + +- Use multiple conditions: + +`Get-Module -ListAvailable | Where-Object { $_.Name -NotLike "Microsoft*" -And $_.Name -NotLike "PS*" }` diff --git a/pages/windows/where.md b/pages/windows/where.md index dc232a2fcb..192b667fff 100644 --- a/pages/windows/where.md +++ b/pages/windows/where.md @@ -14,7 +14,7 @@ - Recursively search for file pattern at specified path: -`where /R {{path/to/directory}} {{file_pattern}}` +`where /R {{path\to\directory}} {{file_pattern}}` - Silently return the error code for the location of the file pattern: diff --git a/pages/windows/winget.md b/pages/windows/winget.md index 38c907c7d3..20da29767e 100644 --- a/pages/windows/winget.md +++ b/pages/windows/winget.md @@ -1,12 +1,16 @@ # winget -> Windows Package Manager CLI. +> Windows Package Manager. > More information: . - Install a package: `winget install {{package}}` +- Remove a package (Note: `remove` can also be used instead of `uninstall`): + +`winget uninstall {{package}}` + - Display information about a package: `winget show {{package}}` @@ -15,10 +19,18 @@ `winget search {{package}}` -- Upgrade all packages to latest versions: +- Upgrade all packages to the latest versions: `winget upgrade --all` -- List all packages installed that can be managed with winget: +- List all packages installed that can be managed with `winget`: `winget list --source winget` + +- Import packages from a file, or export installed packages to a file: + +`winget {{import|export}} {{--import-file|--output}} {{path/to/file}}` + +- Validate manifests before submitting a PR to the winget-pkgs repository: + +`winget validate {{path/to/manifest}}` diff --git a/pages/windows/wsl-open.md b/pages/windows/wsl-open.md index e9a93741dd..c048321e37 100644 --- a/pages/windows/wsl-open.md +++ b/pages/windows/wsl-open.md @@ -13,7 +13,7 @@ - Open a specific file in the user's default application in Windows: -`wsl-open {{path/to/file}}` +`wsl-open {{path\to\file}}` - Set `wsl-open` as the shell's web browser (open links with `wsl-open`): diff --git a/pages/windows/wsl.md b/pages/windows/wsl.md index f54be48379..10b3397312 100644 --- a/pages/windows/wsl.md +++ b/pages/windows/wsl.md @@ -1,6 +1,6 @@ # wsl -> Manage the Windows Subsystem for Linux from the command-line. +> Manage the Windows Subsystem for Linux. > More information: . - Start a Linux shell (in the default distribution): @@ -21,11 +21,11 @@ - Export a distribution to a `.tar` file: -`wsl --export {{distribution}} {{path/to/distro_fs.tar}}` +`wsl --export {{distribution}} {{path\to\distro_file.tar}}` - Import a distribution from a `.tar` file: -`wsl --import {{distribution}} {{path/to/install_location}} {{path/to/distro_fs.tar}}` +`wsl --import {{distribution}} {{path\to\install_location}} {{path/to/distro_file.tar}}` - Change the version of wsl used for the specified distribution: diff --git a/pages/windows/xcopy.md b/pages/windows/xcopy.md index 10140598a9..d1ac38f934 100644 --- a/pages/windows/xcopy.md +++ b/pages/windows/xcopy.md @@ -5,31 +5,31 @@ - Copy the file(s) to the specified destination: -`xcopy {{path/to/file_or_directory}} {{path/to/destination}}` +`xcopy {{path\to\file_or_directory}} {{path\to\destination_directory}}` - List files that will be copied before copying: -`xcopy {{path/to/file_or_directory}} {{path/to/destination}} /p` +`xcopy {{path\to\file_or_directory}} {{path\to\destination_directory}} /p` - Copy the directory structure only, excluding files: -`xcopy {{path/to/file_or_directory}} {{path/to/destination}} /t` +`xcopy {{path\to\file_or_directory}} {{path\to\destination_directory}} /t` - Include empty directories when copying: -`xcopy {{path/to/file_or_directory}} {{path/to/destination}} /e` +`xcopy {{path\to\file_or_directory}} {{path\to\destination_directory}} /e` - Keep the source ACL in the destination: -`xcopy {{path/to/file_or_directory}} {{path/to/destination}} /o` +`xcopy {{path\to\file_or_directory}} {{path\to\destination_directory}} /o` - Allow resuming when network connection is lost: -`xcopy {{path/to/file_or_directory}} {{path/to/destination}} /z` +`xcopy {{path\to\file_or_directory}} {{path\to\destination_directory}} /z` - Disable the prompt when the file exists in the destination: -`xcopy {{path/to/file_or_directory}} {{path/to/destination}} /y` +`xcopy {{path\to\file_or_directory}} {{path\to\destination_directory}} /y` - Display detailed usage information: diff --git a/requirements.txt b/requirements.txt index 6f8b96090e..5ba289635f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -black==22.3.0 -flake8==3.9.2 -requests==2.26.0 +black==23.9.1 +flake8==6.1.0 +requests==2.31.0 diff --git a/scripts/build-index.js b/scripts/build-index.js index dc8b5d1815..9ac47b9ada 100644 --- a/scripts/build-index.js +++ b/scripts/build-index.js @@ -2,7 +2,7 @@ 'use strict'; -const glob = require('glob'); +const { glob } = require('glob'); function parsePlatform(pagefile) { return pagefile.split(/\//)[1]; @@ -71,13 +71,14 @@ function saveIndex(index) { console.log(JSON.stringify(indexFile)); } -glob('pages*/**/*.md', function (er, files) { - if (er !== null) { - console.error('ERROR finding pages!'); - console.error(er); - return; - } - +(async () => { + const files = await glob('pages*/**/*.md'); let index = buildPagesIndex(files); saveIndex(index); +})().then(() => { + process.exit(0); +}).catch((err) => { + console.error('ERROR building index!'); + console.error(er); + process.exit(1); }); diff --git a/scripts/build.sh b/scripts/build.sh index 47c4e2831f..7a5a6c5daf 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -9,6 +9,10 @@ function initialize { export TLDRHOME=${GITHUB_WORKSPACE:-$(pwd)} fi + if [ -z "$TLDR_LANG_ARCHIVES_DIRECTORY" ]; then + export TLDR_LANG_ARCHIVES_DIRECTORY="${GITHUB_WORKSPACE:-$(pwd)}/language_archives" + fi + export TLDR_ARCHIVE="tldr.zip" } @@ -24,6 +28,34 @@ function build_archive { echo "Pages archive successfully built." } +function build_translation_archives { + local source_directory="$TLDRHOME" + local target_directory="$TLDR_LANG_ARCHIVES_DIRECTORY" + mkdir -p "$target_directory" + rm -f "$target_directory/*" + + for lang_dir in "$source_directory"/pages*; do + # Skip symlinks (pages.en) and things that are not directories + if [ ! -d "$lang_dir" ] || [ -h "$lang_dir" ]; then + continue + fi + + local lang=$(basename "$lang_dir") + local archive_name="tldr-$lang.zip" + + # Create the zip archive + + cd "$lang_dir" + zip -q -r "$target_directory/$archive_name" . + zip -q -j "$target_directory/$archive_name" "$source_directory/LICENSE.md" + + echo "Pages archive of $archive_name successfully created." + done + + cd "$target_directory" + ln -s tldr-pages.zip tldr-pages.en.zip +} + ################################### # MAIN ################################### @@ -31,3 +63,4 @@ function build_archive { initialize build_index build_archive +build_translation_archives diff --git a/scripts/deploy.sh b/scripts/deploy.sh index ff3876ca91..e77a69ab54 100755 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -9,6 +9,8 @@ function initialize { export TLDRHOME=${GITHUB_WORKSPACE:-$(pwd)} fi + export TLDR_LANG_ARCHIVES_DIRECTORY="$TLDRHOME/language_archives" + export TLDR_PDF_FILES_DIRECTORY="$TLDRHOME/scripts/pdf" export TLDR_ARCHIVE="tldr.zip" export SITE_HOME="$HOME/site" export SITE_REPO_SLUG="tldr-pages/tldr-pages.github.io" @@ -29,12 +31,17 @@ function initialize { function upload_assets { git clone --quiet --depth 1 git@github.com:${SITE_REPO_SLUG}.git "$SITE_HOME" mv -f "$TLDR_ARCHIVE" "$SITE_HOME/assets/" + mv -f "${TLDR_LANG_ARCHIVES_DIRECTORY}"/*.zip "$SITE_HOME/assets/" + rm -rf "$TLDR_LANG_ARCHIVES_DIRECTORY" cp -f "$TLDRHOME/index.json" "$SITE_HOME/assets/" + mv -f "${TLDR_PDF_FILES_DIRECTORY}"/*.pdf "${SITE_HOME}/assets/" + rm -rf "$TLDR_PDF_FILES_DIRECTORY" - # Copy PDF to assets - if [[ -f "${TLDRHOME}/scripts/pdf/tldr-pages.pdf" ]]; then - cp -f "${TLDRHOME}/scripts/pdf/tldr-pages.pdf" "${SITE_HOME}/assets/tldr-book.pdf" - fi + sha256sum \ + "${SITE_HOME}/assets/index.json" \ + "${SITE_HOME}/assets/"*.zip \ + "${SITE_HOME}/assets/"*.pdf \ + > "${SITE_HOME}/assets/tldr.sha256sums" cd "$SITE_HOME" git add -A diff --git a/scripts/pdf/NotoSans-Regular.ttf b/scripts/pdf/NotoSans-Regular.ttf new file mode 100644 index 0000000000..7552fbe806 Binary files /dev/null and b/scripts/pdf/NotoSans-Regular.ttf differ diff --git a/scripts/pdf/README.md b/scripts/pdf/README.md index b93e1b1a10..6caa2cf253 100644 --- a/scripts/pdf/README.md +++ b/scripts/pdf/README.md @@ -2,12 +2,6 @@ This directory contains the script and related resources to generate a PDF document with all the `tldr` pages. -## Preview - -![cryptsetup in the Basic color-scheme.](https://user-images.githubusercontent.com/29029116/35637791-4e42af80-06db-11e8-8b8e-42ce6c905ff4.jpg) -![cryptsetup in the Solarized Light color-scheme.](https://user-images.githubusercontent.com/29029116/35637798-51e3784a-06db-11e8-9576-6e57ef5c5c20.jpg) -![cryptsetup in the Solarized Dark color-scheme.](https://user-images.githubusercontent.com/29029116/35637801-54449fce-06db-11e8-93f7-d90cdc34044b.jpg) - ## Highlights - No LaTeX dependencies for generating the PDF. @@ -25,14 +19,20 @@ Make sure OS specific dependencies for WeasyPrint are installed by following the Generating the PDF is as simple as running: - python3 render.py --color + python3 render.py [--color ] [--output ] [--platform ] Complete information about the arguments can be viewed by running: python3 render.py --help -The color-schemes that can be specified are: +Available color schemes: -* `basic` -* `solarized-light` -* `solarized-dark` +- `basic` +- `solarized-light` +- `solarized-dark` + +## Preview + +![cryptsetup in the Basic color-scheme.](https://user-images.githubusercontent.com/29029116/35637791-4e42af80-06db-11e8-8b8e-42ce6c905ff4.jpg) +![cryptsetup in the Solarized Light color-scheme.](https://user-images.githubusercontent.com/29029116/35637798-51e3784a-06db-11e8-9576-6e57ef5c5c20.jpg) +![cryptsetup in the Solarized Dark color-scheme.](https://user-images.githubusercontent.com/29029116/35637801-54449fce-06db-11e8-93f7-d90cdc34044b.jpg) diff --git a/scripts/pdf/basic.css b/scripts/pdf/basic.css index 52d794209e..cfc0f10d31 100644 --- a/scripts/pdf/basic.css +++ b/scripts/pdf/basic.css @@ -1,8 +1,8 @@ /* SPDX-License-Identifier: MIT */ @font-face { - font-family: "PT Serif"; - src: url("pt-serif-web-regular.ttf") format("truetype"); + font-family: "sans-serif"; + src: url("NotoSans-Regular.ttf") format("truetype"); } p { @@ -14,7 +14,7 @@ code { } h1, h2, h4, ul { - font-family: "PT Serif"; + font-family: "sans-serif"; } .title-main { diff --git a/scripts/pdf/build-pdf.sh b/scripts/pdf/build-pdf.sh new file mode 100644 index 0000000000..09df4d21a7 --- /dev/null +++ b/scripts/pdf/build-pdf.sh @@ -0,0 +1,33 @@ +#!/usr/bin/env bash +# SPDX-License-Identifier: MIT + +# This script is executed by GitHub Actions when a PR is merged (i.e. in the `Build PDF` step). +set -ex + +function process_page { + pageDir="$1" + folder=$(basename "${pageDir}") + language="${folder##*.}" + case $folder in + pages.bn | pages.ja | pages.ko | pages.ml | pages.ta | pages.th | pages.zh | pages.zh_TW) + ;; + pages) + python3 render.py "${pageDir}" -c solarized-light + ;; + *) + python3 render.py "${pageDir}" -c basic -o "tldr-book-${language}.pdf" + ;; + esac +} + +function main { + for pageDir in ../../pages*; do + process_page "${pageDir}" + done +} + +################################### +# MAIN +################################### + +main diff --git a/scripts/pdf/pt-serif-web-regular.ttf b/scripts/pdf/pt-serif-web-regular.ttf deleted file mode 100644 index 5310691a99..0000000000 Binary files a/scripts/pdf/pt-serif-web-regular.ttf and /dev/null differ diff --git a/scripts/pdf/render.py b/scripts/pdf/render.py index 53e00ebf67..3e7285e4d3 100644 --- a/scripts/pdf/render.py +++ b/scripts/pdf/render.py @@ -17,8 +17,7 @@ from datetime import datetime from weasyprint import HTML -def main(loc, colorscheme): - +def main(loc, colorscheme, output_filename, platform): # Checking correctness of path if not os.path.isdir(loc): print("Invalid directory. Please try again!", file=sys.stderr) @@ -27,21 +26,25 @@ def main(loc, colorscheme): # Set up css style sheets csslist = ["basic.css"] if colorscheme != "basic": - csslist.append(colorscheme + ".css") + csslist.append(f"{colorscheme}.css") # A string that stores all pages in HTML format html = ( '' - + "

tldr pages

" + + "

tldr pages book

" + "
Simplified and community-driven man pages
" + "
Generated on " + datetime.now().strftime("%c") - + "
" + + "

" + + "
" + + "
" + '

' ) # Writing names of all directories inside 'pages' to a list for operating_sys in sorted(os.listdir(loc)): + if platform and operating_sys not in platform: + continue # Required string to create directory title pages html += ( @@ -70,15 +73,17 @@ def main(loc, colorscheme): html += "" # Writing the PDF to disk - print("\nConverting all pages to PDF...") - HTML(string=html).write_pdf("tldr-pages.pdf", stylesheets=csslist) + if platform: + output_filename = f"{output_filename[:-4]}-{'+'.join(platform)}.pdf" - if os.path.exists("tldr-pages.pdf"): - print("\nCreated tldr-pages.pdf in the current directory!\n") + print("\nConverting all pages to PDF...") + HTML(string=html).write_pdf(output_filename, stylesheets=csslist) + + if os.path.exists(output_filename): + print(f"\nCreated {output_filename} in the current directory!\n") if __name__ == "__main__": - # Parsing the arguments parser = argparse.ArgumentParser( prog="tldr-pages-to-pdf", @@ -92,6 +97,18 @@ if __name__ == "__main__": default="basic", help="Color scheme of the PDF", ) + parser.add_argument( + "-o", + "--output", + default="tldr-book.pdf", + help="Custom filename for the output PDF (default is 'tldr-book.pdf')", + ) + parser.add_argument( + "-p", + "--platform", + nargs="+", + help="Specify one or more platforms to generate PDFs for", + ) args = parser.parse_args() - main(args.dir_path, args.color) + main(args.dir_path, args.color, args.output, args.platform) diff --git a/scripts/send-to-bot.py b/scripts/send-to-bot.py index 6040cf05a4..a99b40f764 100755 --- a/scripts/send-to-bot.py +++ b/scripts/send-to-bot.py @@ -29,7 +29,7 @@ Is this intended? If so, just ignore this comment. Otherwise, please double-chec def post_comment(pr_id, body, once): - endpoint = BOT_URL + "/comment" + endpoint = f"{BOT_URL}/comment" if once: endpoint += "/once" diff --git a/scripts/set-alias-page.py b/scripts/set-alias-page.py index 2fa21991e0..e0bf453f9f 100644 --- a/scripts/set-alias-page.py +++ b/scripts/set-alias-page.py @@ -99,10 +99,9 @@ def get_alias_page(file): if not os.path.isfile(file): return "" with open(file) as f: - lines = f.readlines() - for line in lines: - if re.search(r"^`tldr ", line): - return re.search("`tldr (.+)`", line).group(1) + for line in f: + if match := re.search(r"^`tldr (.+)`", line): + return match[1] return "" diff --git a/scripts/set-more-info-link.py b/scripts/set-more-info-link.py index 6e439dde55..ba0ae56849 100755 --- a/scripts/set-more-info-link.py +++ b/scripts/set-more-info-link.py @@ -12,6 +12,7 @@ labels = { "ar": "لمزيد من التفاصيل:", "bn": "আরও তথ্য পাবেন:", "bs": "Više informacija:", + "cs": "Více informací:", "ca": "Més informació:", "da": "Mere information:", "de": "Weitere Informationen:", @@ -56,11 +57,10 @@ def get_tldr_root(): if "TLDR_ROOT" in os.environ: return os.environ["TLDR_ROOT"] - else: - print( - "\x1b[31mPlease set TLDR_ROOT to the location of a clone of https://github.com/tldr-pages/tldr." - ) - sys.exit(1) + print( + "\x1b[31mPlease set TLDR_ROOT to the location of a clone of https://github.com/tldr-pages/tldr." + ) + sys.exit(1) def set_link(file, link): @@ -88,9 +88,9 @@ def set_link(file, link): # build new line if locale == "hi": new_line = f"> {labels[locale]} <{link}>।\n" - elif locale == "ja": + elif locale in ["ja", "th"]: new_line = f"> {labels[locale]} <{link}>\n" - elif locale == "zh" or locale == "zh_TW": + elif locale in ["zh", "zh_TW"]: new_line = f"> {labels[locale]}<{link}>.\n" else: new_line = f"> {labels[locale]} <{link}>.\n" diff --git a/scripts/test.sh b/scripts/test.sh index 813aa1c17f..9d43cf28be 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -18,15 +18,29 @@ function exists { # but we want to only print if there are actual errors, and not # the "All done!" success message. function run_black { - # skip black check if command is not available in the system. - if [ "$CI" != "true" ] && ! exists black; then - echo "Skipping black check, command not available." + target_black_version=$(awk -F '==' '$1 == "black" { print $2 }' < requirements.txt) + + if grep -qw black <<< "$(pip3 --disable-pip-version-check list)"; then + errs=$(python3 -m black scripts --check --required-version ${target_black_version} 2>&1 || true) + fi + + if [ -z "${errs}" ]; then + # skip black check if command is not available in the system. + if [ "$CI" != "true" ] && ! exists black; then + echo "Skipping black check, command not available." + return 0 + fi + + errs=$(black scripts --check --required-version ${target_black_version} 2>&1 || true) + fi + + if [[ ${errs} == *"does not match the running version"* ]]; then + echo -e "Skipping black check, required version not available, try running: pip3 install -r requirements.txt" return 0 fi # we want to ignore the exit code from black on failure, so that we can # do the conditional printing below - errs=$(black scripts --check 2>&1 || true) if [[ ${errs} != "All done!"* ]]; then echo -e "${errs}" >&2 return 1